summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalGenerator.h
diff options
context:
space:
mode:
authorEvan Wilde <etceterawilde@gmail.com>2023-11-22 19:09:35 (GMT)
committerEvan Wilde <etceterawilde@gmail.com>2023-12-15 13:51:13 (GMT)
commit9bed4f4d817f139f0c2e050d7420e1e247949fe4 (patch)
tree5e89c57c5becc55a005b0bdf214e88949e07fe5f /Source/cmLocalGenerator.h
parent64b336784507f7b8c9117cf5367a6abfc78a8ba3 (diff)
downloadCMake-9bed4f4d817f139f0c2e050d7420e1e247949fe4.zip
CMake-9bed4f4d817f139f0c2e050d7420e1e247949fe4.tar.gz
CMake-9bed4f4d817f139f0c2e050d7420e1e247949fe4.tar.bz2
Swift/Ninja: Split compilation model
Splitting the Swift build into an object build and a separate link step, instead of building and linking in one step. The immediate benefit is LSP support because we are able to emit compile-commands for Swift files now. Additionally, it is possible to specify flags to the compile step, enabling folks to emit C and C++ headers from their Swift builds for C/C++ interop, without needing custom commands. Eventually, this gives us a path toward working object libraries. Object Libraries: - Object libraries don't work today because CMake doesn't emit targets for object libraries into the Ninja build file. - tl;dr: Object libraries work if they aren't WMO. Still need work to make WMO'd object libraries work. Object libraries still don't completely work with this patch because, while we emit the targets, the `TARGET_OBJECTS` generator expression expansion has a separate mechanism for determining what the names of the objects are based on the input source files, so targets that depend on an object library built with a whole-module optimization will depend on objects based on the name of the source file instead of the actual emitted object file. These features require being able to accurately model wholemodule builds though, because we actually need to track object files and WMO affects what objects are emitted. For that, we require CMP0157 use the NEW policy. When it's OLD, we have to fall back on the old behavior and cannot provide object libraries or the compile-commands for LSP. Issue: #25308
Diffstat (limited to 'Source/cmLocalGenerator.h')
-rw-r--r--Source/cmLocalGenerator.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmLocalGenerator.h b/Source/cmLocalGenerator.h
index af5b35e..3ec349b 100644
--- a/Source/cmLocalGenerator.h
+++ b/Source/cmLocalGenerator.h
@@ -562,6 +562,10 @@ public:
cm::optional<cmSwiftCompileMode> GetSwiftCompileMode(
cmGeneratorTarget const* target, std::string const& config);
+ // Can we build Swift with a separate object build and link step
+ // (If CMP0157 is NEW, we can do a split build)
+ bool IsSplitSwiftBuild() const;
+
protected:
// The default implementation converts to a Windows shortpath to
// help older toolchains handle spaces and such. A generator may