mirror of
https://github.com/mpv-player/mpv
synced 2025-01-01 04:36:24 +01:00
hmm this is probably a better place for the check, as only the
Intel stuff has to be overwritten. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2891 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
5728504c7f
commit
913f5042c6
22
configure
vendored
22
configure
vendored
@ -821,6 +821,18 @@ i386|i486|i586|i686)
|
||||
|
||||
_march="-march=$proc"
|
||||
_mcpu="-mcpu=$proc"
|
||||
|
||||
##
|
||||
## Gabucino : --target takes effect here (hopefully...) by overwriting
|
||||
## autodetected mcpu/march parameters
|
||||
##
|
||||
|
||||
if test "$_target" ; then
|
||||
_march="-march=$host_arch"
|
||||
_mcpu="-mcpu=$host_arch"
|
||||
proc="$_target" # a little cosmetic
|
||||
fi
|
||||
|
||||
#echo "DONE (${proc})."
|
||||
;;
|
||||
|
||||
@ -885,16 +897,6 @@ mips)
|
||||
;;
|
||||
esac
|
||||
|
||||
##
|
||||
## Gabucino : --target takes effect here (hopefully...) by overwriting
|
||||
## autodetected mcpu/march parameters
|
||||
##
|
||||
|
||||
if test "$_target" ; then
|
||||
_march="-march=$host_arch"
|
||||
_mcpu="-mcpu=$host_arch"
|
||||
proc="$_target" # a little cosmetic
|
||||
fi
|
||||
|
||||
# ---
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user