Skip to content

Commit 9093e23

Browse files
committed
rustc.1: lowercase codegen replaceable options
This is more consistent with `rustc -C help` output.
1 parent 4b00e87 commit 9093e23

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

man/rustc.1

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ Path to the archive utility to use when assembling archives.
146146
Path to the linker utility to use when linking libraries, executables, and
147147
objects.
148148
.TP
149-
\fBlink\-args\fR='\fI\-FLAG1 \-FLAG2\fR'
149+
\fBlink\-args\fR='\fI\-flag1 \-flag2\fR'
150150
A space\[hy]separated list of extra arguments to pass to the linker when the linker
151151
is invoked.
152152
.TP
@@ -157,18 +157,18 @@ Perform LLVM link\[hy]time optimizations.
157157
Selects a target processor.
158158
If the value is 'help', then a list of available CPUs is printed.
159159
.TP
160-
\fBtarget\-feature\fR='\fI+FEATURE1\fR,\fI\-FEATURE2\fR'
160+
\fBtarget\-feature\fR='\fI+feature1\fR,\fI\-feature2\fR'
161161
A comma\[hy]separated list of features to enable or disable for the target.
162162
A preceding '+' enables a feature while a preceding '\-' disables it.
163163
Available features can be discovered through \fItarget\-cpu=help\fR.
164164
.TP
165-
\fBpasses\fR=\fILIST\fR
165+
\fBpasses\fR=\fIval\fR
166166
A space\[hy]separated list of extra LLVM passes to run.
167167
A value of 'list' will cause \fBrustc\fR to print all known passes and
168168
exit.
169169
The passes specified are appended at the end of the normal pass manager.
170170
.TP
171-
\fBllvm\-args\fR='\fI\-ARG1\fR \fI\-ARG2\fR'
171+
\fBllvm\-args\fR='\fI\-arg1\fR \fI\-arg2\fR'
172172
A space\[hy]separated list of arguments to pass through to LLVM.
173173
.TP
174174
\fBsave\-temps\fR
@@ -210,22 +210,22 @@ The relocation model to use.
210210
\fBcode\-model\fR=[small,kernel,medium,large]
211211
Choose the code model to use.
212212
.TP
213-
\fBmetadata\fR=\fIVAL\fR
213+
\fBmetadata\fR=\fIval\fR
214214
Metadata to mangle symbol names with.
215215
.TP
216-
\fBextra\-filename\fR=\fIVAL\fR
216+
\fBextra\-filename\fR=\fIval\fR
217217
Extra data to put in each output filename.
218218
.TP
219-
\fBcodegen\-units\fR=\fIN\fR
220-
Divide crate into \fIN\fR units to optimize in parallel.
219+
\fBcodegen\-units\fR=\fIn\fR
220+
Divide crate into \fIn\fR units to optimize in parallel.
221221
.TP
222-
\fBremark\fR=\fIVAL\fR
222+
\fBremark\fR=\fIval\fR
223223
Print remarks for these optimization passes (space separated, or "all").
224224
.TP
225225
\fBno\-stack\-check\fR
226226
Disable checks for stack exhaustion (a memory\[hy]safety hazard!).
227227
.TP
228-
\fBdebuginfo\fR=\fIVAL\fR
228+
\fBdebuginfo\fR=\fIval\fR
229229
Debug info emission level:
230230
.RS
231231
.TP

0 commit comments

Comments
 (0)