8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45972fa commit 18d0e6dCopy full SHA for 18d0e6d
ports/esp32/Makefile
@@ -34,8 +34,10 @@ ifdef FROZEN_MANIFEST
34
IDFPY_FLAGS += -D MICROPY_FROZEN_MANIFEST=$(FROZEN_MANIFEST)
35
endif
36
37
+HELP_BUILD_ERROR ?= "See \033[1;31mhttps://github.com/micropython/micropython/wiki/Build-Troubleshooting\033[0m"
38
+
39
all:
- idf.py $(IDFPY_FLAGS) build
40
+ idf.py $(IDFPY_FLAGS) build || (echo -e $(HELP_BUILD_ERROR); false)
41
@$(PYTHON) makeimg.py \
42
$(BUILD)/sdkconfig \
43
$(BUILD)/bootloader/bootloader.bin \
0 commit comments