diff options
author | Vincent Palatin <vpalatin@chromium.org> | 2012-02-27 20:05:05 +0000 |
---|---|---|
committer | Vincent Palatin <vpalatin@chromium.org> | 2012-02-27 20:07:06 +0000 |
commit | dbe80e987e3783a2a4fa4d4e36b84c38235f560f (patch) | |
tree | 11b8b59f80b2d9e3697e1cf7b0dc5252cc7f0468 | |
parent | c5b323f99515665f7ba18faccc60dd49e1ae7d9b (diff) | |
download | chrome-ec-dbe80e987e3783a2a4fa4d4e36b84c38235f560f.tar.gz |
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
-rw-r--r-- | Makefile.toolchain | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.toolchain b/Makefile.toolchain index adfc4b1fcf..90a3ca4990 100644 --- a/Makefile.toolchain +++ b/Makefile.toolchain @@ -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 |