Fix missing linking option
This commit is contained in:
8
Makefile
8
Makefile
@@ -1,20 +1,20 @@
|
|||||||
CC=gcc
|
CC=gcc
|
||||||
CFLAGS=-Wall -Werror -pthread -O3
|
CFLAGS=-Wall -Werror -pthread -O3 -lm
|
||||||
LDFLAGS=
|
LDFLAGS=
|
||||||
|
|
||||||
default: inexact
|
default: inexact
|
||||||
|
|
||||||
windows: CC=x86_64-w64-mingw32-gcc
|
windows: CC=x86_64-w64-mingw32-gcc
|
||||||
windows: CFLAGS=-Wall -Werror -pthread -O3
|
windows: CFLAGS=-Wall -Werror -pthread -O3 -lm
|
||||||
windows: LDFLAGS=
|
windows: LDFLAGS=
|
||||||
windows: inexact
|
windows: inexact
|
||||||
|
|
||||||
windows-debug: CC=x86_64-w64-mingw32-gcc
|
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: LDFLAGS=
|
||||||
windows-debug: inexact
|
windows-debug: inexact
|
||||||
|
|
||||||
debug: CFLAGS=-Wall -Werror -pthread -O3 -g
|
debug: CFLAGS=-Wall -Werror -pthread -O3 -g -lm
|
||||||
debug: LDFLAGS=
|
debug: LDFLAGS=
|
||||||
debug: inexact
|
debug: inexact
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user