summaryrefslogtreecommitdiff
path: root/script
diff options
context:
space:
mode:
Diffstat (limited to 'script')
-rwxr-xr-xscript/build-libgit2-static.sh1
-rwxr-xr-xscript/with-less-static.sh13
-rwxr-xr-xscript/with-static.sh6
3 files changed, 19 insertions, 1 deletions
diff --git a/script/build-libgit2-static.sh b/script/build-libgit2-static.sh
index e486d1d..ca5390d 100755
--- a/script/build-libgit2-static.sh
+++ b/script/build-libgit2-static.sh
@@ -9,6 +9,7 @@ cd $VENDORED_PATH
cmake -DTHREADSAFE=ON \
-DBUILD_CLAR=OFF \
-DBUILD_SHARED_LIBS=OFF \
+ -DCMAKE_C_FLAGS=-fPIC \
-DCMAKE_INSTALL_PREFIX=../install \
.
diff --git a/script/with-less-static.sh b/script/with-less-static.sh
new file mode 100755
index 0000000..faaeb01
--- /dev/null
+++ b/script/with-less-static.sh
@@ -0,0 +1,13 @@
+#!/bin/sh
+
+set -ex
+
+export INSTALL_LOCATION=$PWD/vendor/install
+export PKG_CONFIG_PATH=$INSTALL_LOCATION/lib/pkgconfig
+
+export PCFILE="$PWD/vendor/libgit2/libgit2.pc"
+
+export CGO_LDFLAGS="$(pkg-config --static --libs $PCFILE)"
+export CGO_CFLAGS="$(pkg-config --static --cflags $PCFILE)"
+
+$@
diff --git a/script/with-static.sh b/script/with-static.sh
index 914d8b2..643dcff 100755
--- a/script/with-static.sh
+++ b/script/with-static.sh
@@ -4,6 +4,10 @@ set -ex
export INSTALL_LOCATION=$PWD/vendor/install
export PKG_CONFIG_PATH=$INSTALL_LOCATION/lib/pkgconfig
-export CGO_LDFLAGS='-lrt'
+
+export PCFILE="$PWD/vendor/libgit2/libgit2.pc"
+
+export CGO_LDFLAGS="$PWD/vendor/libgit2/libgit2.a $(pkg-config --static --libs $PCFILE)"
+export CGO_CFLAGS="$(pkg-config --static --cflags $PCFILE)"
$@