From 1f7d798a3a513ff35895080fe12f00b642876991 Mon Sep 17 00:00:00 2001 From: Sam Clegg Date: Wed, 15 May 2019 09:54:54 -0700 Subject: [PATCH] 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. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e456d09..8bb1135 100644 --- a/Makefile +++ b/Makefile @@ -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