diff options
author | Måns Rullgård <mans@mansr.com> | 2009-07-17 08:21:37 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2009-07-17 08:21:37 +0000 |
commit | a915980acdf7a7f02780fe5e936777f74c85c3e9 (patch) | |
tree | acd2111fbb1b6a210fb52174744119f3249ef54f /configure | |
parent | 87d718aefc4f8f3d890c2a18f64706908f4ab107 (diff) | |
download | ffmpeg-a915980acdf7a7f02780fe5e936777f74c85c3e9.tar.gz |
configure: simplify --cpu handling slightly
Originally committed as revision 19451 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1856,7 +1856,6 @@ fi disabled optimizations || check_cflags -fomit-frame-pointer # Add processor-specific flags -if test $cpu != "generic"; then case $cpu in 601|ppc601|PowerPC601) cpuflags="-mcpu=601" @@ -1926,11 +1925,12 @@ if test $cpu != "generic"; then mips*|[45]k*|[237]4k*|m4k|r*000|loongson2[ef]) cpuflags="-march=$cpu" ;; + generic) + ;; *) echo "WARNING: Unknown CPU \"$cpu\", ignored." ;; esac -fi add_cflags $cpuflags add_asflags $cpuflags |