diff --git a/Makefile b/Makefile index cb6f950..3e48266 100644 --- a/Makefile +++ b/Makefile @@ -47,7 +47,7 @@ __windows_compile: $(CC) -Ofast -o shuffle_$(v).exe $(C) $(SRCS) __linux_compile: - $(CC) -Ofast -arch x86_64 -o shuffle_$(v) $(C) $(SRCS) + $(CC) -Ofast -lm -arch x86_64 -o shuffle_$(v) $(C) $(SRCS) __apple_arm_compile: $(CC) -Ofast -arch arm64 -o shuffle_$(v) $(C) $(SRCS)