diff options
author | Måns Rullgård <mans@mansr.com> | 2005-05-12 23:06:47 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2005-05-12 23:06:47 +0000 |
commit | efc39ba89a6260f550077d7c37900bb35150a4a6 (patch) | |
tree | 73b21e29db56b607f084136f815c592c72c7df24 /configure | |
parent | 5b558574bacb942a4ca78d4b33a86e6a2e9de972 (diff) | |
download | ffmpeg-efc39ba89a6260f550077d7c37900bb35150a4a6.tar.gz |
allow various x86 models with --tune
Originally committed as revision 4230 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -691,8 +691,11 @@ if test $tune != "generic"; then TUNECPU=ppc970 POWERPCMODE="64bits" ;; + i[3456]86|pentium|pentiumpro|pentium-mmx|pentium[234]|prescott|k6|k6-[23]|athlon|athlon-tbird|athlon-4|athlon-[mx]p|winchip-c6|winchip2|c3|nocona) + CFLAGS="$CFLAGS -march=$tune" + ;; *) - echo "WARNING: unknown CPU "$tune", ignored" + echo "WARNING: unknown CPU \"$tune\", ignored" ;; esac fi |