diff options
author | Nicholas Sudsgaard <devel@nsudsgaard.com> | 2023-09-11 19:25:08 +0900 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2023-09-20 14:01:09 +0000 |
commit | 1dea2cac69c95358e56207b5b570026579039cf6 (patch) | |
tree | 14afae6fd20cafbd3184dee9b650a62bf586ad22 /util | |
parent | f831feb23a2c5f2fa984f07e0225ebed760debc8 (diff) |
util/superiotool: Tell compiler to use C99 instead of ANSI C
Fails to build on musl libc as pci/types.h expects "POSIX types", which
are not implemented, instead of stdint.h when using pre-C99 versions.
Change-Id: Id1cf5bd72a0b4d76c87dc62c443d02df18ddd3fe
Signed-off-by: Nicholas Sudsgaard <devel@nsudsgaard.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/77791
Reviewed-by: Paul Menzel <paulepanter@mailbox.org>
Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'util')
-rw-r--r-- | util/superiotool/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/superiotool/Makefile b/util/superiotool/Makefile index e6a2160989..fe2a4cce00 100644 --- a/util/superiotool/Makefile +++ b/util/superiotool/Makefile @@ -12,7 +12,7 @@ PREFIX ?= /usr/local VERSION := -D'SUPERIOTOOL_VERSION="$(shell git describe 2>/dev/null)"' CFLAGS += -O2 -Wall -Wstrict-prototypes -Wundef -Wstrict-aliasing \ - -Werror-implicit-function-declaration -ansi -pedantic $(VERSION) \ + -Werror-implicit-function-declaration -std=c99 -pedantic $(VERSION) \ -Wno-variadic-macros -I $(TOP)/src/commonlib/bsd/include LDFLAGS += -lz @@ -25,7 +25,7 @@ LIBS = -framework IOKit -framework DirectHW -lpci -lz endif ifeq ($(OS_ARCH), FreeBSD) CFLAGS = -O2 -Wall -Werror -Wstrict-prototypes -Wundef -Wstrict-aliasing \ - -Werror-implicit-function-declaration -ansi $(VERSION) \ + -Werror-implicit-function-declaration -std=c99 $(VERSION) \ -I/usr/local/include LDFLAGS += -L/usr/local/lib LIBS = -lz |