Skip to content

Commit a686762

Browse files
committed
Add path to folder with ldscripts to LIBPATH for both SDKs // Resolve #199
1 parent 40c6e34 commit a686762

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

builder/frameworks/esp8266-nonos-sdk.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,8 @@
9191
],
9292

9393
LIBPATH=[
94-
join(FRAMEWORK_DIR, "lib")
94+
join(FRAMEWORK_DIR, "lib"),
95+
join(FRAMEWORK_DIR, "ld")
9596
],
9697

9798
LIBS=[

builder/frameworks/esp8266-rtos-sdk.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,8 @@
9292
],
9393

9494
LIBPATH=[
95-
join(FRAMEWORK_DIR, "lib")
95+
join(FRAMEWORK_DIR, "lib"),
96+
join(FRAMEWORK_DIR, "ld")
9697
],
9798

9899
LIBS=[

0 commit comments

Comments
 (0)