8000 Support PIO Wl-T and Arduino -T linking properly by earlephilhower · Pull Request #6095 · esp8266/Arduino · GitHub
[go: up one dir, main page]

Skip to content

Support PIO Wl-T and Arduino -T linking properly #6095

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
May 18, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Separate parameters like pre-existing -u entries
  • Loading branch information
earlephilhower committed May 14, 2019
commit 7502caa4839547d43fbd91953c61015b5f6f8479
12 changes: 6 additions & 6 deletions tools/platformio-build.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,12 +89,12 @@ def scons_patched_match_splitext(path, suffixes=None):
"-Wl,-wrap,spi_flash_read",
"-u", "app_entry",
"-u", "_printf_float",
"-u", "_scanf_float"
"-u _DebugExceptionVector",
"-u _DoubleExceptionVector",
"-u _KernelExceptionVector",
"-u _NMIExceptionVector",
"-u _UserExceptionVector"
"-u", "_scanf_float",
"-u", "_DebugExceptionVector",
"-u", "_DoubleExceptionVector",
"-u", "_KernelExceptionVector",
"-u", "_NMIExceptionVector",
"-u", "_UserExceptionVector"
],

CPPDEFINES=[
Expand Down
0