From: Peter Krefting <[email protected]> The DCBZL instruction is not available for the e500v1 and e500v2 architectures, but may still be recognized by the toolchain, so we need to remove the test for it explicitly for these architectures.
References: PowerPC™ e500 Core Family Reference Manual (Freescale) Found-by: Ståle Kristoffersen <[email protected]> Signed-off-by: Vittorio Giovara <[email protected]> --- configure | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configure b/configure index b80d389..aeed6b6 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 -- 1.8.3.4 (Apple Git-47) _______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
