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: src/doc/rustc/src/command-line-arguments.md
+27
Original file line number
Diff line number
Diff line change
@@ -104,6 +104,33 @@ This modifier has no effect when building other targets like executables or dyna
104
104
105
105
The default for this modifier is `+bundle`.
106
106
107
+
### Linking modifiers: `verbatim`
108
+
109
+
This modifier is compatible with all linking kinds.
110
+
111
+
`+verbatim` means that rustc itself won't add any target-specified library prefixes or suffixes
112
+
(like `lib` or `.a`) to the library name, and will try its best to ask for the same thing from the
113
+
linker.
114
+
115
+
For `ld`-like linkers supporting GNU extensions rustc will use the `-l:filename` syntax (note the
116
+
colon) when passing the library, so the linker won't add any prefixes or suffixes to it.
117
+
See [`-l namespec`](https://sourceware.org/binutils/docs/ld/Options.html) in ld documentation for
118
+
more details. \
119
+
For linkers not supporting any verbatim modifiers (e.g. `link.exe` or `ld64`) the library name will
120
+
be passed as is. So the most reliable cross-platform use scenarios for this option are when no
121
+
linker is involved, for example bundling native libraries into rlibs.
122
+
123
+
`-verbatim` means that rustc will either add a target-specific prefix and suffix to the library
124
+
name before passing it to linker, or won't prevent linker from implicitly adding it. \
125
+
In case of `raw-dylib` kind in particular `.dll` will be added to the library name on Windows.
126
+
127
+
The default for this modifier is `-verbatim`.
128
+
129
+
NOTE: Even with `+verbatim` and `-l:filename` syntax `ld`-like linkers do not typically support
130
+
passing absolute paths to libraries. Usually such paths need to be passed as input files without
131
+
using any options like `-l`, e.g. `ld /my/absolute/path`. \
132
+
`-Clink-arg=/my/absolute/path` can be used for doing this from stable `rustc`.
133
+
107
134
<aid="option-crate-type"></a>
108
135
## `--crate-type`: a list of types of crates for the compiler to emit
0 commit comments