]> git.proxmox.com Git - rustc.git/blobdiff - compiler/rustc_target/src/spec/wasm32_wasi.rs
New upstream version 1.53.0+dfsg1
[rustc.git] / compiler / rustc_target / src / spec / wasm32_wasi.rs
index 3f44acdc36b2da1adcc9191868c32bf30a4da11e..a6b12d2ee8f65005018662eeb92157b6c6b41567 100644 (file)
 //! best we can with this target. Don't start relying on too much here unless
 //! you know what you're getting in to!
 
-use super::wasm32_base;
+use super::wasm_base;
 use super::{crt_objects, LinkerFlavor, LldFlavor, Target};
 
 pub fn target() -> Target {
-    let mut options = wasm32_base::options();
+    let mut options = wasm_base::options();
 
     options.os = "wasi".to_string();
     options.linker_flavor = LinkerFlavor::Lld(LldFlavor::Wasm);