File tree 2 files changed +5
-7
lines changed
doc/rustc/src/platform-support
2 files changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -1445,7 +1445,11 @@ impl Config {
1445
1445
. get ( & target)
1446
1446
. and_then ( |t| t. llvm_libunwind )
1447
1447
. or ( self . llvm_libunwind_default )
1448
- . unwrap_or ( LlvmLibunwind :: No )
1448
+ . unwrap_or ( if target. contains ( "fuchsia" ) {
1449
+ LlvmLibunwind :: InTree
1450
+ } else {
1451
+ LlvmLibunwind :: No
1452
+ } )
1449
1453
}
1450
1454
1451
1455
pub fn submodules ( & self , rust_info : & GitInfo ) -> bool {
Original file line number Diff line number Diff line change @@ -53,12 +53,6 @@ In `config.toml`, add:
53
53
``` toml
54
54
[build ]
55
55
target = [" <host_platform>" , " aarch64-fuchsia" , " x86_64-fuchsia" ]
56
-
57
- [target .x86_64-fuchsia ]
58
- llvm-libunwind = " in-tree"
59
-
60
- [target .aarch64-fuchsia ]
61
- llvm-libunwind = " in-tree"
62
56
```
63
57
64
58
Additionally, the following environment variables must be configured (for
You can’t perform that action at this time.
0 commit comments