mirror of
https://github.com/sigmasternchen/CFloor
synced 2025-03-15 04:18:55 +00:00
enable pthread to compiler flags (apparently not doing so causes problems when setting sigmasks); removing static flag (not sure why it was with the compiler flags); set BACKTRACE macro for debugging
This commit is contained in:
parent
a691fb05a2
commit
33f1d86910
1 changed files with 2 additions and 2 deletions
4
Makefile
4
Makefile
|
@ -1,7 +1,7 @@
|
||||||
CC = gcc
|
CC = gcc
|
||||||
CFLAGS = -std=c99 -Wall -D_POSIX_C_SOURCE=201112L -D_XOPEN_SOURCE=500 -D_GNU_SOURCE -static -g
|
CFLAGS = -std=c99 -Wall -DBACKTRACE -D_POSIX_C_SOURCE=201112L -D_XOPEN_SOURCE=500 -D_GNU_SOURCE -g -pthread
|
||||||
LD = gcc
|
LD = gcc
|
||||||
LDFLAGS = -pthread -lrt
|
LDFLAGS = -pthread -lrt -rdynamic
|
||||||
AR = ar
|
AR = ar
|
||||||
ARFLAGS = rcs
|
ARFLAGS = rcs
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue