superiotool: Don't compile with -Werror
Older libpci version have headers using 'long long' which isn't allowed in ANSI C. Since we cannot control the libpci version installed in the system nor in generall have complete control over system headers, simply skip using -Werror in our makefile. Change-Id: Ibc1e57bef033bf4971f4108d078222dcf168d5e3 Signed-off-by: Mathias Krause <mathias.krause@secunet.com> Reviewed-on: http://review.coreboot.org/210 Tested-by: build bot (Jenkins) Reviewed-by: Marc Jones <marcj303@gmail.com>
This commit is contained in:
parent
9beb5df3c4
commit
14b67f716d
|
@ -29,7 +29,7 @@ PREFIX = /usr/local
|
||||||
SVNDEF := -D'SUPERIOTOOL_VERSION="$(shell svnversion -cn . \
|
SVNDEF := -D'SUPERIOTOOL_VERSION="$(shell svnversion -cn . \
|
||||||
| sed -e "s/.*://" -e "s/\([0-9]*\).*/\1/")"'
|
| sed -e "s/.*://" -e "s/\([0-9]*\).*/\1/")"'
|
||||||
|
|
||||||
CFLAGS += -O2 -Wall -Werror -Wstrict-prototypes -Wundef -Wstrict-aliasing \
|
CFLAGS += -O2 -Wall -Wstrict-prototypes -Wundef -Wstrict-aliasing \
|
||||||
-Werror-implicit-function-declaration -ansi -pedantic $(SVNDEF)
|
-Werror-implicit-function-declaration -ansi -pedantic $(SVNDEF)
|
||||||
LDFLAGS += -lz
|
LDFLAGS += -lz
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue