We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe80002 commit 1353fdeCopy full SHA for 1353fde
1 file changed
Makefile
@@ -390,8 +390,8 @@ finish: $(SYSROOT_INC) libc
390
mkdir -p "$(SYSROOT_SHARE)"
391
392
# Collect symbol information.
393
- # TODO: Use llvm-nm --extern-only instead of grep once
394
- # https://bugs.llvm.org/show_bug.cgi?id=40497 is fixed.
+ # TODO: Use llvm-nm --extern-only instead of grep. This is blocked on
+ # LLVM PR40497, which is fixed in 9.0, but not in 8.0.
395
$(WASM_NM) --defined-only "$(SYSROOT_LIB)"/libc.a "$(SYSROOT_LIB)"/*.o \
396
|grep ' [[:upper:]] ' |sed 's/.* [[:upper:]] //' |LC_COLLATE=C sort > "$(SYSROOT_SHARE)/defined-symbols.txt"
397
for undef_sym in $$($(WASM_NM) --undefined-only "$(SYSROOT_LIB)"/*.a "$(SYSROOT_LIB)"/*.o \
0 commit comments