Skip to content

Rollup of 5 pull requests #66185

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 23 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
9ccf4f2
Stabilize --extern flag without a path.
ehuss Sep 28, 2019
04c2c60
Add more --extern tests.
ehuss Sep 30, 2019
8e62a01
Update built-in help for --extern.
ehuss Sep 30, 2019
414d7cf
Update extern linking documentation.
ehuss Sep 30, 2019
6d47766
Update src/test/ui-fulldeps/pathless-extern-unstable.rs
ehuss Oct 7, 2019
5e678cf
Add test for --extern alloc=librustc.rlib
ehuss Oct 8, 2019
40282a1
Remove docs on --extern metadata precedence.
ehuss Oct 16, 2019
098ffd9
Update for unstable option refactoring.
ehuss Oct 16, 2019
79956b9
add sub settings in rustdoc
GuillaumeGomez Sep 22, 2019
05c0791
consistent handling of missing sysroot spans
RalfJung Nov 2, 2019
1808968
also adjust ignore in generated tests
RalfJung Nov 2, 2019
8784b07
Change sub-setting CSS class to sub-settings
GuillaumeGomez Nov 4, 2019
02f9167
Have tidy ensure that we document all `unsafe` blocks in libcore
oli-obk Aug 21, 2019
954fc71
Halloween... time to get rid of 👻
oli-obk Oct 19, 2019
97633f8
Silence a deprecation warning
oli-obk Oct 19, 2019
34f7fcb
Rebase fallout
oli-obk Oct 25, 2019
e28287b
The unsafety in `iter.rs` is already documented wonderfully
oli-obk Oct 25, 2019
a5be036
invalid_value lint: fix help text
RalfJung Nov 7, 2019
c36badf
Rollup merge of #63793 - oli-obk:🧹, r=dtolnay
Centril Nov 7, 2019
50c4cde
Rollup merge of #64696 - GuillaumeGomez:rustdoc-sub-settings, r=kinnison
Centril Nov 7, 2019
9430418
Rollup merge of #64882 - ehuss:stabilize-bare-extern, r=eddyb
Centril Nov 7, 2019
aa71057
Rollup merge of #66049 - RalfJung:missing-spans, r=alexcrichton
Centril Nov 7, 2019
b94543b
Rollup merge of #66182 - RalfJung:invalid-value, r=Centril
Centril Nov 7, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove docs on --extern metadata precedence.
  • Loading branch information
ehuss committed Oct 16, 2019
commit 40282a19cd802fdaf952f4b469120df1d876f95b
5 changes: 2 additions & 3 deletions src/doc/rustc/src/command-line-arguments.md
Original file line number Diff line number Diff line change
Expand Up @@ -246,9 +246,8 @@ either of the following formats:
such as within the sysroot or via the `-L` flag.

The same crate name may be specified multiple times for different crate types.
For loading metadata, `rlib` takes precedence over `rmeta`, which takes
precedence over `dylib`. If both an `rlib` and `dylib` are found, an internal
algorithm is used to decide which to use for linking. The [`-C prefer-dynamic`
If both an `rlib` and `dylib` are found, an internal algorithm is used to
decide which to use for linking. The [`-C prefer-dynamic`
flag][prefer-dynamic] may be used to influence which is used.

If the same crate name is specified with and without a path, the one with the
Expand Down