Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2009-07-17 02:29:15 +0400
committerMåns Rullgård <mans@mansr.com>2009-07-17 02:29:15 +0400
commit88ec6ac9e413b17aa070c61b8c26078e0a630a39 (patch)
tree946b8dc2cdd7277f9852365bfc889ee784356233 /configure
parenta5762c9b595b5d5b8f09ffaf2e29ad3ffee2a395 (diff)
configure: do not warn about mismatching altivec/cpu selection
We do not issue similar warnings for other architectures, and we generally assume users know what they want. Originally committed as revision 19445 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure11
1 files changed, 0 insertions, 11 deletions
diff --git a/configure b/configure
index 9471205584..57b7d1025c 100755
--- a/configure
+++ b/configure
@@ -1857,41 +1857,30 @@ disabled optimizations || check_cflags -fomit-frame-pointer
# Add processor-specific flags
if test $cpu != "generic"; then
- warn_altivec(){
- $1 altivec && echo "WARNING: Tuning for $2 but AltiVec $1.";
- }
case $cpu in
601|ppc601|PowerPC601)
cpuflags="-mcpu=601"
- warn_altivec enabled PPC601
;;
603*|ppc603*|PowerPC603*)
cpuflags="-mcpu=603"
- warn_altivec enabled PPC603
;;
604*|ppc604*|PowerPC604*)
cpuflags="-mcpu=604"
- warn_altivec enabled PPC604
;;
G3|g3|75*|ppc75*|PowerPC75*)
cpuflags="-mcpu=750 -mpowerpc-gfxopt"
- warn_altivec enabled PPC75x
;;
G4|g4|745*|ppc745*|PowerPC745*)
cpuflags="-mcpu=7450 -mpowerpc-gfxopt"
- warn_altivec disabled PPC745x
;;
74*|ppc74*|PowerPC74*)
cpuflags="-mcpu=7400 -mpowerpc-gfxopt"
- warn_altivec disabled PPC74xx
;;
G5|g5|970|ppc970|PowerPC970|power4*|Power4*)
cpuflags="-mcpu=970 -mpowerpc-gfxopt -mpowerpc64"
- warn_altivec disabled PPC970
;;
Cell|CELL|cell)
cpuflags="-mcpu=cell"
- warn_altivec disabled Cell
enable ldbrx
;;
# targets that do NOT support conditional mov (cmov)