diff options
author | Rob Austein <sra@hactrn.net> | 2016-06-09 00:30:17 -0400 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2016-06-09 00:30:17 -0400 |
commit | a627a489e48cde75f80446e75d057fc1f12a0b98 (patch) | |
tree | 7df8472ed513476b8f2fe7f9844e5fd8d31b8da7 /GNUmakefile | |
parent | abfe36f702e4f468e83084b4163d2993001814b5 (diff) |
hash.c triggers gcc's strict-aliasing warnings.
Diffstat (limited to 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile index 0b3647b..c37d142 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -164,7 +164,7 @@ CFLAGS += -DRPC_CLIENT=${RPC_CLIENT_FLAG} endif TFMDIR := $(abspath ../thirdparty/libtfm) -CFLAGS += -g3 -Wall -std=c99 -I${TFMDIR} +CFLAGS += -g3 -Wall -std=c99 -Wno-strict-aliasing -I${TFMDIR} LDFLAGS := -g3 -L${TFMDIR} -ltfm CFLAGS += -DHAL_STATIC_HASH_STATE_BLOCKS=${STATIC_HASH_STATE_BLOCKS} |