Adafruit_ST7735\Adafruit_ST7735.cpp.o: In function `Adafruit_GFX':
\arduino-1.0.3-teensy3\libraries\Adafruit_GFX/Adafruit_GFX.h:28: undefined reference to `vtable for Adafruit_GFX'
collect2: ld returned 1 exit status
I have been trying to figure out the problem. From my limited experience this error usually happens when a function/method was declared as virtual and wasn't implemented. I see the new print.h is a bit different than the original. It seems the only virtual functions are the write functions, but they where also virtual in the original print.h. I tried removing the #if Arduino >= 100 in Adafruit_GFX, but that also didn't do much. I tried copying the original function/method signatures from print.h into the new one and try to figure out what changed. I just caused a big mess there.
In short, I have no clue
Easiest way to reproduce this would be to try and compile their "graphictest" example. I think the problem is in Adafruit_ST7735 maybe not implementing something, because when I don't construct Adafruit_ST7735 I don't get a compiler failure
\arduino-1.0.3-teensy3\libraries\Adafruit_GFX/Adafruit_GFX.h:28: undefined reference to `vtable for Adafruit_GFX'
collect2: ld returned 1 exit status
I have been trying to figure out the problem. From my limited experience this error usually happens when a function/method was declared as virtual and wasn't implemented. I see the new print.h is a bit different than the original. It seems the only virtual functions are the write functions, but they where also virtual in the original print.h. I tried removing the #if Arduino >= 100 in Adafruit_GFX, but that also didn't do much. I tried copying the original function/method signatures from print.h into the new one and try to figure out what changed. I just caused a big mess there.
In short, I have no clue
Easiest way to reproduce this would be to try and compile their "graphictest" example. I think the problem is in Adafruit_ST7735 maybe not implementing something, because when I don't construct Adafruit_ST7735 I don't get a compiler failure