Skip to content

Commit

Permalink
cpu_features: Update submodule pointer
Browse files Browse the repository at this point in the history
We have 3 issues that should be fixed with this commit.

Fix gnuradio#428
Should be fixed because cpu_features detects `arm64` now. Thus, it
builds on MacOS and reports M1 capabilities.

Fix gnuradio#478
Fix gnuradio#484
cpu_features received quite a bit of contributions for FreeBSD. All the
issues we had should be fixed now. However, this might require further
evaluation.

Signed-off-by: Johannes Demel <[email protected]>
  • Loading branch information
jdemel committed Dec 22, 2021
1 parent be3cf50 commit 9b6470a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpu_features
Submodule cpu_features updated 65 files
+31 −0 .dockerignore
+1 −1 .github/workflows/Dockerfile
+28 −0 .github/workflows/aarch64_linux.yml
+22 −0 .github/workflows/amd64_freebsd.yml
+31 −0 .github/workflows/amd64_linux.yml
+43 −0 .github/workflows/amd64_macos.yml
+25 −0 .github/workflows/amd64_windows.yml
+31 −0 .github/workflows/arm_linux.yml
+30 −0 .github/workflows/mips_linux.yml
+10 −1 .gitignore
+0 −121 .travis.yml
+6 −16 CMakeLists.txt
+52 −23 README.md
+0 −7 WORKSPACE
+0 −24 appveyor.yml
+240 −0 ci/Makefile
+66 −0 ci/README.md
+64 −0 ci/doc/docker.dot
+312 −0 ci/doc/docker.svg
+7 −0 ci/doc/generate_image.sh
+48 −0 ci/docker/amd64/Dockerfile
+34 −0 ci/docker/toolchain/Dockerfile
+22 −0 ci/sample/CMakeLists.txt
+11 −0 ci/sample/main.cpp
+102 −0 ci/vagrant/freebsd/Vagrantfile
+18 −16 cmake/README.md
+1 −1 cmake/googletest.CMakeLists.txt.in
+29 −3 include/cpu_features_macros.h
+2 −0 include/cpuinfo_aarch64.h
+6 −3 include/cpuinfo_ppc.h
+52 −28 include/cpuinfo_x86.h
+10 −6 include/internal/hwcaps.h
+2 −1 include/internal/string_view.h
+1 −1 ndk_compat/CMakeLists.txt
+72 −0 scripts/make_release.sh
+301 −147 scripts/run_integration.sh
+16 −43 scripts/test_integration.sh
+19 −0 src/copy.inl
+0 −150 src/cpuinfo_aarch64.c
+0 −154 src/cpuinfo_ppc.c
+86 −0 src/define_introspection.inl
+26 −0 src/define_introspection_and_hwcaps.inl
+0 −67 src/define_tables.h
+22 −0 src/equals.inl
+7 −14 src/hwcaps.c
+150 −0 src/impl_aarch64_linux_or_android.c
+49 −50 src/impl_arm_linux_or_android.c
+23 −27 src/impl_mips_linux_or_android.c
+162 −0 src/impl_ppc_linux.c
+676 −574 src/impl_x86__base_implementation.inl
+67 −0 src/impl_x86_freebsd.c
+57 −0 src/impl_x86_linux_or_android.c
+56 −0 src/impl_x86_macos.c
+49 −0 src/impl_x86_windows.c
+18 −8 src/string_view.c
+1 −0 src/utils/list_cpu_features.c
+11 −5 test/CMakeLists.txt
+4 −1 test/cpuinfo_aarch64_test.cc
+9 −9 test/cpuinfo_arm_test.cc
+5 −5 test/cpuinfo_mips_test.cc
+6 −6 test/cpuinfo_ppc_test.cc
+646 −80 test/cpuinfo_x86_test.cc
+15 −9 test/hwcaps_for_testing.cc
+5 −1 test/hwcaps_for_testing.h
+16 −6 test/string_view_test.cc

0 comments on commit 9b6470a

Please sign in to comment.