fix(libhectic): arena allocators

This commit is contained in:
2025-03-21 02:54:47 +00:00
parent a1a1172d98
commit a4b43f18f8
7 changed files with 78 additions and 99 deletions
+4 -1
View File
@@ -8,7 +8,10 @@ stdenv.mkDerivation {
buildPhase = ''
mkdir -p target
${gcc}/bin/cc -Wall -Wextra -g -pedantic -fsanitize=address -c libhectic.c -o target/libhectic.o
${gcc}/bin/cc -Wall -Wextra -g \
-std=c99 \
-pedantic -fsanitize=address \
-c libhectic.c -o target/libhectic.o
${gcc}/bin/ar rcs target/libhectic.a target/libhectic.o
'';