aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorFranklin Wei <me@fwei.tk>2018-07-03 15:00:57 -0400
committerFranklin Wei <me@fwei.tk>2018-07-03 15:01:25 -0400
commit9be8af8a7404eebf13186539db6e7cb3e7499692 (patch)
tree652479e9bb3145c9d12e7e94cc91426f147137e9 /Makefile
parentcf207a90591da839248aeffa99cb47077113a7e3 (diff)
downloadcsaa-9be8af8a7404eebf13186539db6e7cb3e7499692.zip
csaa-9be8af8a7404eebf13186539db6e7cb3e7499692.tar.gz
csaa-9be8af8a7404eebf13186539db6e7cb3e7499692.tar.bz2
csaa-9be8af8a7404eebf13186539db6e7cb3e7499692.tar.xz
Use 64-bit integers where appropriate
Should allow the use of larger logleaves values (> 32).
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 7eb9497..775b152 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
all: client server dummy_client dummy_server
-CFLAGS = -g -Wall -Wformat-overflow=0 -O0 -lsqlite3
+CFLAGS = -g -Wall -Wformat-overflow=0 -O0 -lsqlite3 -ftrapv
sqlinit.c: sqlinit.txt
xxd -i $^ | sed 's/\([0-9a-f]\)$$/\0, 0x00/' > $@