Commit 2acda282 authored by Mans Rullgard's avatar Mans Rullgard

configure: detect mips64 automatically

Signed-off-by: 's avatarMans Rullgard <mans@mansr.com>
parent d4c99513
...@@ -2453,13 +2453,9 @@ case "$arch" in ...@@ -2453,13 +2453,9 @@ case "$arch" in
arm*) arm*)
arch="arm" arch="arm"
;; ;;
mips|mipsel|IP*) mips*|IP*)
arch="mips" arch="mips"
;; ;;
mips64*)
arch="mips"
subarch="mips64"
;;
parisc|hppa) parisc|hppa)
arch="parisc" arch="parisc"
;; ;;
...@@ -2677,7 +2673,11 @@ check_64bit(){ ...@@ -2677,7 +2673,11 @@ check_64bit(){
} }
case "$arch" in case "$arch" in
alpha|ia64|mips|parisc|sparc) alpha|ia64|parisc|sparc)
spic=$shared
;;
mips)
check_64bit mips mips64 '_MIPS_SIM > 1'
spic=$shared spic=$shared
;; ;;
x86) x86)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment