Skip to content
Snippets Groups Projects
Commit 0723f862 authored by Michael Tüxen's avatar Michael Tüxen
Browse files

Disable address-of-packed-member warning showing up on clang4.

parent 0881349c
No related branches found
No related tags found
No related merge requests found
all: binaries
CFLAGS = -g -Wall -Werror
CFLAGS = -g -Wall -Werror -Wno-address-of-packed-member
parser.o: parser.y
bison --output=parser.c --defines=parser.h --report=state parser.y
......@@ -8,7 +8,7 @@ parser.o: parser.y
lexer.o: lexer.l parser.o
flex -olexer.c lexer.l
$(CC) -O2 -g -Wall -c lexer.c
$(CC) -O2 -g -Wall -Wno-address-of-packed-member -c lexer.c
packetdrill-lib := \
checksum.o code.o config.o hash.o hash_map.o ip_address.o ip_prefix.o \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment