You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Embedded targets may need `-nostdlib` passed to `clang` linker driver in certain situations, see #1534 for more details.
Currently, `swiftc` doesn't recognize `-nostdlib` at all, while `-Xlinker -nostdlib` passed to a `swiftc` link job from the build system will be passed verbatim to the linker and not recognized by the linker driver. We should support this flag in `swiftc` to fix this.
Copy file name to clipboardexpand all lines: Sources/SwiftOptions/Options.swift
+2
Original file line number
Diff line number
Diff line change
@@ -608,6 +608,7 @@ extension Option {
608
608
publicstaticletdriverScanDependenciesNonLib:Option=Option("-nonlib-dependency-scanner",.flag, attributes:[.helpHidden], helpText:"Use calls to `swift-frontend -scan-dependencies` instead of dedicated dependency scanning library")
609
609
publicstaticletnostartfiles:Option=Option("-nostartfiles",.flag, attributes:[.helpHidden,.frontend,.noInteractive,.doesNotAffectIncrementalBuild], helpText:"Do not link in the Swift language startup routines")
610
610
publicstaticletnostdimport:Option=Option("-nostdimport",.flag, attributes:[.frontend], helpText:"Don't search the standard library import path for modules")
611
+
publicstaticletnostdlib:Option=Option("-nostdlib",.flag, attributes:[.helpHidden], helpText:"Don't link the C and compiler runtime libraries", group:.linkerOption)
611
612
publicstaticletnumThreads:Option=Option("-num-threads",.separate, attributes:[.frontend,.doesNotAffectIncrementalBuild,.cacheInvariant], metaVar:"<n>", helpText:"Enable multi-threading and specify number of threads")
612
613
publicstaticletomitExtensionBlockSymbols:Option=Option("-omit-extension-block-symbols",.flag, attributes:[.helpHidden,.frontend,.noInteractive,.supplementaryOutput], helpText:"Directly associate members and conformances with the extended nominal when generating symbol graphs instead of emitting 'swift.extension' symbols for extensions to external types")
613
614
publicstaticletOnone:Option=Option("-Onone",.flag, attributes:[.frontend,.moduleInterface], helpText:"Compile without any optimization", group:.O)
0 commit comments