Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cpu_features: Update submodule pointer #550

Merged
merged 3 commits into from
Dec 23, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,11 @@ if (VOLK_CPU_FEATURES)
message(FATAL_ERROR "cpu_features/CMakeLists.txt not found. Did you forget to git clone recursively?\nFix with: git submodule update --init")
endif()
message(STATUS "Building Volk with cpu_features")
set(BUILD_PIC ON CACHE BOOL
set(BUILD_TESTING OFF CACHE BOOL "Build cpu_features without tests." FORCE)
set(BUILD_PIC ON CACHE BOOL
"Build cpu_features with Position Independent Code (PIC)."
FORCE)
set(CMAKE_POSITION_INDEPENDENT_CODE ON CACHE BOOL
"Build cpu_features with Position Independent Code (PIC)."
FORCE)
set(BUILD_SHARED_LIBS_SAVED "${BUILD_SHARED_LIBS}")
Expand Down
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