summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalXCodeGenerator.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2017-06-14 14:12:48 (GMT)
committerBrad King <brad.king@kitware.com>2017-06-14 14:36:57 (GMT)
commitba247ccabab05c0aad4fe7f56dd020bfa8ff4583 (patch)
tree259898e83b41d70b454287d01e88923ecb1bbd4e /Source/cmGlobalXCodeGenerator.cxx
parentd025faf436c86ee9cc033fbb324a9bc2c18757fa (diff)
downloadCMake-ba247ccabab05c0aad4fe7f56dd020bfa8ff4583.zip
CMake-ba247ccabab05c0aad4fe7f56dd020bfa8ff4583.tar.gz
CMake-ba247ccabab05c0aad4fe7f56dd020bfa8ff4583.tar.bz2
IPO: Consider support for each language separately
We only define `INTERPROCEDURAL_OPTIMIZATION` behavior for C, CXX, and Fortran languages. Do not try to enable support for other languages. Furthermore, each language builds with a different compiler, so check for support by CMake and the compiler for each language independently. Fixes: #16944
Diffstat (limited to 'Source/cmGlobalXCodeGenerator.cxx')
-rw-r--r--Source/cmGlobalXCodeGenerator.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalXCodeGenerator.cxx b/Source/cmGlobalXCodeGenerator.cxx
index 64616ad..45c1764 100644
--- a/Source/cmGlobalXCodeGenerator.cxx
+++ b/Source/cmGlobalXCodeGenerator.cxx
@@ -1666,7 +1666,7 @@ void cmGlobalXCodeGenerator::CreateBuildSettings(cmGeneratorTarget* gtgt,
return;
}
- if (gtgt->IsIPOEnabled(configName)) {
+ if (gtgt->IsIPOEnabled(llang, configName)) {
const char* ltoValue =
this->CurrentMakefile->IsOn("_CMAKE_LTO_THIN") ? "YES_THIN" : "YES";
buildSettings->AddAttribute("LLVM_LTO", this->CreateString(ltoValue));