Skip to content

Commit

Permalink
Separate parameters like pre-existing -u entries
Browse files Browse the repository at this point in the history
  • Loading branch information
earlephilhower committed May 14, 2019
1 parent 81b3481 commit 7502caa
Showing 1 changed file with 6 additions and 6 deletions.
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 comments on commit 7502caa

Please sign in to comment.