summaryrefslogtreecommitdiff
path: root/configure.cmake
diff options
context:
space:
mode:
authorThiago Macieira <thiago.macieira@intel.com>2022-02-04 09:38:22 -0800
committerThiago Macieira <thiago.macieira@intel.com>2022-02-18 15:46:41 -0800
commit6323ccfa733da6ca55f8a69c0398f12a78bb32f7 (patch)
treed38eb0fa28a235789fc6e60589e1a25a81cc6dbb /configure.cmake
parent181d7ea0531816eba952f1576429a84aaf055528 (diff)
downloadqtbase-6323ccfa733da6ca55f8a69c0398f12a78bb32f7.tar.gz
qsimd: Remove QT_COMPILER_SUPPORTS_SIMD_ALWAYS
All[*] compilers support it, always. The last to not support it was GCC 4.8, which we don't support in Qt 6. [*] Anecdotally, clang-cl doesn't but clang-cl isn't supported and that would be an upstream problem: clang-cl developers must find a solution that either matches Clang or cl.exe. Change-Id: I54f205f6b7314351b078fffd16d0a5ed5b7afae5 Reviewed-by: Alexey Edelev <alexey.edelev@qt.io>
Diffstat (limited to 'configure.cmake')
-rw-r--r--configure.cmake10
1 files changed, 0 insertions, 10 deletions
diff --git a/configure.cmake b/configure.cmake
index 879764aca7..673eb00faf 100644
--- a/configure.cmake
+++ b/configure.cmake
@@ -819,12 +819,6 @@ qt_feature("shani" PRIVATE
)
qt_feature_definition("shani" "QT_COMPILER_SUPPORTS_SHA" VALUE "1")
qt_feature_config("shani" QMAKE_PRIVATE_CONFIG)
-qt_feature("simdAlways"
- LABEL "Intrinsics without compiler architecture option"
- CONDITION ( ( ( TEST_architecture_arch STREQUAL i386 ) OR ( TEST_architecture_arch STREQUAL x86_64 ) ) AND ON ) OR ( TEST_architecture_arch STREQUAL arm64 )
-)
-qt_feature_definition("simdAlways" "QT_COMPILER_SUPPORTS_SIMD_ALWAYS" VALUE "1")
-qt_feature_config("simdAlways" QMAKE_PRIVATE_CONFIG)
qt_feature("mips_dsp" PRIVATE
LABEL "DSP"
CONDITION ( TEST_architecture_arch STREQUAL mips ) AND TEST_arch_${TEST_architecture_arch}_subarch_dsp
@@ -1080,10 +1074,6 @@ qt_configure_add_summary_entry(
CONDITION ( ( TEST_architecture_arch STREQUAL i386 ) OR ( TEST_architecture_arch STREQUAL x86_64 ) )
)
qt_configure_add_summary_entry(
- ARGS "simdAlways"
- CONDITION ( ( TEST_architecture_arch STREQUAL i386 ) OR ( TEST_architecture_arch STREQUAL x86_64 ) OR ( TEST_architecture_arch STREQUAL arm64 ) ) AND NOT MSVC
-)
-qt_configure_add_summary_entry(
TYPE "featureList"
ARGS "neon arm_crc32 arm_crypto"
MESSAGE "Extensions"