Skip to content
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

Open
yamt opened this issue Aug 14, 2024 · 2 comments · May be fixed by #128223
Open

[WebAssembly][lld] excessive undefined symbol errors when building a shared library #103592

yamt opened this issue Aug 14, 2024 · 2 comments · May be fixed by #128223
Labels

Comments

@yamt
Copy link
Contributor

yamt commented Aug 14, 2024

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:

clang version 20.0.0git (https://github.com/llvm/llvm-project.git c31ac810910ac87531de636ea508abec6e29e8ff)

spacetanuki% ./test.sh

+ CC=/Volumes/PortableSSD/llvm/build/bin/clang
+ /Volumes/PortableSSD/llvm/build/bin/clang -o liba.so -nostdlib -shared -mexception-handling -fPIC -fvisibility=default -Wl,--no-entry a.c
wasm-ld: warning: creating shared libraries, with -shared, is not yet stable
wasm-ld: error: /var/folders/74/hw1sphgx0lv63q6pq_n5grw00000gn/T/a-7ab945.o: undefined symbol: __heap_base
wasm-ld: error: /var/folders/74/hw1sphgx0lv63q6pq_n5grw00000gn/T/a-7ab945.o: undefined symbol: __heap_end
wasm-ld: error: /var/folders/74/hw1sphgx0lv63q6pq_n5grw00000gn/T/a-7ab945.o: undefined symbol: __cpp_exception
wasm-ld: error: /var/folders/74/hw1sphgx0lv63q6pq_n5grw00000gn/T/a-7ab945.o: undefined symbol: __c_longjmp
clang: error: linker command failed with exit code 1 (use -v to see invocation)
@llvmbot
Copy link
Member

llvmbot commented Aug 14, 2024

@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 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:

clang version 20.0.0git (https://github.com/llvm/llvm-project.git c31ac810910ac87531de636ea508abec6e29e8ff)

spacetanuki% ./test.sh

+ CC=/Volumes/PortableSSD/llvm/build/bin/clang
+ /Volumes/PortableSSD/llvm/build/bin/clang -o liba.so -nostdlib -shared -mexception-handling -fPIC -fvisibility=default -Wl,--no-entry a.c
wasm-ld: warning: creating shared libraries, with -shared, is not yet stable
wasm-ld: error: /var/folders/74/hw1sphgx0lv63q6pq_n5grw00000gn/T/a-7ab945.o: undefined symbol: __heap_base
wasm-ld: error: /var/folders/74/hw1sphgx0lv63q6pq_n5grw00000gn/T/a-7ab945.o: undefined symbol: __heap_end
wasm-ld: error: /var/folders/74/hw1sphgx0lv63q6pq_n5grw00000gn/T/a-7ab945.o: undefined symbol: __cpp_exception
wasm-ld: error: /var/folders/74/hw1sphgx0lv63q6pq_n5grw00000gn/T/a-7ab945.o: undefined symbol: __c_longjmp
clang: error: linker command failed with exit code 1 (use -v to see invocation)

@sbc100
Copy link
Collaborator

sbc100 commented Feb 21, 2025

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

sbc100 added a commit to sbc100/llvm-project that referenced this issue Feb 21, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
4 participants