From d762fd6046b27a56e8491c3146783db823125fe9 Mon Sep 17 00:00:00 2001 From: Jesse Vincent Date: Thu, 19 Dec 2024 14:50:19 -0800 Subject: [PATCH] Build system: allow parallel build by arduino cli --- etc/makefiles/sketch.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/makefiles/sketch.mk b/etc/makefiles/sketch.mk index 8e5378855..1cd53a533 100644 --- a/etc/makefiles/sketch.mk +++ b/etc/makefiles/sketch.mk @@ -180,7 +180,7 @@ compile: kaleidoscope-hardware-configured check-rosetta --library "${KALEIDOSCOPE_DIR}" \ --libraries "${KALEIDOSCOPE_DIR}/plugins/" \ --build-path "${BUILD_PATH}" \ - --output-dir "${OUTPUT_PATH}" \ + --output-dir "${OUTPUT_PATH}" -j 0 \ "${SKETCH_FILE_PATH}" ifeq ($(LIBONLY),) $(QUIET) cp "${BUILD_PATH}/${SKETCH_FILE_NAME}.hex" "${HEX_FILE_PATH}"