From c2a29455e348f136043a0b3a23637924413180dc Mon Sep 17 00:00:00 2001 From: Aurelien Jacobs Date: Wed, 28 Feb 2007 00:55:19 +0000 Subject: enable some 64bit optimized code on 64bit arch Originally committed as revision 8155 to svn://svn.ffmpeg.org/ffmpeg/trunk --- configure | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) (limited to 'configure') diff --git a/configure b/configure index 876c585a69..fd565dcc07 100755 --- a/configure +++ b/configure @@ -600,6 +600,7 @@ HAVE_LIST=" dev_video_bktr_ioctl_bt848_h dlfcn_h dlopen + fast_64bit fast_cmov freetype2 imlib2 @@ -957,6 +958,7 @@ case "$arch" in if [ x"$canon_arch" = x"x86_64" -o x"$canon_arch" = x"amd64" ]; then if [ -z "`echo $CFLAGS | grep -- -m32`" ]; then arch="x86_64" + enable fast_64bit fi fi ;; @@ -966,15 +968,21 @@ case "$arch" in ;; alpha) arch="alpha" + enable fast_64bit ;; - "Power Macintosh"|ppc|ppc64|powerpc) + "Power Macintosh"|ppc|powerpc) arch="powerpc" ;; + ppc64) + arch="powerpc" + enable fast_64bit + ;; mips|mipsel|IP*) arch="mips" ;; sun4u|sparc64) arch="sparc64" + enable fast_64bit ;; sparc) arch="sparc" @@ -982,8 +990,12 @@ case "$arch" in sh4) arch="sh4" ;; - parisc|parisc64) + parisc) + arch="parisc" + ;; + parisc64) arch="parisc" + enable fast_64bit ;; s390|s390x) arch="s390" @@ -993,6 +1005,7 @@ case "$arch" in ;; ia64) arch="ia64" + enable fast_64bit ;; bfin) arch="bfin" -- cgit v1.2.3