Add the -march fallback for amdfam10 also to the x86_64 case.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31307 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2010-06-02 22:09:04 +00:00
parent ac02b9ee47
commit 9b04897e76
1 changed files with 3 additions and 0 deletions

3
configure vendored
View File

@ -2076,6 +2076,9 @@ EOF
cc_check -march=native && proc=native
fi
# --- AMD processors ---
if test "$proc" = "amdfam10"; then
cc_check -march=$proc $cpuopt=$proc || proc=k8
fi
if test "$proc" = "k8"; then
cc_check -march=$proc $cpuopt=$proc || proc=athlon-xp
fi