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
Add a `-build-id` option to the driver to let users control the build
ID setting used by the linker. Pass `--build-id` to the linker by default,
so that build IDs are enabled by default but using the linker's default
type; if someone wishes to specify a particular option, they can do so
using the new driver option.
Also turn on build IDs when *building* the driver.
rdar://116798309
Copy file name to clipboardExpand all lines: Sources/SwiftOptions/Options.swift
+4
Original file line number
Diff line number
Diff line change
@@ -58,6 +58,8 @@ extension Option {
58
58
publicstaticletbridgingHeaderDirectoryForPrint:Option=Option("-bridging-header-directory-for-print",.separate, attributes:[.helpHidden,.frontend,.noDriver], metaVar:"<path>", helpText:"Directory for bridging header to be printed in compatibility header")
59
59
publicstaticletbridgingHeaderPchKey:Option=Option("-bridging-header-pch-key",.separate, attributes:[.helpHidden,.frontend,.noDriver], helpText:"Cache Key for bridging header pch")
60
60
publicstaticletbsdk:Option=Option("-bsdk",.joinedOrSeparate, attributes:[.noDriver,.argumentIsPath], helpText:"path to the baseline SDK to import frameworks")
publicstaticletbypassBatchModeChecks:Option=Option("-bypass-batch-mode-checks",.flag, attributes:[.helpHidden,.frontend,.noDriver], helpText:"Bypass checks for batch-mode errors.")
63
65
publicstaticletbypassResilience:Option=Option("-bypass-resilience-checks",.flag, attributes:[.helpHidden,.frontend,.noDriver], helpText:"Ignore all checks for module resilience.")
0 commit comments