From 94d261c7657df645314b0e5036abb7f7aa653393 Mon Sep 17 00:00:00 2001 From: PrimedErwin <1973609350@qq.com> Date: Thu, 22 May 2025 17:06:47 +0800 Subject: [PATCH] try fix prebuild fail --- run_tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run_tests.sh b/run_tests.sh index 13c3d1f1..a758caf6 100644 --- a/run_tests.sh +++ b/run_tests.sh @@ -4,7 +4,7 @@ python prebuild.py SRC=$(find src/ -name "*.c") -clang -std=c11 --coverage -O1 -Wfatal-errors -o main src2/main.c $SRC -Iinclude -DPK_ENABLE_OS=1 -DPK_ENABLE_PROFILER=1 -DPK_ENABLE_DETERMINISTIC_FLOAT=1 -lm -ldl -DNDEBUG +clang -std=c11 --coverage -O1 -Wfatal-errors -o main src2/main.c $SRC -Iinclude -I3rd/math -DPK_ENABLE_OS=1 -DPK_ENABLE_PROFILER=1 -DPK_ENABLE_DETERMINISTIC_FLOAT=1 -lm -ldl -DNDEBUG python scripts/run_tests.py