From 69f43babecb41464959f2585215c8e6ab090b5d2 Mon Sep 17 00:00:00 2001 From: ben Date: Fri, 14 Nov 2025 23:04:39 +0100 Subject: [PATCH] Fix missing linking option --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 70fe875..d95da26 100644 --- a/Makefile +++ b/Makefile @@ -1,20 +1,20 @@ CC=gcc -CFLAGS=-Wall -Werror -pthread -O3 +CFLAGS=-Wall -Werror -pthread -O3 -lm LDFLAGS= default: inexact windows: CC=x86_64-w64-mingw32-gcc -windows: CFLAGS=-Wall -Werror -pthread -O3 +windows: CFLAGS=-Wall -Werror -pthread -O3 -lm windows: LDFLAGS= windows: inexact windows-debug: CC=x86_64-w64-mingw32-gcc -windows-debug: CFLAGS=-Wall -Werror -pthread -O3 -g +windows-debug: CFLAGS=-Wall -Werror -pthread -O3 -g -lm windows-debug: LDFLAGS= windows-debug: inexact -debug: CFLAGS=-Wall -Werror -pthread -O3 -g +debug: CFLAGS=-Wall -Werror -pthread -O3 -g -lm debug: LDFLAGS= debug: inexact