We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d857d9 commit 42624baCopy full SHA for 42624ba
src/bootstrap/config.rs
@@ -1180,7 +1180,11 @@ impl Config {
1180
.get(&target)
1181
.and_then(|t| t.llvm_libunwind)
1182
.or(self.llvm_libunwind_default)
1183
- .unwrap_or(LlvmLibunwind::No)
+ .unwrap_or(if target.contains("fuchsia") {
1184
+ LlvmLibunwind::InTree
1185
+ } else {
1186
+ LlvmLibunwind::No
1187
+ })
1188
}
1189
1190
pub fn submodules(&self, rust_info: &GitInfo) -> bool {
0 commit comments