From: Jeroen Hofstee Date: Wed, 10 Sep 2014 18:08:51 +0000 (+0200) Subject: Makefile: default to cc for host compiler X-Git-Tag: v2014.10-rc3~116^2~3 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=b477fe44ee0c4b5338b9eebca5eeca1040e45610;p=u-boot Makefile: default to cc for host compiler Since the host compiler might not be gcc but e.g. clang default to cc/c++ to invoke it. cc: Masahiro Yamada cc: Tom Rini Signed-off-by: Jeroen Hofstee --- diff --git a/Makefile b/Makefile index fdda3ec053..42263e4de2 100644 --- a/Makefile +++ b/Makefile @@ -197,8 +197,8 @@ CONFIG_SHELL := $(shell if [ -x "$$BASH" ]; then echo $$BASH; \ else if [ -x /bin/bash ]; then echo /bin/bash; \ else echo sh; fi ; fi) -HOSTCC = gcc -HOSTCXX = g++ +HOSTCC = cc +HOSTCXX = c++ HOSTCFLAGS = -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer HOSTCXXFLAGS = -O2