From 0abd4fc70e47dcbefc3170e371367edcbd729017 Mon Sep 17 00:00:00 2001 From: yukkop Date: Sat, 19 Apr 2025 23:23:09 +0000 Subject: [PATCH] fix: `hectic`: lib building --- package/c/hectic/make.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/package/c/hectic/make.sh b/package/c/hectic/make.sh index afff883..80f1d22 100644 --- a/package/c/hectic/make.sh +++ b/package/c/hectic/make.sh @@ -54,7 +54,6 @@ esac RUN_TESTS=1 OPTFLAGS="-O2" CFLAGS="-Wall -Wextra -Werror -pedantic -fsanitize=address -fanalyzer" -LDFLAGS="-lhectic" STD_FLAGS="-std=c99" COLOR_FLAG="" DEBUG=0 @@ -98,7 +97,7 @@ case "$MODE" in mkdir -p target echo "# Build library" # shellcheck disable=SC2086 - cc $CFLAGS $OPTFLAGS $STD_FLAGS -c hectic.c -lhectic -o target/hectic.o + cc $CFLAGS $OPTFLAGS $STD_FLAGS -c hectic.c -o target/hectic.o ar rcs target/libhectic.a target/hectic.o ;; check)