8000 Merge branch 'master' into vfs-spiffs · gulusili/arduino-esp32@ee77a24 · GitHub
[go: up one dir, main page]

Skip to content

Commit ee77a24

Browse files
committed
Merge branch 'master' into vfs-spiffs
2 parents 740f9f1 + 0f83dbc commit ee77a24

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

component.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARDUINO_CORE_LIBS := $(patsubst $(COMPONENT_PATH)/%,%,$(wildcard $(COMPONENT_PATH)/libraries/*/src))
1+
ARDUINO_CORE_LIBS := $(patsubst $(COMPONENT_PATH)/%,%,$(sort $(dir $(wildcard $(COMPONENT_PATH)/libraries/*/*/))))
22

33
COMPONENT_ADD_INCLUDEDIRS := cores/esp32 variants/esp32 $(ARDUINO_CORE_LIBS)
44
COMPONENT_PRIV_INCLUDEDIRS := cores/esp32/libb64

tools/platformio-build.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,8 @@
109109
"-Wl,-EL",
110110
"-T", "esp32.common.ld",
111111
"-T", "esp32.rom.ld",
112-
"-T", "esp32.peripherals.ld"
112+
"-T", "esp32.peripherals.ld",
113+
"-u", "ld_include_panic_highint_hdl"
113114
],
114115

115116
UPLOADERFLAGS=[

0 commit comments

Comments
 (0)
0