Merge pull request #658 from tgross35/emscripten-fix

This commit is contained in:
Amanieu d'Antras 2024-08-05 22:58:15 +01:00 committed by GitHub
commit e7912d3dca
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -55,7 +55,7 @@ fn main() {
println!("cargo:rustc-cfg=feature=\"unstable\"");
// Emscripten's runtime includes all the builtins
if target.env == "emscripten" {
if target.os == "emscripten" {
return;
}