I have version 105 but the paths are just the other, so I changed
($(shell expr $(ARDUINO_VERSION) '>' 157)
for
($(shell expr $(ARDUINO_VERSION) '>' 100)
I know is a dirty work around, and that's why I reported the issue so you guys can think for a better fix! Thank you again for the great work
First of all thank you for the great work! I'm experiencing some problems setting the bare-bone project up in Ubuntu:
----------------------- 1st problem ------------------------ My avr-gcc version is 4.8.2, which in the Arduino.mk makes it try avr-gcc-ar
which produces the following error when trying to build: 'sorry - this program has been built without plugin support'
I changed $(shell expr $(CC_VERNUM) '>' 482 for $(shell expr $(CC_VERNUM) '>' 483
to make it use avr-gcc, which compiles without errors
----------------------- 2nd problem ------------------------
Same version problem for avr dude
I have version 105 but the paths are just the other, so I changed ($(shell expr $(ARDUINO_VERSION) '>' 157) for ($(shell expr $(ARDUINO_VERSION) '>' 100)
I know is a dirty work around, and that's why I reported the issue so you guys can think for a better fix! Thank you again for the great work