Skip to content

Commit a96b14e

Browse files
authored
Unrolled build for rust-lang#124036
Rollup merge of rust-lang#124036 - alexcrichton:wasm-use-default-visbility, r=jieyouxu Remove `default_hidden_visibility: false` from wasm targets To the best of my ability I believe that this is no longer necessary. I don't fully recall why this was first added but I believe it had to do with symbols all being exported by default and this was required to undo that. Regardless nowadays the default output of rustc seems suitable so it seems best to keep wasm in line with other targets.
2 parents 3fba278 + f25668c commit a96b14e

File tree

1 file changed

+0
-3
lines changed
  • compiler/rustc_target/src/spec/base

1 file changed

+0
-3
lines changed

compiler/rustc_target/src/spec/base/wasm.rs

-3
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,6 @@ pub fn options() -> TargetOptions {
8080
// threaded model which will legalize atomics to normal operations.
8181
singlethread: true,
8282

83-
// no dynamic linking, no need for default visibility!
84-
default_hidden_visibility: true,
85-
8683
// Symbol visibility takes care of this for the WebAssembly.
8784
// Additionally the only known linker, LLD, doesn't support the script
8885
// arguments just yet

0 commit comments

Comments
 (0)