aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Szakmeister <john@szakmeister.net>2014-02-27 16:45:30 -0500
committerThiago de Arruda <tpadilha84@gmail.com>2014-02-27 18:50:06 -0300
commitba7e4f0c0cde3263653f06f962e0b5f7c497780d (patch)
tree6643d3b5e9f8514a3104ed12a8d2c9d8eb1c1b1c
parent7637c2b664cb9ed7955bfa54b8470eb0e9396364 (diff)
downloadrneovim-ba7e4f0c0cde3263653f06f962e0b5f7c497780d.tar.gz
rneovim-ba7e4f0c0cde3263653f06f962e0b5f7c497780d.tar.bz2
rneovim-ba7e4f0c0cde3263653f06f962e0b5f7c497780d.zip
Compile libuv with -fPIC.
This is needed so that th unit tests library compiles on 64-bit machines correctly.
-rw-r--r--scripts/compile-libuv.sh2
1 files changed, 1 insertions, 1 deletions
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