mkenv: Move away from clang

It was nice, but it isn't as good at cross-compiling yet.  Plus, by sticking
with gcc, we have one compiler throughout the entire system.

Signed-off-by: Sean Cross <xobs@kosagi.com>
This commit is contained in:
Sean Cross 2014-12-30 12:29:06 +08:00
parent 4f7c0e8b14
commit 912952ef9b

View file

@ -44,12 +44,14 @@ SED = sed
PYTHON = python
AS = $(CROSS_COMPILE)gcc $(CFLAGS) -D__ASSEMBLY__
CC = $(CROSS_COMPILE)clang
CC = $(CROSS_COMPILE)gcc
LD = $(CROSS_COMPILE)ld
OBJCOPY = $(CROSS_COMPILE)objcopy
SIZE = $(CROSS_COMPILE)size
STRIP = $(CROSS_COMPILE)strip
CC_NATIVE ?= gcc
all:
.PHONY: all