From 2ebb3398a5fd53b957588acfc07b6c27226a4da4 Mon Sep 17 00:00:00 2001 From: Sharp0802 Date: Mon, 27 Jan 2025 00:37:50 +0900 Subject: [PATCH] :bug: Use new library name --- mllif/Frontend/C/test/use-c/test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mllif/Frontend/C/test/use-c/test.sh b/mllif/Frontend/C/test/use-c/test.sh index ac1f949..68a454d 100755 --- a/mllif/Frontend/C/test/use-c/test.sh +++ b/mllif/Frontend/C/test/use-c/test.sh @@ -5,7 +5,7 @@ PREDIR="$(pwd)" cd "$(dirname $(realpath $0))" # Compile test source with plugin -(clang++ -fplugin="$1/build/lib/MLLIFC.so" -g -S -emit-llvm -Werror main.cxx -o main.ll) || exit 1 +(clang++ -fplugin="$1/build/lib/MLLIFCFront.so" -g -S -emit-llvm -Werror main.cxx -o main.ll) || exit 1 # Restore environment cd "$PREDIR"