We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4de7f24 commit 9dd3123Copy full SHA for 9dd3123
xtask/src/main.rs
@@ -54,13 +54,16 @@ fn main() -> Result<()> {
54
force_esp_riscv_toolchain,
55
}) = args.command
56
{
57
+ let clang_sysroot = sys_crate_root_path.join("gen").join("sysroot");
58
let builder = builder::OpenThreadBuilder::new(
59
+ // Always use clang here for convenience.
60
+ true,
61
sys_crate_root_path.clone(),
62
Some(target.clone()),
63
// Fake host, but we do need to pass something to CMake
64
Some("x86_64-unknown-linux-gnu".into()),
65
None,
- None,
66
+ Some(clang_sysroot),
67
68
69
);
0 commit comments