diff options
author | Marcin Juszkiewicz <hrw@openedhand.com> | 2008-03-07 08:38:28 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openedhand.com> | 2008-03-07 08:38:28 +0000 |
commit | 307bc14866a56731dd496e9df99035e420026ed8 (patch) | |
tree | c004933c5e3d0f2d2b40705e0775c3cc7d8cbe03 /meta/conf/machine | |
parent | 68e1ac6996910d5f0dd0cc04cdc0c1178eb9c308 (diff) | |
download | openembedded-core-307bc14866a56731dd496e9df99035e420026ed8.tar.gz openembedded-core-307bc14866a56731dd496e9df99035e420026ed8.tar.bz2 openembedded-core-307bc14866a56731dd496e9df99035e420026ed8.zip |
tune-arm1136jf-s.inc: fix arm/thumb switching
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3976 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/conf/machine')
-rw-r--r-- | meta/conf/machine/include/tune-arm1136jf-s.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/conf/machine/include/tune-arm1136jf-s.inc b/meta/conf/machine/include/tune-arm1136jf-s.inc index 812c5905a6..7a9a821047 100644 --- a/meta/conf/machine/include/tune-arm1136jf-s.inc +++ b/meta/conf/machine/include/tune-arm1136jf-s.inc @@ -3,6 +3,6 @@ TARGET_CC_ARCH += "${@['', '-mfloat-abi=softfp -mfpu=vfp'][(bb.data.getVar('TARG FEED_ARCH = "armv6" PACKAGE_ARCH = "armv6" -ARM_INSTRUCTION_SET = "${@['arm', 'thumb'][bb.data.getVar('CPU_FEATURES', d, 1).find('thumb') != 1]}" +ARM_INSTRUCTION_SET = "${@['thumb','arm'][bb.data.getVar('CPU_FEATURES', d, 1).find('thumb') == -1]}" require conf/machine/include/tune-thumb.inc |