summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorPeter Krefting <peter@softwolves.pp.se>2014-02-06 12:51:39 +0000
committerVittorio Giovara <vittorio.giovara@gmail.com>2014-03-24 02:22:16 +0100
commit54f7881615a5ce2f89283e7ac2015b8ef141537c (patch)
tree3f71d35f0c7e7624b04748fc757a6e36ae4a047a /configure
parent5b8f0a5eac75d16376af60a6f6bb79b3e9e6dab7 (diff)
configure: Remove dcbzl check for e500v1 and e500v2 architectures
The DCBZL instruction is not available for the e500v1 and e500v2 architectures, but may still be recognized by the toolchain, so we need to explicitly disable it for these architectures. References: PowerPC™ e500 Core Family Reference Manual (Freescale) Found-by: Ståle Kristoffersen <staalebk@ifi.uio.no> Signed-off-by: Vittorio Giovara <vittorio.giovara@gmail.com>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 2 insertions, 0 deletions
diff --git a/configure b/configure
index 766f6367d5..e4fab3834d 100755
--- a/configure
+++ b/configure
@@ -3178,10 +3178,12 @@ elif enabled ppc; then
e500v2)
cpuflags="-mcpu=8548 -mhard-float -mfloat-gprs=double"
disable altivec
+ disable dcbzl
;;
e500)
cpuflags="-mcpu=8540 -mhard-float"
disable altivec
+ disable dcbzl
;;
esac