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:
parent
48b60f4651
commit
8f71d2c042
@ -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
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user