diff options
author | Yann Collet <yann.collet.73@gmail.com> | 2014-11-30 12:54:04 (GMT) |
---|---|---|
committer | Yann Collet <yann.collet.73@gmail.com> | 2014-11-30 12:54:04 (GMT) |
commit | dee47d11be17aec91a16a6381ea321b4d79f4200 (patch) | |
tree | e478b0dde6dc6f5d301078b6051c0c87e05a4046 /examples/Makefile | |
parent | 73554386ed8c9b08940411c0e62bbdca3216f8cd (diff) | |
parent | d0a6cccf75e147301b430a43bc9e591fdd80fce9 (diff) | |
download | lz4-dee47d11be17aec91a16a6381ea321b4d79f4200.zip lz4-dee47d11be17aec91a16a6381ea321b4d79f4200.tar.gz lz4-dee47d11be17aec91a16a6381ea321b4d79f4200.tar.bz2 |
Merge pull request #36 from Cyan4973/AlignEndian
Align endian
Diffstat (limited to 'examples/Makefile')
-rw-r--r-- | examples/Makefile | 2 |
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 |