-
Notifications
You must be signed in to change notification settings - Fork 13.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[WebAssembly][lld] excessive undefined symbol errors when building a shared library #103592
Comments
@llvm/issue-subscribers-lld-wasm Author: YAMAMOTO Takashi (yamt)
after 22b7b84,
wasm-ld complains on undefined symbols when building -shared/-pie. it's nice.
however, it even complains on symbols which are expected to be provided/imported by wasm-ld itself. (eg. __heap_base) i saw it while buliding wasi-libc: WebAssembly/wasi-libc#526 a smaller recipe to reproduce: https://github.com/yamt/garbage/tree/master/wasm/ld-shared with:
spacetanuki% ./test.sh
|
I have fix for the linker-generated symbols here: #128223 For __cpp_exception and __c_longjmp I think the idea is that they get defined some shared object such as libc.so or by the embedder. In emscripten the embedder provides them: https://github.com/emscripten-core/emscripten/blob/f7f639510c9f33d0aedf08a176d2f88b22259544/src/lib/libcore.js#L2201-L2207 |
… building shared libraries Fixes: llvm#103592
after 22b7b84,
wasm-ld complains on undefined symbols when building -shared/-pie. it's nice.
however, it even complains on symbols which are expected to be provided/imported by wasm-ld itself. (eg. __heap_base)
i consider it a bug.
i saw it while buliding wasi-libc: WebAssembly/wasi-libc#526
a smaller recipe to reproduce: https://github.com/yamt/garbage/tree/master/wasm/ld-shared
with:
spacetanuki% ./test.sh
The text was updated successfully, but these errors were encountered: