Commit: 2d2482dfe5facc81627065c8eef99be9c274797b Parent: 079736dc180156b291deb6461f63bad894050e8e Author: Randy Palamar Date: Sat, 7 Dec 2024 09:29:02 -0700 move fno-builtin to correct cflags Diffstat:
M | build.sh | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/build.sh b/build.sh @@ -1,10 +1,10 @@ #!/bin/sh set -e -cflags="-march=native -std=c11 -O3 -Wall -I./external/include" +cflags="-march=native -std=c11 -O3 -Wall -I./external/include -fno-builtin" #cflags="${cflags} -fproc-stat-report" #cflags="${cflags} -Rpass-missed=.*" -libcflags="$cflags -fPIC -shared -Wno-unused-variable -fno-builtin" +libcflags="$cflags -fPIC -shared -Wno-unused-variable" ldflags="-lm" debug=${DEBUG}