commit cd777fe8191b539149cbb36c65a2b7eb26e3bfec
parent 52732501a146ed02d7e6dd59639ce858c8c4b26f
Author: Vincent Forest <vincent.forest@meso-star.com>
Date: Fri, 23 Jan 2026 15:18:41 +0100
Do not create a link to the math library
It is not actually used.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
@@ -40,7 +40,7 @@ OBJ = $(SRC:.c=.o)
DEP = $(SRC:.c=.d)
CFLAGS_LIB = -std=c99 $(CFLAGS_SO) $(INCS) -DSHTR_SHARED_BUILD
-LDFLAGS_LIB = $(LDFLAGS_SO) $(LIBS) -lm
+LDFLAGS_LIB = $(LDFLAGS_SO) $(LIBS)
library: .config $(DEP)
@$(MAKE) -fMakefile $$(for i in $(DEP); do echo -f $${i}; done) \