You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the nokogiri gem is not usable by default on 64b capable snowleopard machines (core 2 duo +), it bombs out in an architecture mismatch.
as a temporary workaround, one can run ruby in 32 bit
arch -i386 ruby ...
or tweak extconf.rb
ENV["ARCHFLAGS"] = "-arch #{uname -p =~ /powerpc/ ? 'ppc' : 'x86_64'}"
The text was updated successfully, but these errors were encountered:
the nokogiri gem is not usable by default on 64b capable snowleopard machines (core 2 duo +), it bombs out in an architecture mismatch.
as a temporary workaround, one can run ruby in 32 bit
arch -i386 ruby ...
or tweak extconf.rb
ENV["ARCHFLAGS"] = "-arch #{
uname -p
=~ /powerpc/ ? 'ppc' : 'x86_64'}"The text was updated successfully, but these errors were encountered: