Environment: WinXP host, IDE v1.8.4, FeatherM0 & SSD1306 OLED target.
Problem: Compile fails with Arduino: 1.8.4 (Windows XP), Board: "Adafruit Feather M0"
---------------------------- code ---------------------------------------------------
#include <SPI.h>
#include <Wire.h>
#include <Adafruit_SSD1306.h>
#include <Adafruit_GFX.h>
Adafruit_SSD1306 display = Adafruit_SSD1306();
...
...
----------------Error message ---------------------------------------------------------------
C:\Arduino-1.8.4_AMD\portable\sketchbook\libraries\Adafruit_GFX\fontconvert.c:23:22: fatal error: ft2build.h: No such file or directory
#include <ft2build.h>
^
exit status 1
------------------------------------------------------------
I'm unable to compile anything that utilizes the GFX library. I'm aware that 'ft2build' within 'fontconvert.c' is not compiled by the Arduino IDE. OK, but how do I get around the problem within the Win environment? Thank you. -Jim