-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
On older Windows versions and CPUs without AVX this check would fail if SSSE3 was supported fine, and as x86-64-v2 isn't a hard requirement yet this was a regression. See #2091.
- Loading branch information
1 parent
6cc70c5
commit adcce24
Showing
2 changed files
with
17 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule cpu_features
updated
23 files
+28 −0 | .github/workflows/riscv_linux_cmake.yml | |
+26 −1 | BUILD.bazel | |
+17 −3 | CMakeLists.txt | |
+30 −26 | README.md | |
+4 −0 | bazel/platforms.bzl | |
+3 −0 | cmake/ci/Makefile | |
+1 −1 | include/cpu_features_macros.h | |
+141 −4 | include/cpuinfo_aarch64.h | |
+72 −0 | include/cpuinfo_riscv.h | |
+0 −1 | include/cpuinfo_x86.h | |
+28 −6 | include/internal/hwcaps.h | |
+32 −0 | include/internal/windows_utils.h | |
+11 −8 | scripts/generate_badges.d | |
+21 −1 | scripts/run_integration.sh | |
+85 −56 | src/impl_aarch64_linux_or_android.c | |
+138 −0 | src/impl_aarch64_windows.c | |
+111 −0 | src/impl_riscv_linux.c | |
+73 −1 | src/impl_x86__base_implementation.inl | |
+11 −0 | src/utils/list_cpu_features.c | |
+12 −1 | test/CMakeLists.txt | |
+118 −10 | test/cpuinfo_aarch64_test.cc | |
+180 −0 | test/cpuinfo_riscv_test.cc | |
+46 −0 | test/cpuinfo_x86_test.cc |