chipKIT32 / chipKIT-core

Downloadable chipKIT core for use with Arduino 1.6 - 1.8+ IDE, PlatformIO, and UECIDE
http://chipkit.net/
Apache License 2.0
59 stars 53 forks source link

Fixed "index out of range" arduino builder error #356

Closed majenkotech closed 7 years ago

majenkotech commented 7 years ago

This is all because of the -MMD not being stripped from the C++ flags (only the C flags). The inclusion of the C flags in the C++ flags caused -MMD to be included, and it didn't want to be (it tried to make /dev/null.d when preprocessing).

More can be read here: https://github.com/arduino/arduino-builder/issues/230