1
0
Fork 0
mirror of https://github.com/rubyjs/libv8 synced 2023-03-27 23:21:48 -04:00

look elsewhere for ia32 builds o_O

This commit is contained in:
Charles Lowell 2012-05-09 15:38:23 -05:00
parent 85dfbca706
commit b981c474f1

View file

@ -5,7 +5,11 @@ module Libv8
module_function
def libv8_object(name)
"#{libv8_source_path}/out/#{Libv8::Arch.libv8_arch}.release/libv8_#{name}.#{$LIBEXT}"
filename = "#{libv8_source_path}/out/#{Libv8::Arch.libv8_arch}.release/libv8_#{name}.#{$LIBEXT}"
unless File.exists? filename
filename = "#{libv8_source_path}/out/#{Libv8::Arch.libv8_arch}.release/obj.target/tools/gyp/libv8_#{name}.#{$LIBEXT}"
end
return filename
end
def libv8_base