Compile with thread support
This commit is contained in:
parent
091f43e8ef
commit
4b11f1b2b6
3
Makefile
3
Makefile
@ -3,7 +3,8 @@ VERSION=0.0.1
|
||||
CC=gcc
|
||||
CCONFIG=-std=c23 -Werror -D_XOPEN_SOURCE=700 -D_POSIX_C_SOURCE=200809L -fPIC -I. \
|
||||
-fno-signed-zeros -fno-finite-math-only -fno-signaling-nans -fno-trapping-math \
|
||||
-fsanitize=signed-integer-overflow -fno-sanitize-recover -fvisibility=hidden -fdollars-in-identifiers
|
||||
-fsanitize=signed-integer-overflow -fno-sanitize-recover -fvisibility=hidden -fdollars-in-identifiers \
|
||||
-DGC_THREADS
|
||||
LTO=-flto=auto -fno-fat-lto-objects -Wl,-flto
|
||||
LDFLAGS=
|
||||
# MAKEFLAGS := --jobs=$(shell nproc) --output-sync=target
|
||||
|
1
tomo.c
1
tomo.c
@ -46,6 +46,7 @@ static OptionalText_t autofmt = Text("sed '/^\\s*$/d' | indent -kr -l100 -nbbo -
|
||||
cflags = Text("-Werror -fdollars-in-identifiers -std=gnu11 -Wno-trigraphs -fsanitize=signed-integer-overflow -fno-sanitize-recover"
|
||||
" -fno-signed-zeros -fno-finite-math-only -fno-signaling-nans -fno-trapping-math"
|
||||
" -D_XOPEN_SOURCE=700 -D_POSIX_C_SOURCE=200809L -D_DEFAULT_SOURCE -fPIC -ggdb"
|
||||
" -DGC_THREADS"
|
||||
" -I$HOME/.local/share/tomo/installed"),
|
||||
ldlibs = Text("-lgc -lgmp -lm -ltomo"),
|
||||
ldflags = Text("-Wl,-rpath='$ORIGIN',-rpath=$HOME/.local/share/tomo/lib -L. -L$HOME/.local/share/tomo/lib"),
|
||||
|
Loading…
Reference in New Issue
Block a user