Skip to content

Commit d3303b0

Browse files
Update extern linking documentation
In particular, remove the note saying cdylibs can't link against dylibs — that hasn't been true for over four years. * 2019-11-07: note is written: b54e8ec * 2020-01-23: restriction is lifted (without updating docs): 72aaa3a
1 parent 52f3c71 commit d3303b0

File tree

1 file changed

+9
-6
lines changed
  • src/doc/rustc/src/codegen-options

1 file changed

+9
-6
lines changed

src/doc/rustc/src/codegen-options/index.md

+9-6
Original file line numberDiff line numberDiff line change
@@ -410,13 +410,16 @@ See also the [`no-prepopulate-passes`](#no-prepopulate-passes) flag.
410410

411411
By default, `rustc` prefers to statically link dependencies. This option will
412412
indicate that dynamic linking should be used if possible if both a static and
413-
dynamic versions of a library are available. There is an internal algorithm
414-
for determining whether or not it is possible to statically or dynamically
415-
link with a dependency. For example, `cdylib` crate types may only use static
416-
linkage. This flag takes one of the following values:
413+
dynamic versions of a library are available.
417414

418-
* `y`, `yes`, `on`, `true` or no value: use dynamic linking.
419-
* `n`, `no`, `off` or `false`: use static linking (the default).
415+
There is [an internal algorithm](https://github.com/rust-lang/rust/blob/master/compiler/rustc_metadata/src/dependency_format.rs)
416+
for determining whether or not it is possible to statically or dynamically link
417+
with a dependency.
418+
419+
This flag takes one of the following values:
420+
421+
* `y`, `yes`, `on`, `true` or no value: prefer dynamic linking.
422+
* `n`, `no`, `off` or `false`: prefer static linking (the default).
420423

421424
## profile-generate
422425

0 commit comments

Comments
 (0)