Displaying 1 result from an estimated 1 matches for "94cb428d363d".
2005 Dec 14
1
[PATCH] use HOSTCC to determine HOSTCFLAGS
Hi.
HOSTCC should be used to set HOSTCFLAGS instead of CC.
There is a case where HOSTCC doesn''t accept -Wdeclaration-after-statement,
while CC does. It results in a compilation error.
This patch fixes it
Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp>
--
diff -r 94cb428d363d -r 164e8408c67a Config.mk
--- a/Config.mk Mon Dec 12 15:20:51 2005 +0900
+++ b/Config.mk Mon Dec 12 17:36:35 2005 +0900
@@ -38,10 +38,10 @@
EXTRA_LIB += $(EXTRA_PREFIX)/$(LIBDIR)
endif
-test-gcc-flag = $(shell $(CC) -v --help 2>&1 | grep -q " $(1) " && echo $(1))
+test-...