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

Give up and disable -Werror

This commit is contained in:
ignisf 2014-09-08 22:14:33 +03:00
parent 9ee8953e9c
commit fac6535f42

View file

@ -38,6 +38,10 @@ module Libv8
# Solaris / Smart OS requires additional -G flag to use with -fPIC
flags << "CFLAGS=-G" if @compiler.target =~ /solaris/
# Disable werror as this version of v8 is getting difficult to maintain
# with it on
flags << 'werror=no'
"#{libv8_arch}.#{profile} #{flags.join ' '}"
end