rkistner / arcore

MIDI-USB Support for Arduino
Other
192 stars 33 forks source link

Error: Third-party platform.txt does not define compiler.path. Please report this to the third-party hardware maintainer. #16

Closed stefandz closed 9 years ago

stefandz commented 9 years ago

Compiling under Arduino 1.5.7 results in the "error" Third-party platform.txt does not define compiler.path. Please report this to the third-party hardware maintainer.

This does not stop code from correctly compiling or uploading, but it is correct. I believe that the problem is line 8 of platforms.txt (https://github.com/rkistner/arcore/blob/master/avr/platform.txt#L8)

it reads:

compiler.path={ide.path}/tools/avr/bin/..

but I managed to get rid of the error (and maintain correct functionality) by replacing it with:

compiler.path={runtime.ide.path}/hardware/tools/avr/bin/

(notice that it is no longer commented out).

Let me know if this works. I can do a pull request if you like.

S

rkistner commented 9 years ago

Fixed in #93749e5511f050518030d86c89bc85d526a179c1. Note that you'll have to run ./install.sh again after pulling the latest master branch.