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.
This commit is contained in:
Sam Clegg 2019-05-15 09:54:54 -07:00 committed by GitHub
parent 5067fefb25
commit 1f7d798a3a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -422,7 +422,7 @@ finish: startup_files libc
#
# 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"; \
done