Browse Source

Don't create dummy libs for libc++/libc++abi (#68)

My understanding is that these dummy libs represent libraries who's
contents, under musl, live in libc itself rather than being split out
into separate libs.

libc++/libc++abi are not provided my musl so doesn't make sense to
pretend that we provide them.
pull/50/head
Sam Clegg 6 years ago
committed by GitHub
parent
commit
1f7d798a3a
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      Makefile

2
Makefile

@ -422,7 +422,7 @@ finish: startup_files libc
# #
# Create empty placeholder libraries. # Create empty placeholder libraries.
# #
for name in m rt pthread crypt util xnet resolv dl c++ c++abi; do \ for name in m rt pthread crypt util xnet resolv dl; do \
$(WASM_AR) crs "$(SYSROOT_LIB)/lib$${name}.a"; \ $(WASM_AR) crs "$(SYSROOT_LIB)/lib$${name}.a"; \
done done

Loading…
Cancel
Save