You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[lld][WebAssembly] Report undefined symbols by default -shared/-pie builds
Previously we would ignore/import all undefined symbols when using
`-shared` or `-pie`. With this change we now track symbol in shared
libraries and report undefined symbols by default.
This can be a breaking change for any users of dyanmic linking.
However, the old behaviour is still available using
`--unresolved-symbols=import-dynamic`. This rationale for allowing this
type of breaking change is that `-pie` and `-shared` are both still
experimental will warn as such, unless `--experimental-pic` is passed.
See emscripten-core/emscripten#18198
0 commit comments