mirror of
https://github.com/rubyjs/libv8
synced 2023-03-27 23:21:48 -04:00
14 lines
452 B
Ruby
14 lines
452 B
Ruby
require 'mkmf'
|
|
create_makefile('libv8')
|
|
require File.expand_path '../arch.rb', __FILE__
|
|
require File.expand_path '../make.rb', __FILE__
|
|
require File.expand_path '../compiler.rb', __FILE__
|
|
|
|
include Libv8::Arch
|
|
include Libv8::Make
|
|
include Libv8::Compiler
|
|
|
|
Dir.chdir(File.expand_path '../../../vendor/v8', __FILE__) do
|
|
puts `env CXX=#{compiler} LINK=#{compiler} #{make} #{libv8_arch}.release GYPFLAGS="-Dhost_arch=#{libv8_arch}"`
|
|
end
|
|
exit $?.exitstatus
|