summaryrefslogtreecommitdiffstats
path: root/examples/Makefile
diff options
context:
space:
mode:
authorYann Collet <yann.collet.73@gmail.com>2014-11-29 15:41:28 (GMT)
committerYann Collet <yann.collet.73@gmail.com>2014-11-29 15:41:28 (GMT)
commitdc43a1f6b5373e4e931f09b89ae7680be5afca69 (patch)
treedeb8b1c5d4844a78a89903112d8d11085acb44dc /examples/Makefile
parente3d1b4e020d9b34ebfa688270e2a1ca3fd4fecdf (diff)
downloadlz4-dc43a1f6b5373e4e931f09b89ae7680be5afca69.zip
lz4-dc43a1f6b5373e4e931f09b89ae7680be5afca69.tar.gz
lz4-dc43a1f6b5373e4e931f09b89ae7680be5afca69.tar.bz2
Fixed : decompression issue on 32-bits CPU without unaligned memory access
Diffstat (limited to 'examples/Makefile')
-rw-r--r--examples/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/Makefile b/examples/Makefile
index 4474f59..df24ea9 100644
--- a/examples/Makefile
+++ b/examples/Makefile
@@ -32,7 +32,7 @@
CC := $(CC)
CFLAGS ?= -O3
-CFLAGS += -std=c99 -Wall -Wextra -Wundef -Wshadow -Wstrict-prototypes -Wno-missing-braces # Wno-missing-braces required due to GCC <4.8.3 bug
+CFLAGS += -std=c99 -Wall -Wextra -Wundef -Wshadow -Wcast-align -Wstrict-prototypes -Wno-missing-braces # Wno-missing-braces required due to GCC <4.8.3 bug
FLAGS = -I.. $(CPPFLAGS) $(CFLAGS) $(LDFLAGS)
TESTFILE= Makefile