diff options
author | Yann Collet <cyan@fb.com> | 2016-11-14 16:51:28 (GMT) |
---|---|---|
committer | Yann Collet <cyan@fb.com> | 2016-11-14 16:51:28 (GMT) |
commit | 5a5ebeec15d272b0b85aa2cef2a0da3dce920b80 (patch) | |
tree | 5cb9c681842992c699101acff06069ba90027b04 /lib/Makefile | |
parent | 1b24cc115595f7cd2f8f5f6de0a9d44a70bdf827 (diff) | |
download | lz4-5a5ebeec15d272b0b85aa2cef2a0da3dce920b80.zip lz4-5a5ebeec15d272b0b85aa2cef2a0da3dce920b80.tar.gz lz4-5a5ebeec15d272b0b85aa2cef2a0da3dce920b80.tar.bz2 |
clang and g++ tests restricted to native only on Travis CI Ubuntu v12 environment
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 6551dd9..d098846 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -48,7 +48,7 @@ CPPFLAGS= -DXXH_NAMESPACE=LZ4_ CFLAGS ?= -O3 CFLAGS += -Wall -Wextra -Wcast-qual -Wcast-align -Wshadow \ -Wswitch-enum -Wdeclaration-after-statement -Wstrict-prototypes -Wundef \ - -Wpointer-arith # -Wstrict-aliasing=1 + -Wpointer-arith -Wstrict-aliasing=1 CFLAGS += $(MOREFLAGS) FLAGS = $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) @@ -85,7 +85,7 @@ endif liblz4: *.c @echo compiling dynamic library $(LIBVER) -ifneq (,$(filter Windows%,$(OS))) +ifneq (,$(filter Windows%,$(OS))) @$(CC) $(FLAGS) -DLZ4_DLL_EXPORT=1 -shared $^ -o $@.dll dlltool -D liblz4.dll -d liblz4.def -l liblz4.dll.a else |