diff options
-rw-r--r-- | config.mk | 6 | ||||
-rw-r--r-- | optimised.mk | 8 |
2 files changed, 8 insertions, 6 deletions
@@ -1,11 +1,11 @@ PREFIX = /usr MANPREFIX = $(PREFIX)/share/man -CC = cc +CC = c99 -CFLAGS = -std=c99 -O3 CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=700 -LDFLAGS = -s +CFLAGS = -O3 +LDFLAGS = # You can add -DALLOCA_LIMIT=# to CPPFLAGS, where # is a size_t # value, to put a limit on how large allocation the library is diff --git a/optimised.mk b/optimised.mk index 3891e85..272fda2 100644 --- a/optimised.mk +++ b/optimised.mk @@ -1,4 +1,4 @@ -PREFIX = /usr/local +PREFIX = /usr MANPREFIX = $(PREFIX)/share/man # These have not been extensively tested but appear to: @@ -6,8 +6,10 @@ MANPREFIX = $(PREFIX)/share/man # * Slowdown the library's performance # -flto -flto-compression-level -flto-partition={1to1,balanced,mix,none} -flto-report -flto-report-wpa -fwpa CCOPTIMISE = -falign-functions=0 -fkeep-inline-functions -fmerge-all-constants -Ofast -LDOPTIMISE = -s +LDOPTIMISE = -CFLAGS = -std=c99 -Wall -Wextra $(CCOPTIMISE) +CC = c99 + +CFLAGS = -Wall -Wextra $(CCOPTIMISE) CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=700 LDFLAGS = $(LDOPTIMISE) |