File tree Expand file tree Collapse file tree 4 files changed +1233
-2
lines changed Expand file tree Collapse file tree 4 files changed +1233
-2
lines changed Original file line number Diff line number Diff line change @@ -6,3 +6,6 @@ title = "The rustc book"
6
6
[output .html ]
7
7
git-repository-url = " https://github.com/rust-lang/rust/tree/master/src/doc/rustc"
8
8
edit-url-template = " https://github.com/rust-lang/rust/edit/master/src/doc/rustc/{path}"
9
+
10
+ [output .html .playground ]
11
+ runnable = false
Original file line number Diff line number Diff line change 3
3
- [ What is rustc?] ( what-is-rustc.md )
4
4
- [ Command-line Arguments] ( command-line-arguments.md )
5
5
- [ Codegen Options] ( codegen-options/index.md )
6
+ - [ Symbol Mangling] ( codegen-options/symbol-mangling.md )
6
7
- [ Lints] ( lints/index.md )
7
8
- [ Lint Levels] ( lints/levels.md )
8
9
- [ Lint Groups] ( lints/groups.md )
Original file line number Diff line number Diff line change @@ -569,13 +569,15 @@ for the purpose of generating object code and linking.
569
569
570
570
Supported values for this option are:
571
571
572
- * ` v0 ` — The "v0" mangling scheme. The specific format is not specified at
573
- this time.
572
+ * ` v0 ` — The "v0" mangling scheme.
574
573
575
574
The default, if not specified, will use a compiler-chosen default which may
576
575
change in the future.
577
576
577
+ See the [ Symbol Mangling] chapter for details on symbol mangling and the mangling format.
578
+
578
579
[ name mangling ] : https://en.wikipedia.org/wiki/Name_mangling
580
+ [ Symbol Mangling ] : symbol-mangling.md
579
581
580
582
## target-cpu
581
583
You can’t perform that action at this time.
0 commit comments