diff options
Diffstat (limited to 'meta/conf')
-rw-r--r-- | meta/conf/machine/include/tune-arm1136jf-s.inc | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/meta/conf/machine/include/tune-arm1136jf-s.inc b/meta/conf/machine/include/tune-arm1136jf-s.inc index a69df825c0..812c5905a6 100644 --- a/meta/conf/machine/include/tune-arm1136jf-s.inc +++ b/meta/conf/machine/include/tune-arm1136jf-s.inc @@ -1,3 +1,8 @@ -TARGET_CC_ARCH = "-march=armv6j -mtune=arm1136jf-s -mfpu=vfp -mfloat-abi=softfp" +TARGET_CC_ARCH = "-march=armv6j -mtune=arm1136jf-s" +TARGET_CC_ARCH += "${@['', '-mfloat-abi=softfp -mfpu=vfp'][(bb.data.getVar('TARGET_FPU', d, 1) == 'soft') and (bb.data.getVar('CPU_FEATURES', d, 1).find('vfp') != -1)]}" FEED_ARCH = "armv6" PACKAGE_ARCH = "armv6" + +ARM_INSTRUCTION_SET = "${@['arm', 'thumb'][bb.data.getVar('CPU_FEATURES', d, 1).find('thumb') != 1]}" + +require conf/machine/include/tune-thumb.inc |