Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ jobs:
- os: ubuntu-latest
rust: beta
- os: ubuntu-latest
rust: nightly-2025-12-05
rust: nightly-2026-01-20
- os: macos-latest
rust: stable
- os: windows-latest
Expand Down
6 changes: 6 additions & 0 deletions crates/wit-dylib/test-programs/artifacts/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,12 @@ https://github.com/webassembly/wasi-sdk
format!("CARGO_TARGET_{upcase}_LINKER"),
wasi_sdk_path.join("bin/clang"),
)
// FIXME: this is needed since the Rust standard library is depending on
// a buggy libc crate which has bindings for symbols that don't exist.
// Once libc is updated in rust-lang/rust and that propagates to stable
// this can be removed.
.env("CARGO_PROFILE_DEV_LTO", "true")
.env("CARGO_PROFILE_RELEASE_LTO", "true")
.env_remove("CARGO_ENCODED_RUSTFLAGS");
if !debug {
cargo.arg("--release");
Expand Down