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
Hi there, thanks for building platform IO, looks really cool and just the kind of thing I was looking for! Building arduino and teensy stuff without having to use a clumsy IDE! YAY!
When building my first teensy3.1 project though, I got an error message that I couldn't understand immediately (I'm not much of a C programmer, sadly):
arm-none-eabi-g++ -o .pioenvs/autogen_teensy/firmware.elf -Os -Wl,--gc-sections -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -T /Users/niels/.platformio/packages/ldscripts/mk20dx128.ld .pioenvs/autogen_teensy/src/main.o -L.pioenvs/autogen_teensy -Wl,--start-group -lc -lgcc -lm .pioenvs/autogen_teensy/libFrameworkArduino.a -Wl,--end-group
.pioenvs/autogen_teensy/libFrameworkArduino.a(mk20dx128.o): In function `ResetHandler':
/Users/niels/code/personal/teensy/test/.pioenvs/autogen_teensy/FrameworkArduino/mk20dx128.c:763: undefined reference to `__rtc_localtime'
It turns out that this issue has actually already been fixed, in 960ecca. So this is not so much a report for the platformio devs, as for other users who have the same issue I had. It was solved by adding these lines to the teensy builder script (in my case found in /usr/local/lib/python2.7/site-packages/platformio/builder/scripts/, see commit for exact place to add them):
Yep, PlatformIO is flexible and powerful instrument. However, I don't know hot to explain about it each developer 😞 Maybe, documentation isn't good. I'll work on it! 😄
Hi there, thanks for building platform IO, looks really cool and just the kind of thing I was looking for! Building arduino and teensy stuff without having to use a clumsy IDE! YAY!
When building my first teensy3.1 project though, I got an error message that I couldn't understand immediately (I'm not much of a C programmer, sadly):
It turns out that this issue has actually already been fixed, in 960ecca. So this is not so much a report for the platformio devs, as for other users who have the same issue I had. It was solved by adding these lines to the teensy builder script (in my case found in
/usr/local/lib/python2.7/site-packages/platformio/builder/scripts/
, see commit for exact place to add them):Or probably you could just update to the development version...
Cheers,
Niels
The text was updated successfully, but these errors were encountered: