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 /lib/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 'lib/Makefile')
-rw-r--r-- | lib/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Makefile b/lib/Makefile index 216d136..d6e3668 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -46,7 +46,7 @@ DESTDIR?= PREFIX ?= /usr/local CPPFLAGS= -DXXH_NAMESPACE=LZ4_ CFLAGS ?= -O3 -CFLAGS += -Wall -Wextra -Wcast-qual -Wcast-align -Wshadow \ +CFLAGS += -g -Wall -Wextra -Wcast-qual -Wcast-align -Wshadow \ -Wswitch-enum -Wdeclaration-after-statement -Wstrict-prototypes -Wundef \ -Wpointer-arith -Wstrict-aliasing=1 CFLAGS += $(MOREFLAGS) @@ -102,7 +102,7 @@ else endif clean: - @$(RM) core *.o *.a *.$(SHARED_EXT) *.$(SHARED_EXT).* liblz4.pc dll/liblz4.dll dll/liblz4.lib + @$(RM) core *.o *.a *.$(SHARED_EXT) liblz4.pc dll/liblz4.dll dll/liblz4.lib @echo Cleaning library completed |