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

Reintroduce fPIC on x86_64 patch

This commit is contained in:
ignisf 2013-01-09 12:03:36 +02:00
parent ecc956d2c7
commit dbd94fe48f

View file

@ -23,6 +23,10 @@ task :checkout do
sh "git checkout #{V8_Version} -f"
sh "#{make} dependencies"
end
# The -fPIC flag is necessary when linking a shared library
# against the static libv8 on x86_64.
sh "patch -N -p1 -d vendor/v8 < patches/fPIC-on-x64.patch"
end
desc "compile v8 via the ruby extension mechanism"