From ba7e4f0c0cde3263653f06f962e0b5f7c497780d Mon Sep 17 00:00:00 2001 From: John Szakmeister Date: Thu, 27 Feb 2014 16:45:30 -0500 Subject: [PATCH] Compile libuv with -fPIC. This is needed so that th unit tests library compiles on 64-bit machines correctly. --- scripts/compile-libuv.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/compile-libuv.sh b/scripts/compile-libuv.sh index f07120ed56..9979aa1095 100644 --- a/scripts/compile-libuv.sh +++ b/scripts/compile-libuv.sh @@ -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