diff options
author | H.J. Lu <hongjiu.lu@intel.com> | 2010-04-14 22:27:59 -0700 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2010-04-14 22:27:59 -0700 |
commit | a11ec63713ea3903c482dc907a108be404191a02 (patch) | |
tree | e9a57c38aa620e21ea59e5cb258550e469e4c06a /sysdeps/x86_64/elf | |
parent | df87f54923da6cb94e1a7d65c3f2349c95d49700 (diff) | |
download | glibc-a11ec63713ea3903c482dc907a108be404191a02.tar.gz glibc-a11ec63713ea3903c482dc907a108be404191a02.tar.xz glibc-a11ec63713ea3903c482dc907a108be404191a02.zip |
Add x86-32 FMA support
Diffstat (limited to 'sysdeps/x86_64/elf')
-rw-r--r-- | sysdeps/x86_64/elf/configure | 25 | ||||
-rw-r--r-- | sysdeps/x86_64/elf/configure.in | 11 |
2 files changed, 0 insertions, 36 deletions
diff --git a/sysdeps/x86_64/elf/configure b/sysdeps/x86_64/elf/configure index 0b93b0424e..50cf2fc453 100644 --- a/sysdeps/x86_64/elf/configure +++ b/sysdeps/x86_64/elf/configure @@ -47,28 +47,3 @@ cat >>confdefs.h <<\_ACEOF #define PI_STATIC_AND_HIDDEN 1 _ACEOF - -{ $as_echo "$as_me:$LINENO: checking for AVX support" >&5 -$as_echo_n "checking for AVX support... " >&6; } -if test "${libc_cv_cc_avx+set}" = set; then - $as_echo_n "(cached) " >&6 -else - if { ac_try='${CC-cc} -mavx -xc /dev/null -S -o /dev/null' - { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5 - (eval $ac_try) 2>&5 - ac_status=$? - $as_echo "$as_me:$LINENO: \$? = $ac_status" >&5 - (exit $ac_status); }; }; then - libc_cv_cc_avx=yes -else - libc_cv_cc_avx=no -fi -fi -{ $as_echo "$as_me:$LINENO: result: $libc_cv_cc_avx" >&5 -$as_echo "$libc_cv_cc_avx" >&6; } -if test $libc_cv_cc_avx = yes; then - cat >>confdefs.h <<\_ACEOF -#define HAVE_AVX_SUPPORT 1 -_ACEOF - -fi diff --git a/sysdeps/x86_64/elf/configure.in b/sysdeps/x86_64/elf/configure.in index 14d1875302..9cb59d009c 100644 --- a/sysdeps/x86_64/elf/configure.in +++ b/sysdeps/x86_64/elf/configure.in @@ -32,14 +32,3 @@ fi dnl It is always possible to access static and hidden symbols in an dnl position independent way. AC_DEFINE(PI_STATIC_AND_HIDDEN) - -dnl Check if -mavx works. -AC_CACHE_CHECK(for AVX support, libc_cv_cc_avx, [dnl -if AC_TRY_COMMAND([${CC-cc} -mavx -xc /dev/null -S -o /dev/null]); then - libc_cv_cc_avx=yes -else - libc_cv_cc_avx=no -fi]) -if test $libc_cv_cc_avx = yes; then - AC_DEFINE(HAVE_AVX_SUPPORT) -fi |