mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-22 14:23:10 -05:00
b7f0327dcd
Add test cases verifying that `CMAKE_APPLE_SILICON_PROCESSOR` set as either a cache or environment variable causes that to be selected as the host architecture. Also verify that sources compile using whatever is selected as the host architecture, even when the explicit setting is not used. Issue: #21554
10 lines
155 B
C
10 lines
155 B
C
#ifndef __aarch64__
|
|
# error "Not compiling as arm64"
|
|
#endif
|
|
#ifdef __x86_64__
|
|
# error "Incorrectly compiling as x86_64"
|
|
#endif
|
|
void arm64_arch(void)
|
|
{
|
|
}
|