aboutsummaryrefslogtreecommitdiffstats
path: root/optimised.mk
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2017-10-14 01:12:30 +0200
committerMattias Andrée <maandree@kth.se>2017-10-14 01:12:30 +0200
commit7e0ddd7b783e17af13b1294887d461479a1faa47 (patch)
tree5e1007a046658fc6e89d20287895dc4baea6d578 /optimised.mk
parentFix makefile (diff)
downloadlibkeccak-7e0ddd7b783e17af13b1294887d461479a1faa47.tar.gz
libkeccak-7e0ddd7b783e17af13b1294887d461479a1faa47.tar.bz2
libkeccak-7e0ddd7b783e17af13b1294887d461479a1faa47.tar.xz
Use basic config by default1.1.2
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'optimised.mk')
-rw-r--r--optimised.mk13
1 files changed, 13 insertions, 0 deletions
diff --git a/optimised.mk b/optimised.mk
new file mode 100644
index 0000000..3891e85
--- /dev/null
+++ b/optimised.mk
@@ -0,0 +1,13 @@
+PREFIX = /usr/local
+MANPREFIX = $(PREFIX)/share/man
+
+# These have not been extensively tested but appear to:
+# * Produce false warnings
+# * 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
+
+CFLAGS = -std=c99 -Wall -Wextra $(CCOPTIMISE)
+CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=700
+LDFLAGS = $(LDOPTIMISE)