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

Display output during v8 compilation instead of after

This commit is contained in:
ignisf 2014-06-17 02:31:57 +03:00
parent 475af56523
commit bececed6bd

View file

@ -47,7 +47,7 @@ module Libv8
setup_build_deps!
print_build_info
puts 'Beginning compilation. This will take some time.'
puts `env CXX=#{@compiler} LINK=#{@compiler} #{make} #{make_flags} 2>&1`
system "env CXX=#{@compiler} LINK=#{@compiler} #{make} #{make_flags}"
end
return $?.exitstatus
end