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:
parent
ecc956d2c7
commit
dbd94fe48f
1 changed files with 4 additions and 0 deletions
4
Rakefile
4
Rakefile
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue