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:
parent
85dfbca706
commit
b981c474f1
1 changed files with 5 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue