Skip to content

Commit 3c7379f

Browse files
d-a-vhasenradball
authored andcommitted
emulation on host: allow parallel compilation units (esp8266#8574)
-j option wasn't passed to recursive 'make' calls
1 parent 40154db commit 3c7379f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/host/Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,7 @@ else
371371
LIBSSL = $(LIBSSLFILE)
372372
endif
373373
ssl: # download source and build BearSSL
374-
cd ../../tools/sdk/ssl && make native$(N32)
374+
cd ../../tools/sdk/ssl && $(MAKE) native$(N32)
375375

376376
ULIBPATHS = $(shell echo $(ULIBDIRS) | sed 's,:, ,g')
377377
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)
391391
ifeq ($(INO),)
392392

393393
%:
394-
make INO=$@.ino $(BINDIR)/$(abspath $@)
394+
$(MAKE) INO=$@.ino $(BINDIR)/$(abspath $@)
395395

396396
else
397397

0 commit comments

Comments
 (0)