From e097e3e268a1f16334eb39b67320aa8cb48b5682 Mon Sep 17 00:00:00 2001 From: Pat Hickey Date: Mon, 20 Apr 2020 13:57:13 -0700 Subject: [PATCH] makefile: recursive make to wasi-libc should have -j4 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1047567bf..44ab8de25 100644 --- a/Makefile +++ b/Makefile @@ -78,7 +78,7 @@ build/llvm.BUILT: touch build/llvm.BUILT build/wasi-libc.BUILT: build/llvm.BUILT - $(MAKE) -C $(ROOT_DIR)/src/wasi-libc \ + $(MAKE) -j4 -C $(ROOT_DIR)/src/wasi-libc \ WASM_CC=$(PREFIX)/bin/clang \ SYSROOT=$(PREFIX)/share/wasi-sysroot touch build/wasi-libc.BUILT