Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
8b1f85c
Windows: Iterative `remove_dir_all`
ChrisDenton Apr 25, 2022
8dc4696
Retry deleting a directory
ChrisDenton Apr 26, 2022
d579665
Yield the thread when waiting to delete a file
ChrisDenton Apr 28, 2022
ab3a2a0
Unify copying data from enclave to userspace
raoulstrackx Mar 29, 2022
531752f
Mitigate MMIO stale data vulnerabilities
raoulstrackx Mar 28, 2022
6f7d193
Ensure userspace allocation is 8-byte aligned
raoulstrackx Mar 23, 2022
a27aace
Test `copy_to_userspace` function
raoulstrackx Mar 22, 2022
d722944
Leak pthreax_mutex_t when it's dropped while locked.
m-ou-se Jun 16, 2022
e642c59
Leak pthreax_rwlock_t when it's dropped while locked.
m-ou-se Jun 19, 2022
6ac6866
Reverse folder hierarchy
eggyal Jun 20, 2022
75203ee
Remove unecessary references to TypeFolder::Error
eggyal Jun 21, 2022
402dceb
point to type param definition when not finding variant, method and a…
TaKO8Ki Jun 20, 2022
6a6910e
Address reviewer comments
raoulstrackx Jun 22, 2022
d23eea5
Add tracking issues to `--extern` option docs.
ehuss Jun 22, 2022
3c7f1f1
Suggest defining variable as mutable on `&mut _` type mismatch in pats
WaffleLapkin Jun 23, 2022
ada2acc
Set relocation_model to Pic on emscripten target
hoodmane Jun 15, 2022
e25129b
take advantage of a labelled block
WaffleLapkin Jun 24, 2022
1dfb53b
improve wording of a suggestion
WaffleLapkin Jun 24, 2022
c06d8f9
Fix trait object reborrow suggestion
compiler-errors Jun 20, 2022
25fe474
Note concrete type being coerced into object
compiler-errors Jun 20, 2022
02318f3
Rollup merge of #96412 - ChrisDenton:remove-dir-all, r=thomcc
JohnTitor Jun 25, 2022
24ff792
Rollup merge of #98126 - fortanix:raoul/mitigate_stale_data_vulnerabi…
JohnTitor Jun 25, 2022
0104326
Rollup merge of #98149 - hoodmane:emscripten-pic, r=petrochenkov
JohnTitor Jun 25, 2022
f6c1d26
Rollup merge of #98194 - m-ou-se:leak-locked-pthread-mutex, r=Amanieu
JohnTitor Jun 25, 2022
d0cda3e
Rollup merge of #98277 - compiler-errors:issue-93596, r=estebank
JohnTitor Jun 25, 2022
f4c06c2
Rollup merge of #98298 - TaKO8Ki:point-to-type-param-definition, r=co…
JohnTitor Jun 25, 2022
5014bae
Rollup merge of #98311 - eggyal:reverse-folder-hierarchy, r=jackh726
JohnTitor Jun 25, 2022
e75f9a5
Rollup merge of #98401 - ehuss:extern-tracking, r=Dylan-DPC
JohnTitor Jun 25, 2022
134263f
Rollup merge of #98431 - WaffleLapkin:mut_pat_suggestions, r=compiler…
JohnTitor Jun 25, 2022
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
Add tracking issues to --extern option docs.
  • Loading branch information
ehuss committed Jun 22, 2022
commit d23eea59f88de2b1b41812862da57bce76b651e0
5 changes: 5 additions & 0 deletions src/doc/unstable-book/src/compiler-flags/extern-options.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# `--extern` Options

* Tracking issue for `--extern` crate modifiers: [#98405](https://github.com/rust-lang/rust/issues/98405)
* Tracking issue for `noprelude`: [#98398](https://github.com/rust-lang/rust/issues/98398)
* Tracking issue for `priv`: [#98399](https://github.com/rust-lang/rust/issues/98399)
* Tracking issue for `nounused`: [#98400](https://github.com/rust-lang/rust/issues/98400)

The behavior of the `--extern` flag can be modified with `noprelude`, `priv` or `nounused` options.

This is unstable feature, so you have to provide `-Zunstable-options` to enable it.
Expand Down