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
Copy file name to clipboardExpand all lines: Sources/GeneratorCLI/GeneratorCLI.swift
+11-6Lines changed: 11 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -148,15 +148,19 @@ extension GeneratorCLI {
148
148
varhost:Triple?=nil
149
149
150
150
@Option(
151
-
help:"""
152
-
The target triple of the bundle. The default depends on a recipe used for SDK generation. Pass `--help` to a specific recipe subcommand for more details.
153
-
"""
154
-
)
151
+
help:
152
+
"The target triple of the bundle. The default depends on a recipe used for SDK generation.")
155
153
vartarget:Triple?=nil
156
154
157
155
@Option(help:"Deprecated. Use `--host` instead")
158
156
varhostArch:Triple.Arch?=nil
159
-
@Option(help:"Deprecated. Use `--target` instead")
157
+
@Option(
158
+
help:"""
159
+
The target arch of the bundle. The default depends on a recipe used for SDK generation.
160
+
If this is passed, the target triple will default to `<target-arch>-unknown-linux-gnu`.
161
+
Use the `--target` param to pass the full target triple if needed.
162
+
"""
163
+
)
160
164
vartargetArch:Triple.Arch?=nil
161
165
162
166
/// Default to adding host toolchain when building on macOS
0 commit comments