Use arm-none-eabi toolchain as default for local build

Now, the arm-none-eabi toolchain is available is all chroot,
so ensure that the developers doing a local build using directly the
Makefile pick by default the same toolchain as the one used by the
automated build.

Signed-off-by: Vincent Palatin <vpalatin@chromium.org>

BUG=None
TEST=make BOARD=bds && make BOARD=link && make BOARD=adv

Change-Id: Ib9568cabed3ca77cfa5ebc60479025cbb330b024
This commit is contained in:
Vincent Palatin
2012-02-27 20:05:05 +00:00
parent c5b323f995
commit dbe80e987e

View File

@@ -6,7 +6,7 @@
#
# Toolchain configuration
CROSS_COMPILE ?= armv7a-cros-linux-gnueabi-
CROSS_COMPILE ?= arm-none-eabi-
HOST_CROSS_COMPILE ?= i686-pc-linux-gnu-
CC=$(CROSS_COMPILE)gcc