1
0
mirror of https://github.com/mpv-player/mpv synced 2025-04-01 00:07:33 +00:00

generalized SH architecture support by Magnus Damm, magnus.damm gmail com

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@27428 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2008-08-07 11:58:37 +00:00
parent e98e792843
commit 7377a6a60a

25
configure vendored
View File

@ -159,13 +159,6 @@ arm() {
esac esac
} }
sh3() {
case "$host_arch" in
sh3) return 0;;
*) return 1;;
esac
}
# Use this before starting a check # Use this before starting a check
echocheck() { echocheck() {
echo "============ Checking for $@ ============" >> "$TMPLOG" echo "============ Checking for $@ ============" >> "$TMPLOG"
@ -1283,7 +1276,7 @@ if test -z "$_target" ; then
# host's CPU/instruction set # host's CPU/instruction set
host_arch=`uname -p 2>&1` host_arch=`uname -p 2>&1`
case "$host_arch" in case "$host_arch" in
i386|sparc|ppc|alpha|arm|sh3|mips|vax) i386|sparc|ppc|alpha|arm|mips|vax)
;; ;;
powerpc) # Darwin returns 'powerpc' powerpc) # Darwin returns 'powerpc'
host_arch=ppc host_arch=ppc
@ -1312,7 +1305,7 @@ if test -z "$_target" ; then
sparc64) host_arch=sparc64 ;; sparc64) host_arch=sparc64 ;;
parisc*|hppa*|9000*) host_arch=hppa ;; parisc*|hppa*|9000*) host_arch=hppa ;;
arm*|zaurus|cats) host_arch=arm ;; arm*|zaurus|cats) host_arch=arm ;;
sh3) host_arch=sh3 ;; sh3|sh4|sh4a) host_arch=sh ;;
s390) host_arch=s390 ;; s390) host_arch=s390 ;;
s390x) host_arch=s390x ;; s390x) host_arch=s390x ;;
mips*) host_arch=mips ;; mips*) host_arch=mips ;;
@ -1639,7 +1632,7 @@ EOF
fi fi
_arch_all='X86 X86_32 X86_64 IA64 SPARC ARM ARMV4L SH3 POWERPC PPC ALPHA SGI_MIPS PA_RISC S390 S390X VAX BFIN XTENSA GENERIC' _arch_all='X86 X86_32 X86_64 IA64 SPARC ARM ARMV4L SH POWERPC PPC ALPHA SGI_MIPS PA_RISC S390 S390X VAX BFIN XTENSA GENERIC'
case "$host_arch" in case "$host_arch" in
i[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*|i586-i686) i[3-9]86|x86|x86pc|k5|k6|k6-2|k6-3|pentium*|athlon*|i586-i686)
_arch='X86 X86_32' _arch='X86 X86_32'
@ -2012,13 +2005,13 @@ EOF
_optimizing='' _optimizing=''
;; ;;
sh3) sh)
_arch='SH3' _arch='SH'
_target_arch='ARCH_SH3 = yes' _target_arch='ARCH_SH = yes'
iproc='sh3' iproc='sh'
proc='' proc=''
_march='-m3' _march=''
_mcpu='-ml' _mcpu=''
_optimizing='' _optimizing=''
;; ;;