From dbe80e987e3783a2a4fa4d4e36b84c38235f560f Mon Sep 17 00:00:00 2001 From: Vincent Palatin Date: Mon, 27 Feb 2012 20:05:05 +0000 Subject: [PATCH] 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 BUG=None TEST=make BOARD=bds && make BOARD=link && make BOARD=adv Change-Id: Ib9568cabed3ca77cfa5ebc60479025cbb330b024 --- Makefile.toolchain | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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