diff options
author | Patrick Georgi <patrick@georgi-clan.de> | 2012-09-13 22:13:33 +0200 |
---|---|---|
committer | Anton Kochkov <anton.kochkov@gmail.com> | 2012-09-14 07:33:07 +0200 |
commit | b3a18acb569f439dff565092d48d6517525490f6 (patch) | |
tree | 3a08b5d33e5ecb7447481fce5b6ef4d472edac3d /Makefile | |
parent | 4adb19bd79df5982a58340529ee1cf423cefe8c2 (diff) |
Isolate Kconfig host compiler options
This reverts commit 645f2dd5d97ffbaa80da7fbd776a08a76eb758e3.
Instead of adding a special case to nvramtool to avoid it
picking up Kconfig's regex.h, have the host compiler only
consider util/kconfig for includes (ie. -Iutil/kconfig)
for kconfig related object files.
Change-Id: Ie4f97ce38cb3e911f6e6c1e5b6f86f6998d93f69
Signed-off-by: Patrick Georgi <patrick@georgi-clan.de>
Reviewed-on: http://review.coreboot.org/1509
Tested-by: build bot (Jenkins)
Reviewed-by: Zheng Bao <zheng.bao@amd.com>
Reviewed-by: Anton Kochkov <anton.kochkov@gmail.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -76,8 +76,8 @@ endif HOSTCC = gcc HOSTCXX = g++ -HOSTCFLAGS := -I$(srck) -I$(objk) -g -HOSTCXXFLAGS := -I$(srck) -I$(objk) +HOSTCFLAGS := -g +HOSTCXXFLAGS := -g LIBGCC_FILE_NAME := $(shell test -r `$(CC) -print-libgcc-file-name` && $(CC) -print-libgcc-file-name) DOXYGEN := doxygen |