From 855818b4dd7dfb941ddca58f823336026bfc557e Mon Sep 17 00:00:00 2001 From: Michael 'Mickey' Lauer Date: Wed, 4 Mar 2009 04:26:34 +0100 Subject: sane-toolchain.inc: add indirection again, it's really necessary --- conf/distro/include/sane-toolchain.inc | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'conf') diff --git a/conf/distro/include/sane-toolchain.inc b/conf/distro/include/sane-toolchain.inc index 20ee76d569..0d859903e1 100644 --- a/conf/distro/include/sane-toolchain.inc +++ b/conf/distro/include/sane-toolchain.inc @@ -68,11 +68,12 @@ TARGET_VENDOR = "-oe" # Minimal turns on thumb for armv4t machine according to this RFC: # http://lists.linuxtogo.org/pipermail/angstrom-distro-devel/2008-October/002714.html -# We can't do ARM_INSTRUCTION_SET_armv4t since that will un-overridable in recipes like gcc -ARM_INSTRUCTION_SET ?= "arm" -ARM_INSTRUCTION_SET_armv4t = "thumb" -ARM_INSTRUCTION_SET_armv5te = "thumb" -ARM_INSTRUCTION_SET_armv5teb = "thumb" +# We can't set ARM_INSTRUCTION_SET_ directly since that will un-overridable in recipes like gcc +PREFERRED_ARM_INSTRUCTION_SET ?= "arm" +PREFERRED_ARM_INSTRUCTION_SET_armv4t = "thumb" +PREFERRED_ARM_INSTRUCTION_SET_armv5te = "thumb" +PREFERRED_ARM_INSTRUCTION_SET_armv5teb = "thumb" +ARM_INSTRUCTION_SET = "${PREFERRED_ARM_INSTRUCTION_SET} # "arm" "thumb" # The instruction set the compiler should use when generating application # code. The kernel is always compiled with arm code at present. arm code -- cgit v1.2.3