diff options
author | Zheng Bao <fishbaozi@gmail.com> | 2012-09-11 12:10:09 +0800 |
---|---|---|
committer | Anton Kochkov <anton.kochkov@gmail.com> | 2012-09-11 10:29:19 +0200 |
commit | 645f2dd5d97ffbaa80da7fbd776a08a76eb758e3 (patch) | |
tree | 030eb251f140c221d1bc6ff17eb55b17a4c1432a /util/nvramtool/Makefile.inc | |
parent | 534e61c4e6eb10deeaaebd0ead88ffe36c439927 (diff) | |
download | coreboot-645f2dd5d97ffbaa80da7fbd776a08a76eb758e3.tar.xz |
nvramtool: Set build flags for FreeBSD
Set HOSTCFLAGS as nil to make the nvramtool include the regex.h
in system. Otherwise it will include the regex.h in kconfig, which
will cause building error in FreeBSD.
Change-Id: I95292e23e1716da1260842be9597119a4e26c8ed
Signed-off-by: Zheng Bao <zheng.bao@amd.com>
Signed-off-by: Zheng Bao <fishbaozi@gmail.com>
Reviewed-on: http://review.coreboot.org/1500
Reviewed-by: Anton Kochkov <anton.kochkov@gmail.com>
Tested-by: build bot (Jenkins)
Diffstat (limited to 'util/nvramtool/Makefile.inc')
-rw-r--r-- | util/nvramtool/Makefile.inc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/util/nvramtool/Makefile.inc b/util/nvramtool/Makefile.inc index 0acda04340..080734c793 100644 --- a/util/nvramtool/Makefile.inc +++ b/util/nvramtool/Makefile.inc @@ -27,6 +27,10 @@ endif ifeq ($(OS_ARCH), NetBSD) NVRAMTOOLLDLFLAGS = -l$(shell uname -p) endif +ifeq ($(OS_ARCH), FreeBSD) +NVRAMTOOLFLAGS += -O2 -g -Wall -W +HOSTCFLAGS = +endif ifeq ($(shell uname -o), Cygwin) NVRAMTOOLFLAGS += -O2 -g -Wall -W -D__GLIBC__ NVRAMTOOLLDFLAGS = -lioperm |