diff options
author | Yann Collet <cyan@fb.com> | 2016-11-19 01:54:26 (GMT) |
---|---|---|
committer | Yann Collet <cyan@fb.com> | 2016-11-19 01:56:56 (GMT) |
commit | 19df3029e234e4c48c31377c9ef5f7c940da5106 (patch) | |
tree | 3ee2bd09200f75f321b98a2ddc60f1aaa2343347 /tests/Makefile | |
parent | 519932afaf5a1d85e5d39de4acebc0a6bc07b9e3 (diff) | |
download | lz4-19df3029e234e4c48c31377c9ef5f7c940da5106.zip lz4-19df3029e234e4c48c31377c9ef5f7c940da5106.tar.gz lz4-19df3029e234e4c48c31377c9ef5f7c940da5106.tar.bz2 |
fixed #272 (compilation fails on gcc 4.4), reported by @totaam
Diffstat (limited to 'tests/Makefile')
-rw-r--r-- | tests/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Makefile b/tests/Makefile index 288b665..e58d449 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -39,7 +39,7 @@ TESTDIR := versionsTest PYTHON ?= python3 CFLAGS ?= -O3 # can select custom flags. For example : CFLAGS="-O2 -g" make -CFLAGS += -Wall -Wextra -Wundef -Wcast-qual -Wcast-align -Wshadow -Wswitch-enum \ +CFLAGS += -g -Wall -Wextra -Wundef -Wcast-qual -Wcast-align -Wshadow -Wswitch-enum \ -Wdeclaration-after-statement -Wstrict-prototypes \ -Wpointer-arith -Wstrict-aliasing=1 CFLAGS += $(MOREFLAGS) |