Compile libuv with -fPIC.

This is needed so that th unit tests library compiles on 64-bit machines
correctly.
This commit is contained in:
John Szakmeister 2014-02-27 16:45:30 -05:00 committed by Thiago de Arruda
parent 7637c2b664
commit ba7e4f0c0c

View File

@ -4,7 +4,7 @@ uv_dir="third-party/libuv"
cd "$uv_dir"
sh autogen.sh
./configure --prefix="$prefix"
./configure --prefix="$prefix" --with-pic
make
make install
rm "$prefix/lib/"libuv*.{so,dylib} "$prefix/lib/"libuv*.{so,dylib}.* || true