Fix missing linking option
This commit is contained in:
8
Makefile
8
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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user