1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-04-19 23:22:16 +03:00

emulation on host: allow parallel compilation units (#8574)

-j option wasn't passed to recursive 'make' calls
This commit is contained in:
david gauchard 2022-05-17 17:35:41 +02:00 committed by GitHub
parent 48b60f4651
commit 8f71d2c042
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -371,7 +371,7 @@ else
LIBSSL = $(LIBSSLFILE) LIBSSL = $(LIBSSLFILE)
endif endif
ssl: # download source and build BearSSL ssl: # download source and build BearSSL
cd ../../tools/sdk/ssl && make native$(N32) cd ../../tools/sdk/ssl && $(MAKE) native$(N32)
ULIBPATHS = $(shell echo $(ULIBDIRS) | sed 's,:, ,g') ULIBPATHS = $(shell echo $(ULIBDIRS) | sed 's,:, ,g')
USERLIBDIRS = $(shell test -z "$(ULIBPATHS)" || for d in $(ULIBPATHS); do for dd in $$d $$d/src $$d/src/libmad; do test -d $$dd && { echo -I$$dd; echo "userlib: using directory '$$dd'" 1>&2; } done; done) USERLIBDIRS = $(shell test -z "$(ULIBPATHS)" || for d in $(ULIBPATHS); do for dd in $$d $$d/src $$d/src/libmad; do test -d $$dd && { echo -I$$dd; echo "userlib: using directory '$$dd'" 1>&2; } done; done)
@ -391,7 +391,7 @@ $(BINDIR)/fullcore.a: $(FULLCORE_OBJECTS_ISOLATED)
ifeq ($(INO),) ifeq ($(INO),)
%: %:
make INO=$@.ino $(BINDIR)/$(abspath $@) $(MAKE) INO=$@.ino $(BINDIR)/$(abspath $@)
else else