From a37eceb2e9b3ef69dce0ed700f65fee406cb150c Mon Sep 17 00:00:00 2001 From: Brendan Hansen Date: Thu, 16 Nov 2023 10:08:42 -0600 Subject: [PATCH] fixed wasmer building, maybe --- compiler/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/build.sh b/compiler/build.sh index 90035a1d..5da5304c 100755 --- a/compiler/build.sh +++ b/compiler/build.sh @@ -15,7 +15,7 @@ fi if [ ! -z ${ONYX_RUNTIME_LIBRARY+x} ]; then FLAGS="$FLAGS -DENABLE_RUN_WITH_WASMER" C_FILES="${C_FILES}wasm_runtime " - LIBS="$LIBS -l$ONYX_RUNTIME_LIBRARY" + LIBS="-l$ONYX_RUNTIME_LIBRARY $LIBS" fi if [ "$ONYX_RUNTIME_LIBRARY" = "ovmwasm" ]; then -- 2.25.1