diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2021-08-20 05:23:02 -0700 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2021-08-24 07:05:35 -0700 |
commit | 5359c3bc91cc509bcd30bbb8d951848e0280f325 (patch) | |
tree | 968547865228e43bd73ca1951297cd0e48e971dd /sysdeps/x86_64/configure.ac | |
parent | 84a7eb1f87c1d01b58ad887a0ab5d87abbc1c772 (diff) | |
download | glibc-5359c3bc91cc509bcd30bbb8d951848e0280f325.tar.gz glibc-5359c3bc91cc509bcd30bbb8d951848e0280f325.tar.xz glibc-5359c3bc91cc509bcd30bbb8d951848e0280f325.zip |
x86-64: Remove compiler -mavx512f check
The minimum GCC requirement is GCC 6.2 which supports -mavx512f. Remove compiler -mavx512f check. Tested with GCC 6.4.1 on Linux/x86-64.
Diffstat (limited to 'sysdeps/x86_64/configure.ac')
-rw-r--r-- | sysdeps/x86_64/configure.ac | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/sysdeps/x86_64/configure.ac b/sysdeps/x86_64/configure.ac index 66219e7ce5..41baed6999 100644 --- a/sysdeps/x86_64/configure.ac +++ b/sysdeps/x86_64/configure.ac @@ -16,15 +16,6 @@ if test $libc_cv_asm_avx512dq = yes; then AC_DEFINE(HAVE_AVX512DQ_ASM_SUPPORT) fi -dnl Check if -mavx512f works. -AC_CACHE_CHECK(for AVX512 support, libc_cv_cc_avx512, [dnl -LIBC_TRY_CC_OPTION([-mavx512f], [libc_cv_cc_avx512=$libc_cv_asm_avx512dq], [libc_cv_cc_avx512=no]) -]) -if test $libc_cv_cc_avx512 = yes; then - AC_DEFINE(HAVE_AVX512_SUPPORT) -fi -LIBC_CONFIG_VAR([config-cflags-avx512], [$libc_cv_cc_avx512]) - dnl Check if -mprefer-vector-width=128 works. AC_CACHE_CHECK(-mprefer-vector-width=128, libc_cv_cc_mprefer_vector_width, [dnl LIBC_TRY_CC_OPTION([-mprefer-vector-width=128], |