diff options
author | Mans Rullgard <mans@mansr.com> | 2012-10-23 23:34:35 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2012-10-24 16:26:51 +0100 |
commit | 2acda282eb8efac556cb351e91c557e580406294 (patch) | |
tree | c437bb7b4a783cfe608db0c4f106df14fe4b9ba5 | |
parent | d4c99513f41272b9753e59642724717b834710a0 (diff) | |
download | ffmpeg-2acda282eb8efac556cb351e91c557e580406294.tar.gz |
configure: detect mips64 automatically
Signed-off-by: Mans Rullgard <mans@mansr.com>
-rwxr-xr-x | configure | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -2453,13 +2453,9 @@ case "$arch" in arm*) arch="arm" ;; - mips|mipsel|IP*) + mips*|IP*) arch="mips" ;; - mips64*) - arch="mips" - subarch="mips64" - ;; parisc|hppa) arch="parisc" ;; @@ -2677,7 +2673,11 @@ check_64bit(){ } case "$arch" in - alpha|ia64|mips|parisc|sparc) + alpha|ia64|parisc|sparc) + spic=$shared + ;; + mips) + check_64bit mips mips64 '_MIPS_SIM > 1' spic=$shared ;; x86) |