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

Route build warnings to stdout

This commit is contained in:
ignisf 2014-06-11 00:29:32 +03:00
parent 3c143f8b5b
commit 7622b9d54e

View file

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