diff options
author | Brad King <brad.king@kitware.com> | 2020-10-01 12:45:06 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2020-10-01 12:45:13 (GMT) |
commit | 2e8b85b040ebc9bd9f2ec4107a69caf6db311823 (patch) | |
tree | 528099890103af430c2d901785fe889b36a5cf97 /Source/cmGeneratorTarget.cxx | |
parent | cb8c51a08e96e1cd2d02def5c4dc09ec37782ae2 (diff) | |
parent | b6c60f14b6df53d8cb6fe442d801fdae50ddf287 (diff) | |
download | CMake-2e8b85b040ebc9bd9f2ec4107a69caf6db311823.zip CMake-2e8b85b040ebc9bd9f2ec4107a69caf6db311823.tar.gz CMake-2e8b85b040ebc9bd9f2ec4107a69caf6db311823.tar.bz2 |
Merge topic 'macos-arm64'
b6c60f14b6 macOS: Default to arm64 architecture on Apple Silicon hosts
383e81aa60 Tests: Teach RunCMake to ignore Xcode internal objc warnings
8f75912176 Tests: Enable Assembler test case when CMAKE_OSX_ARCHITECTURES has one value
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !5291
Diffstat (limited to 'Source/cmGeneratorTarget.cxx')
-rw-r--r-- | Source/cmGeneratorTarget.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmGeneratorTarget.cxx b/Source/cmGeneratorTarget.cxx index 859fa6a..bdea9fa 100644 --- a/Source/cmGeneratorTarget.cxx +++ b/Source/cmGeneratorTarget.cxx @@ -3190,6 +3190,9 @@ void cmGeneratorTarget::GetAppleArchs(const std::string& config, if (archs) { cmExpandList(*archs, archVec); } + if (archVec.empty()) { + this->Makefile->GetDefExpandList("_CMAKE_APPLE_ARCHS_DEFAULT", archVec); + } } void cmGeneratorTarget::AddCUDAArchitectureFlags(std::string& flags) const |