commit 4d88015
hovercats
·
2024-09-21 16:12:26 +0000 UTC
parent 48b5a4f
ruby: link libruby statically. seems to have to be uninstalled first, to avoid ruby trying to statically link libruby.so
2 files changed,
+5,
-4
+4,
-3
1@@ -2,9 +2,10 @@
2
3 ./configure \
4 --prefix=/usr \
5- --enable-shared \
6- --enable-static \
7- --disable-rpath
8+ --disable-shared \
9+ --disable-rpath \
10+ --enable-install-static-library \
11+ --with-static-linked-ext
12
13 make
14 make DESTDIR="$1" install
+1,
-1
1@@ -1 +1 @@
2-3.3.4 1
3+3.3.4 2