From 34574827285b14ebbbb95536cb321b0bcc405bc0 Mon Sep 17 00:00:00 2001 From: ENGO150 Date: Thu, 19 May 2022 18:07:44 +0200 Subject: [PATCH] fixed linking library problem I think lol --- build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sh b/build.sh index 7060e43..de8b0f9 100644 --- a/build.sh +++ b/build.sh @@ -85,13 +85,13 @@ runInstall() $compiler $bufferFlags $sourceFiles - bufferFlags="$defaultFlags -shared -ljson-c -lcurl " + bufferFlags="$defaultFlags -shared -ljson-c -lcurl" ### echo "Compiling library... (flags: $bufferFlags)" ### - $compiler $bufferFlags -o $installOutput *.o + $compiler -o $installOutput *.o $bufferFlags ### echo "Installing library..."