summaryrefslogtreecommitdiff
path: root/src/print-ld.sh
diff options
context:
space:
mode:
authorJannis Hoffmann <jannis@fehcom.de>2024-07-14 21:28:19 +0200
committerJannis Hoffmann <jannis@fehcom.de>2024-07-14 21:28:19 +0200
commit1087d4df2a7342d2832ba3bab1843bf4a3040775 (patch)
tree96cd6ea198cc542f29c0660d5e5f7083af84d711 /src/print-ld.sh
add version 0.12.10HEADmaster
Diffstat (limited to 'src/print-ld.sh')
-rw-r--r--src/print-ld.sh18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/print-ld.sh b/src/print-ld.sh
new file mode 100644
index 0000000..c13472c
--- /dev/null
+++ b/src/print-ld.sh
@@ -0,0 +1,18 @@
+ld="`head -1 ../conf-ld`"
+qlibs="`head -1 ../conf-qlibs`"
+systype="`cat systype`"
+
+flag=0
+
+rm -f trycpp.o
+
+flag=`cc -c tryssl.c -m64 2>&1 | wc -l`
+if [ $flag -eq 0 ]; then
+ ld="$ld -m64"
+fi
+
+rm -f trycpp.o
+
+cat warn-auto.sh
+echo 'main="$1"; shift'
+echo exec "$ld" -L"${qlibs}" '-o "$main" "$main".o ${1+"$@"} -ldnsresolv -lqlibs'