You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On windows platformio seems to by default keep toolchains, ldscripts, and library's in "C:\Users<Username>.platformio . When the username contains a space, platformio fails when attempting to compile do to the path being split at the space. Here is my terminal output when I run "platformio run".
On line 252 and 253 you can see
arm-none-eabi-gcc: error: C:\Users\Firstname: No such file or directory
arm-none-eabi-gcc: error: LastName.platformio\packages\framework-libopencm3\lib\stm32\f4\stm32f405x6.ld: No such file or directory
On windows platformio seems to by default keep toolchains, ldscrips, and librarys in "C:\Users\platformio When the username contains a space, platformio fails when attempting to compile do to the path being split at the space Here is my terminal output when I run "platformio run"
On line 252 and 253 you can see
arm-none-eabi-gcc: error: C:\Users\Firstname: No such file or directory
arm-none-eabi-gcc: error: LastName\platformio\packages\framework-libopencm3\lib\stm32\f4\stm32f405x6ld: No such file or directory
On windows platformio seems to by default keep toolchains, ldscripts, and library's in "C:\Users<Username>.platformio . When the username contains a space, platformio fails when attempting to compile do to the path being split at the space. Here is my terminal output when I run "platformio run".
On line 252 and 253 you can see
arm-none-eabi-gcc: error: C:\Users\Firstname: No such file or directory
arm-none-eabi-gcc: error: LastName.platformio\packages\framework-libopencm3\lib\stm32\f4\stm32f405x6.ld: No such file or directory
Instead of the path being
it is split to become
causing it to fail building.
I am running on windows 8.1 64bit, platformio version 2.6.0, and python version 2.7.11
If anyone knows a temporary work around, possibly storing .platformio in a different directory. I would really appreciate it.
The text was updated successfully, but these errors were encountered: