swift: Add swift_implicit_main target kwarg #14298
Open
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This is a more customizable approach to #14267. (Closes #14267.)
The '-parse-as-library' compiler option forbids emitting top-level statements as part of an implicitly generated main function. This happens either in Swift modules consisting of only one file, or modules containing a 'main.swift' file. As a consequence, library targets should usually have this argument applied in order to not cause duplicate main symbols when linking the final executable. This is the new default behavior. Sometimes it is necessary to override this behavior, for example in case your Swift program has a struct annotated with @main, or you have an executable Swift target that gets its main function from elsewhere (for example, linked C code). For this, targets can be passed the 'swift_implicit_main' kwarg, either with 'auto', which specifies Swift's default behavior, or 'never', which passes the '-parse-as-library' flag.