mirror of
https://github.com/google/benchmark.git
synced 2025-04-03 16:10:58 +08:00
Add MSVC ARM64 support to cmake (#1090)
This commit is contained in:
parent
a53b8853aa
commit
17948a78ee
@ -37,6 +37,17 @@ option(BENCHMARK_ENABLE_GTEST_TESTS "Enable building the unit tests which depend
|
|||||||
option(BENCHMARK_ENABLE_LIBPFM "Enable performance counters provided by libpfm" OFF)
|
option(BENCHMARK_ENABLE_LIBPFM "Enable performance counters provided by libpfm" OFF)
|
||||||
|
|
||||||
set(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS ON)
|
set(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS ON)
|
||||||
|
if(MSVC)
|
||||||
|
# As of CMake 3.18, CMAKE_SYSTEM_PROCESSOR is not set properly for MSVC and
|
||||||
|
# cross-compilation (e.g. Host=x86_64, target=aarch64) requires using the
|
||||||
|
# undocumented, but working variable.
|
||||||
|
# See https://gitlab.kitware.com/cmake/cmake/-/issues/15170
|
||||||
|
set(CMAKE_SYSTEM_PROCESSOR ${MSVC_CXX_ARCHITECTURE_ID})
|
||||||
|
if(${CMAKE_SYSTEM_PROCESSOR} MATCHES "ARM")
|
||||||
|
set(CMAKE_CROSSCOMPILING TRUE)
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
|
||||||
set(ENABLE_ASSEMBLY_TESTS_DEFAULT OFF)
|
set(ENABLE_ASSEMBLY_TESTS_DEFAULT OFF)
|
||||||
function(should_enable_assembly_tests)
|
function(should_enable_assembly_tests)
|
||||||
if(CMAKE_BUILD_TYPE)
|
if(CMAKE_BUILD_TYPE)
|
||||||
|
Loading…
Reference in New Issue
Block a user