Teensyduino 1.48 Beta #1

Status
Not open for further replies.
No, it was running on external power supply and the mouse pointer in the top left corner to prevent the power saver to kick in. I know how to do a software test setup.

That's cool, I don't. I should have added something about me being newebish...
 
Erratic Serialmon Output

@Paul @mjs513 @defragster

I don't know if this is relevant but when I hover the mouse pointer outside of the Arduino IDE or serial monitor the output of the serial monitor slows down and is erratic.
If I hover the mouse pointer over the Arduino IDE window or serial monitor window the output smooths out and is fairly steady.

Here is the modified HelloWorld.pde sketch I am using with T36:
Code:
/* Serial Monitor Example, Teensyduino Tutorial #3
   http://www.pjrc.com/teensy/tutorial3.html

   After uploading this to your board, use Serial Monitor
   to view the message.  When Serial is selected from the
   Tools > USB Type menu, the correct serial port must be
   selected from the Tools > Serial Port AFTER Teensy is
   running this code.  Teensy only becomes a serial device
   while this code is running!  For non-Serial types,
   the Serial port is emulated, so no port needs to be
   selected.

   This example code is in the public domain.
*/

uint32_t i=0;

void setup()   {                
  Serial.begin(115200);
  while(!Serial);
}

void loop()                     
{
  Serial.print(i++, DEC);
  Serial.println(" - Hello World");
  delay(1);
}

Here is the modified HelloWorld.pde sketch I am using with T4:
Code:
/* Serial Monitor Example, Teensyduino Tutorial #3
   http://www.pjrc.com/teensy/tutorial3.html

   After uploading this to your board, use Serial Monitor
   to view the message.  When Serial is selected from the
   Tools > USB Type menu, the correct serial port must be
   selected from the Tools > Serial Port AFTER Teensy is
   running this code.  Teensy only becomes a serial device
   while this code is running!  For non-Serial types,
   the Serial port is emulated, so no port needs to be
   selected.

   This example code is in the public domain.
*/

uint32_t i=0;

void setup()   {                
  Serial.begin(115200);
  while(!Serial);
}

void loop()                     
{
  Serial.print(i++, DEC);
  Serial.println(" - Hello World");
  delay(2);
}

This is with Arduino 1.8.9 TD 1.48 B1 running under Ubuntu 18.04 64Bit and Mate 1.20.1.
The effects change with changing the delay speeds. It seems worse with Arduino 1.8.10.
I can't test this on Windows or a MAC.
This is just a curious observation:)
 
None of my projects is made to flood the Serial monitor with so much data and I’d guess that most other real world projects do neither. To me, it looks rather like an academic thing...
I don't agree. Sometimes you have a "hard" problem that requires printing a lot of debug info. It would be very annoying if the debugging sometimes "broke" making finding the real problem even more difficult. Such bugs should be squashed whenever possible.
 
@
I don't know if this is relevant but when I hover the mouse pointer outside of the Arduino IDE or serial monitor the output of the serial monitor slows down and is erratic.
If I hover the mouse pointer over the Arduino IDE window or serial monitor window the output smooths out and is fairly steady.

This is a Linux thing. Or maybe just Ubuntu? I'm not sure, but I can tell you I also see it on Ubuntu 18.04, I didn't notice on older Ubuntu, and it does not happen on Windows and Macintosh.

On at least Ubuntu 18 this seems to be a "feature" that windows without keyboard focus aren't updated as often. Maybe it's meant to save power on laptops? I did some testing on this quite a while back. Teensy is definitely still sending at the same speed and Arduino is still doing everything the same way. Something on the Linux (maybe X11 or its window manager) is changing the updates.
 
@Paul

I was not trying to complain:) As far as I am concerned it is not a problem at least for me. I was making an observation hoping that it would contribute. Then I read your blog. Very humbling to see the effort that you put into Arduino and all of the the components we use as I admire the talent of all the the members of this forum and there contributions. I primarly use the Serial Monitor to find my programming mess up's NOT speedy data printing. So for me it does not matter.
Thanks Paul.
 
I hadn't read the BLOG - @wwatson - thanks for hinting to look for this :: pjrc.com/improving-arduino-serial-monitor-performance/

And also that is an interesting observation - Indeed I haven't seen such behavior from Windows from SerMon. I know one thing I wrote when the mouse wasn't in the same place between messages the code backed off, and the same codebase another disk tool author made wiggling the mouse in the window have it run more intensely.
 
Ok. Had to find an USB hub first... Restarted everything then, with the T4 connected through a passive USB-Hub and an USB-C adapter to the MacBook. Waited for the serial monitor stalling. Then unpacked and connected a brand new T3.2. This made the serial monitor run again. Observations continue...

But I must say that I personally do not see that serial monitor stalling as an important issue. None of my projects is made to flood the Serial monitor with so much data and I’d guess that most other real world projects do neither. To me, it looks rather like an academic thing...

For many people it is, but even then, the program should still work without crashing. I, however, could easily generate 50MB/s of serial data to a PC, though I'm not able to get that on the USBHS implementation. I recall that I'm seeing around 7MB/s right now on T4. I use a Python GUI to log it all at that speed using multiple threads (uses like 2% CPU). But from time to time I need to use the Arduino monitor to quickly debug and I hate that it will quickly crash the thing if I turn on a data stream. Fixing it will be very appreciated.
 
Such bugs should be squashed whenever possible.

The serial monitor stopping after several minutes on Macintosh definitely is a bug. I will eventually fix it. The important question right now is whether to hold off releasing 1.48. My feeling is even with this unfortunate bug, overall the serial monitor speed & stability is a huge improvement compared to 1.47 where Java quickly runs out of memory.



I, however, could easily generate 50MB/s of serial data to a PC, though I'm not able to get that on the USBHS implementation. I recall that I'm seeing around 7MB/s right now on T4.

Yup, that sounds about right. So far I've not put a lot of optimization into the Teensy side, since the serial monitor was causing Java to run out of memory at even this speed.

I'm just 1 guy. I have to prioritize my engineering time. My decision to improve the Arduino side first doesn't mean we're forever going to be stuck with 15% of the theoretical maximum speed. I can and I will optimize it to be able to run much faster.

Whether it will ever get to 50 Mbyte/sec is unknown. That pretty close to the theoretical maximum bulk endpoint maximum with 480 Mbit/sec USB.

For comparison, with Teensy 3.2 we get about 1.0 to 1.1 Mbyte/sec. The theoretical max is 1.2 Mbyte/sec.



I use a Python GUI to log it all at that speed using multiple threads (uses like 2% CPU).

Any chance you might share this Python GUI (or a stripped down version) for the sake of performance testing?


But from time to time I need to use the Arduino monitor to quickly debug and I hate that it will quickly crash the thing if I turn on a data stream. Fixing it will be very appreciated.

Well yeah, that's what this new beta version is about, improving the serial monitor so Java does run out of memory and crash. And also Arduino 1.8.10 support.
 
I selected the 'Show Timestamp' checkbox and nothing happened.

Yup, I broke the show timestamp feature.


just a guess: the missing timestamp is part of recent speed rework work in progress?

Yes. The speedup work required replacing the normal serial monitor code structure with something that avoids making several copies of the high speed data passing between abstraction layers. One of those layers implemented the timestamp.

To get the timestamps working again, I basically have to reimplement it all over again inside Teensy's optimized version...
 
Paul - reading the SerMon blogpost - good notes - lots of good work - glad I could help that progress.

One more thing from reading that: I don't suppose it would be trivial to create and make active a second background "10,000,000 character buffer, and a maximum of 1,000,000 lines" when the user sets Autoscroll to off and that free bufferspace fills?

Having the buffer Freeze for review copy/paste is awesome - especially when the incoming spew is so fast but important enough to stop and look.

This could somewhat but not perfectly emulate current SerMon behavior when that buffer over flows - and would result in total discard of the 'frozen' data when the 'Autoscroll' resumed if the FIFO buffer filled - and temporarily could cost 10 MB - but might make someone's day.
 
I'm just 1 guy. I have to prioritize my engineering time. My decision to improve the Arduino side first doesn't mean we're forever going to be stuck with 15% of the theoretical maximum speed. I can and I will optimize it to be able to run much faster.

Whether it will ever get to 50 Mbyte/sec is unknown. That pretty close to the theoretical maximum bulk endpoint maximum with 480 Mbit/sec USB.
Understood. I have no complaints as it is right now. Certainly if I needed a fixed high-bandwidth solution an FPGA would be a more logical choice, with more headaches for me. I really appreciate the several-x increase in Teensy-to-PC throughput from 3.6 to 4.0.
For comparison, with Teensy 3.2 we get about 1.0 to 1.1 Mbyte/sec. The theoretical max is 1.2 Mbyte/sec.
That pretty much matches my experience as well.
Any chance you might share this Python GUI (or a stripped down version) for the sake of performance testing?
Sure. It's just a little Python3 with QT5. I probably can't share it publicly today, though. It's not proprietary by any means, but the work was done while working for the US Govt, which means I need to clear it for release (but it also means the taxpayers are entitled to it). Can I share it with you (and select others) directly?
 
The serial monitor stopping after several minutes on Macintosh definitely is a bug. I will eventually fix it. The important question right now is whether to hold off releasing 1.48. My feeling is even with this unfortunate bug, overall the serial monitor speed & stability is a huge improvement compared to 1.47 where Java quickly runs out of memory.
Aside from the monitor speed stuff, on Mac 10.14.6 I've had several issues with programs compiling and or running differently between Arduino 1.8.10-TD1.48B1 and 1.8.9-TD1.47, on both T4 and T3.6. I got tired of trying to figure it out and just assumed you and others would move on to 1.48beta 2 so I went back to 1.8.9 & TD1.47. If your really looking to release 1.48 I can try to post something. My problems did seem to be more Arduino 1.8.10 or library related.
 
Aside from the monitor speed stuff, on Mac 10.14.6 I've had several issues with programs compiling and or running differently between Arduino 1.8.10-TD1.48B1 and 1.8.9-TD1.47, on both T4 and T3.6. I got tired of trying to figure it out and just assumed you and others would move on to 1.48beta 2 so I went back to 1.8.9 & TD1.47. If your really looking to release 1.48 I can try to post something. My problems did seem to be more Arduino 1.8.10 or library related.

Anything you can show as a problem is important.

The update to 1.48 was presented in short order to support IDE 1.8.10. Some few changes expected to be good had been introduced since the release of 1.47. Paul spent free time not getting boards built/tested/packed/shipped trying to assure the SerMon would not choke and crash the IDE given 7X higher speed Teensy USB output.

So any indications of bad or broken behavior can only be fixed given details and perhaps repro steps. What things are involved in not working the same? Even knowing if it is with a particular device or library could identify changes from the 1.47 release.
 
Here's an example of an issue. In the screenshot you can see I have selected T4 and yet it has used Arduino libraries instead of Teensy. This results in T4 crash. This code works fine with 1.8.9-TD1.47
Screen Shot 2019-09-20 at 9.09.54 AM.jpg

the code:
Code:
#define MYVERSION_STUFF "myT4WavDisplay, 2019/9/14"
/* Simple WAV file player example from WaveFilePlayer
 * mdr20190902  After installing 100 ohm resistor from T4 pin13 to audio board pin14 this will play but only after having played
 * 'myT4_DemoSauce' first, and then load and run.  Won't work from just plugging in. fixed, just have to add tft.begin(); to
 * make it work.  Don't need all the IOMUX stuff.
 * */

#include <SPI.h>
#include <SD.h>
#include "ILI9341_t3.h"
#include "font_Arial.h"
//#include <Wire.h>
#include <SerialFlash.h>
#include <Audio.h>

// Use these with the Teensy Audio Shield and Teesny 4.0  mdr20190823
#define SDCARD_CS_PIN    10
#define SDCARD_MOSI_PIN  11
#define SDCARD_SCK_PIN   13

// TFT pins
const uint8_t TFT_DC = 5;
const uint8_t TFT_CS = 9;

ILI9341_t3 tft = ILI9341_t3(TFT_CS, TFT_DC);
AudioPlaySdWav           playWav1;
// Use one of these 3 output types: Digital I2S, Digital S/PDIF, or Analog DAC
AudioOutputI2S           audioOutput;
//AudioOutputSPDIF       audioOutput;
//AudioOutputAnalog      audioOutput;
AudioConnection          patchCord1(playWav1, 0, audioOutput, 0);
AudioConnection          patchCord2(playWav1, 1, audioOutput, 1);
AudioControlSGTL5000     sgtl5000_1;

void setup() {
  tft.begin();   //this seems to make the audio work
  tft.setRotation( 1 );
  tft.fillScreen(ILI9341_BLACK);

  // Serial
  if( true ) {
    Serial.begin( 9600 );
    tft.setTextColor(ILI9341_YELLOW);
    tft.setFont(Arial_18);
    tft.setCursor(10, 42);
    tft.print(MYVERSION_STUFF);
    tft.setTextColor(ILI9341_GREEN);
    tft.setFont(Arial_18);
    while (!Serial && millis() < 5000) { // wait for Arduino Serial Monitor
      tft.fillRect(118, 182, 42, 18, ILI9341_BLACK);
      tft.setCursor(118, 182);
      tft.print((5000.0 - (float)millis()) / 1000.0, 1);
      tft.print(" sec");
      delay(100);
    }
    Serial.println(MYVERSION_STUFF);
  }
//Serial.begin(9600);

  // Audio connections require memory to work.  For more
  // detailed information, see the MemoryAndCpuUsage example
  AudioMemory(8);

  // Comment these out if not using the audio adaptor board.
  // This may wait forever if the SDA & SCL pins lack
  // pullup resistors
  sgtl5000_1.enable();
  sgtl5000_1.volume(0.4);

  //mdr20190828
  //from: https://forum.pjrc.com/threads/57167-Teensy-4-0-I2S-Support?p=213128&viewfull=1#post213128
  // defaults were all 0x10B0 which is keeper, Medium speed (100 Mhz), drive strength = R0/6 = 150/6 = 25 ohms (the second strongest drive strength available) // My changes were:
  //page 658 if nanual
  //*
  IOMUXC_SW_PAD_CTL_PAD_GPIO_AD_B1_00 = 0x1F808; // SCL, pullup at 22K, open drain enable, low speed, drive strength at R0 (150 ohm)
  IOMUXC_SW_PAD_CTL_PAD_GPIO_AD_B1_01 = 0x1F808; // SDA
  IOMUXC_SW_PAD_CTL_PAD_GPIO_AD_B1_09 = 0x8; // MCLK, low speed, drive strength at R0 (150 ohm).
  IOMUXC_SW_PAD_CTL_PAD_GPIO_AD_B1_10 = 0x8; // BCLK
  IOMUXC_SW_PAD_CTL_PAD_GPIO_AD_B1_11 = 0x8; // LRCLK
  IOMUXC_SW_PAD_CTL_PAD_GPIO_B1_01 = 0x8; // OUT1A
  IOMUXC_SW_PAD_CTL_PAD_GPIO_B0_02 = 0x8; // MOSI  mdr20190828 helped get to SDTEST1.WAV & SDTEST2.WAV test
  IOMUXC_SW_PAD_CTL_PAD_GPIO_B0_03 = 0x8; // SCK  mdr20190828 reqd in myT4_SdCardTest
  IOMUXC_SW_PAD_CTL_PAD_GPIO_B0_01 = 0x10000;  //MISO  mdr20190831 hysterisus+default for WavFilePlayer
  //*/
  SPI.setMOSI(SDCARD_MOSI_PIN);
  SPI.setSCK(SDCARD_SCK_PIN);

  if (!(SD.begin(SDCARD_CS_PIN))) {
    // stop here, but print a message repetitively
    while (1) {
      Serial.println("Unable to access the SD card");
      delay(500);
    }
  }
}

void playFile(const char *filename)
{
  Serial.print("Playing file: ");
  Serial.print(filename);
  Serial.print(" ");

  //*  this stuff was to find file length to count down time, better way below
  String s = String(filename);
  String s2 = String('/' + s);
  char buf[20];
  s2.toCharArray(buf, s2.length()+1);

  File thefile = SD.open(buf);
  long crap=thefile.size();
  thefile.close();

  Serial.print(" size=");
  Serial.print(crap);
  Serial.print(" ");
//*/
  tft.fillScreen(ILI9341_BLACK);
  tft.setTextColor(ILI9341_YELLOW);
  tft.setFont(Arial_24);
  tft.setCursor(10, 80);
  tft.print(filename);

  // Start playing the file.  This sketch continues to
  // run while the file plays.
  playWav1.play(filename);

  // A brief delay for the library read WAV info
  delay(5);

  long thelength=playWav1.lengthMillis();
  Serial.print((float)(thelength/1000.0), 1);
  Serial.println(" seconds");

  tft.setTextColor(ILI9341_GREEN);
  tft.setFont(Arial_18);
  // Simply wait for the file to finish playing.
  while (playWav1.isPlaying()) {
    
    tft.fillRect(118, 182, 62, 18, ILI9341_BLACK);
    tft.setCursor(118, 182);
    tft.print((float)(thelength-playWav1.positionMillis()) / 1000.0, 1);
    tft.print(" sec");
    delay(100);
// uncomment these lines if you audio shield
    // has the optional volume pot soldered
    //float vol = analogRead(15);
    //vol = vol / 1024;
    // sgtl5000_1.volume(vol);
  }
}

void loop() {
  playFile("SDTEST1.WAV");  // filenames are always uppercase 8.3 format
  delay(500);
  playFile("SDTEST2.WAV");
  delay(500);
  playFile("SDTEST3.WAV");
  delay(500);
  playFile("SDTEST4.WAV");
  delay(1500);
}

/* output:
myT4WavDisplay, 2019/9/2
11:08:05.035 -> Playing file: SDTEST1.WAV size=16787550  95.2
11:09:40.847 -> Playing file: SDTEST2.WAV size=16425698  93.2
11:11:14.623 -> Playing file: SDTEST3.WAV size=13617358  77.2
11:12:32.401 -> Playing file: SDTEST4.WAV size=17173152  97.4
11:14:11.342 -> Playing file: SDTEST1.WAV size=16787550  95.2
11:15:47.128 -> Playing file: SDTEST2.WAV size=16425698 
*....
*
myT4WavDisplay, 2019/9/14
Playing file: SDTEST1.WAV 95.2 seconds
Playing file: SDTEST2.WAV 93.1 seconds
Playing file: SDTEST3.WAV 77.2 seconds
Playing file: SDTEST4.WAV 97.4 seconds

 */
 
Last edited:
@bicycleguy

I just checked my install of IDE 1.8.10 and TD1.48B1. Teensy libraries do show for me when I have the T4 selected. Know this is an obvious one but you did install the Teensy Libraries when you installed 1.8.10/1.48B1. I am on a windows10x64 machine
 
here's the console output from blink.ini which works:
Code:
/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/arduino-builder -dump-prefs -logger=machine -hardware /Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware -hardware /Users/michaelrunyan/Library/Arduino15/packages -tools /Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/tools-builder -tools /Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/tools/avr -tools /Users/michaelrunyan/Library/Arduino15/packages -built-in-libraries /Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/libraries -libraries /Users/michaelrunyan/Documents/Arduino/libraries -fqbn=teensy:avr:teensy40:usb=serial,opt=o2std,keys=en-us -ide-version=10810 -build-path /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_335684 -warnings=default -build-cache /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_cache_770757 -verbose /Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/examples/01.Basics/Blink/Blink.ino
/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/arduino-builder -compile -logger=machine -hardware /Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware -hardware /Users/michaelrunyan/Library/Arduino15/packages -tools /Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/tools-builder -tools /Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/tools/avr -tools /Users/michaelrunyan/Library/Arduino15/packages -built-in-libraries /Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/libraries -libraries /Users/michaelrunyan/Documents/Arduino/libraries -fqbn=teensy:avr:teensy40:usb=serial,opt=o2std,keys=en-us -ide-version=10810 -build-path /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_335684 -warnings=default -build-cache /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_cache_770757 -verbose /Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/examples/01.Basics/Blink/Blink.ino
Using board 'teensy40' from platform in folder: /Applications/Arduino
Using core 'teensy4' from platform in folder: /Applications/Arduino
Detecting libraries used...
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_335684/sketch/Blink.ino.cpp -o /dev/null
Generating function prototypes...
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_335684/sketch/Blink.ino.cpp -o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_335684/preproc/ctags_target_for_gcc_minus_e.cpp
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/tools-builder/ctags/5.8-arduino11/ctags" -u --language-force=c++ -f - --c++-kinds=svpf --fields=KSTtzns --line-directives /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_335684/preproc/ctags_target_for_gcc_minus_e.cpp
Compiling sketch...
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/precompile_helper" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_335684 "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -x c++-header -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_335684/pch/Arduino.h -o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_335684/pch/Arduino.h.gch
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_335684/pch/Arduino.h.gch
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_335684/pch "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_335684/sketch/Blink.ino.cpp -o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_335684/sketch/Blink.ino.cpp.o
Compiling libraries...
Compiling core...
Using precompiled core: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_cache_770757/core/core_teensy_avr_teensy40_usb_serial,opt_o2std,keys_en-us_43d7487000cdf9b723b9ed9d5bc4d576.a
Linking everything together...
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc" -O2 -Wl,--gc-sections,--relax "-T/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4/imxrt1062.ld" -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_335684/Blink.ino.elf /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_335684/sketch/Blink.ino.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_335684/../arduino_cache_770757/core/core_teensy_avr_teensy40_usb_serial,opt_o2std,keys_en-us_43d7487000cdf9b723b9ed9d5bc4d576.a -L/var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_335684 -larm_cortexM7lfsp_math -lm -lstdc++
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-objcopy" -O ihex -j .eeprom --set-section-flags=.eeprom=alloc,load --no-change-warnings --change-section-lma .eeprom=0 /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_335684/Blink.ino.elf /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_335684/Blink.ino.eep
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-objcopy" -O ihex -R .eeprom /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_335684/Blink.ino.elf /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_335684/Blink.ino.hex
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/stdout_redirect" /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_335684/Blink.ino.lst "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-objdump" -d -S -C /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_335684/Blink.ino.elf
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/stdout_redirect" /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_335684/Blink.ino.sym "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-objdump" -t -C /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_335684/Blink.ino.elf
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/teensy_post_compile" -file=Blink.ino -path=/var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_335684 "-tools=/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/" -board=TEENSY40
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-size" -A /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_335684/Blink.ino.elf
Sketch uses 12160 bytes (0%) of program storage space. Maximum is 2031616 bytes.
Global variables use 18528 bytes (1%) of dynamic memory, leaving 1030048 bytes for local variables. Maximum is 1048576 bytes.
 
and here's the output from above in same setup which crashes the T4:
Code:
/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/arduino-builder -dump-prefs -logger=machine -hardware /Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware -hardware /Users/michaelrunyan/Library/Arduino15/packages -tools /Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/tools-builder -tools /Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/tools/avr -tools /Users/michaelrunyan/Library/Arduino15/packages -built-in-libraries /Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/libraries -libraries /Users/michaelrunyan/Documents/Arduino/libraries -fqbn=teensy:avr:teensy40:usb=serial,opt=o2std,keys=en-us -ide-version=10810 -build-path /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491 -warnings=default -build-cache /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_cache_770757 -verbose /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_modified_sketch_927305/myT4WavDisplay.ino
/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/arduino-builder -compile -logger=machine -hardware /Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware -hardware /Users/michaelrunyan/Library/Arduino15/packages -tools /Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/tools-builder -tools /Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/tools/avr -tools /Users/michaelrunyan/Library/Arduino15/packages -built-in-libraries /Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/libraries -libraries /Users/michaelrunyan/Documents/Arduino/libraries -fqbn=teensy:avr:teensy40:usb=serial,opt=o2std,keys=en-us -ide-version=10810 -build-path /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491 -warnings=default -build-cache /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_cache_770757 -verbose /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_modified_sketch_927305/myT4WavDisplay.ino
Using board 'teensy40' from platform in folder: /Applications/Arduino
Using core 'teensy4' from platform in folder: /Applications/Arduino
Detecting libraries used...
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/sketch/myT4WavDisplay.ino.cpp -o /dev/null
Alternatives for SPI.h: [SPI@1.0]
ResolveLibrary(SPI.h)
  -> candidates: [SPI@1.0]
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/sketch/myT4WavDisplay.ino.cpp -o /dev/null
Alternatives for SD.h: [SD@1.2.3 SD@1.2.2]
ResolveLibrary(SD.h)
  -> candidates: [SD@1.2.3 SD@1.2.2]
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/sketch/myT4WavDisplay.ino.cpp -o /dev/null
Alternatives for ILI9341_t3.h: [ILI9341_t3@1.0]
ResolveLibrary(ILI9341_t3.h)
  -> candidates: [ILI9341_t3@1.0]
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/sketch/myT4WavDisplay.ino.cpp -o /dev/null
Alternatives for SerialFlash.h: [SerialFlash@0.5]
ResolveLibrary(SerialFlash.h)
  -> candidates: [SerialFlash@0.5]
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/sketch/myT4WavDisplay.ino.cpp -o /dev/null
Alternatives for Audio.h: [Audio@1.3]
ResolveLibrary(Audio.h)
  -> candidates: [Audio@1.3]
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/sketch/myT4WavDisplay.ino.cpp -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI/SPI.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD/File.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD/SD.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD/cache_t3.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD/card_t3.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD/dir_t3.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD/fat_t3.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD/file_t3.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD/init_t3.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD/utility/NXP_SDHC.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD/utility/Sd2Card.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD/utility/SdFile.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD/utility/SdVolume.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3/ILI9341_t3.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3/font_Arial.c" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3/font_ArialBold.c" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3/glcdfont.c" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash/SerialFlashChip.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash/SerialFlashDirectory.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/analyze_fft1024.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/analyze_fft256.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/analyze_notefreq.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/analyze_peak.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/analyze_print.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/analyze_rms.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/analyze_tonedetect.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/control_ak4558.cpp" -o /dev/null
Alternatives for Wire.h: [Wire@1.0]
ResolveLibrary(Wire.h)
  -> candidates: [Wire@1.0]
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/control_ak4558.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/control_cs42448.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/control_cs4272.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/control_sgtl5000.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/control_tlv320aic3206.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/control_wm8731.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/data_spdif.c" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/data_ulaw.c" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/data_waveforms.c" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/data_windows.c" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/effect_bitcrusher.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/effect_chorus.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/effect_combine.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/effect_delay.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/effect_delay_ext.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/effect_envelope.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/effect_fade.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/effect_flange.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/effect_freeverb.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/effect_granular.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/effect_midside.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/effect_multiply.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/effect_reverb.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/effect_waveshaper.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/filter_biquad.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/filter_fir.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/filter_variable.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/input_adc.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/input_adcs.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/input_i2s.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/input_i2s2.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/input_i2s_quad.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/input_pdm.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/input_tdm.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/input_tdm2.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/memcpy_audio.S" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/mixer.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/output_adat.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/output_dac.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/output_dacs.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/output_i2s.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/output_i2s2.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/output_i2s_quad.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/output_mqs.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/output_pt8211.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/output_pt8211_2.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/output_pwm.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/output_spdif.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/output_spdif2.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/output_spdif3.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/output_tdm.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/output_tdm2.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/play_memory.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/play_queue.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/play_sd_raw.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/play_sd_wav.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/play_serialflash_raw.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/record_queue.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/spi_interrupt.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/synth_dc.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/synth_karplusstrong.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/synth_pinknoise.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/synth_pwm.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/synth_simple_drum.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/synth_sine.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/synth_tonesweep.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/synth_waveform.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/synth_wavetable.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/synth_whitenoise.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility/imxrt_hw.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility/sqrt_integer.c" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire/Wire.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire/WireIMXRT.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire/WireKinetis.cpp" -o /dev/null
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire/utility" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire/utility/twi.c" -o /dev/null
Generating function prototypes...
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/sketch/myT4WavDisplay.ino.cpp -o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/preproc/ctags_target_for_gcc_minus_e.cpp
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/tools-builder/ctags/5.8-arduino11/ctags" -u --language-force=c++ -f - --c++-kinds=svpf --fields=KSTtzns --line-directives /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/preproc/ctags_target_for_gcc_minus_e.cpp
Compiling sketch...
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/precompile_helper" "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491 "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -x c++-header -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/pch/Arduino.h -o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/pch/Arduino.h.gch
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/pch/Arduino.h.gch
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++" -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/pch "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SPI" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SD" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Audio" "-I/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/libraries/Wire" /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/sketch/myT4WavDisplay.ino.cpp -o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/sketch/myT4WavDisplay.ino.cpp.o
Compiling libraries...
Compiling library "SPI"
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/SPI/SPI.cpp.o
Compiling library "SD"
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/SD/card_t3.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/SD/cache_t3.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/SD/dir_t3.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/SD/fat_t3.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/SD/File.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/SD/file_t3.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/SD/SD.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/SD/init_t3.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/SD/utility/Sd2Card.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/SD/utility/NXP_SDHC.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/SD/utility/SdFile.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/SD/utility/SdVolume.cpp.o
Compiling library "ILI9341_t3"
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/ILI9341_t3/font_ArialBold.c.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/ILI9341_t3/font_Arial.c.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/ILI9341_t3/glcdfont.c.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/ILI9341_t3/ILI9341_t3.cpp.o
Compiling library "SerialFlash"
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/SerialFlash/SerialFlashChip.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/SerialFlash/SerialFlashDirectory.cpp.o
Compiling library "Audio"
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/memcpy_audio.S.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/data_spdif.c.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/data_ulaw.c.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/data_windows.c.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/data_waveforms.c.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/analyze_fft1024.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/analyze_fft256.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/analyze_notefreq.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/analyze_peak.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/analyze_rms.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/analyze_print.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/analyze_tonedetect.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/control_ak4558.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/control_cs42448.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/control_cs4272.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/control_sgtl5000.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/control_wm8731.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/effect_bitcrusher.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/effect_chorus.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/control_tlv320aic3206.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/effect_combine.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/effect_delay.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/effect_delay_ext.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/effect_envelope.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/effect_fade.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/effect_flange.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/effect_freeverb.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/effect_granular.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/effect_midside.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/effect_multiply.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/effect_waveshaper.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/effect_reverb.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/filter_biquad.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/filter_fir.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/filter_variable.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/input_adc.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/input_adcs.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/input_i2s.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/input_i2s_quad.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/input_pdm.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/input_i2s2.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/input_tdm2.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/input_tdm.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/mixer.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/output_adat.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/output_dac.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/output_dacs.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/output_i2s.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/output_i2s2.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/output_mqs.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/output_i2s_quad.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/output_pt8211.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/output_pt8211_2.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/output_pwm.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/output_spdif.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/output_spdif2.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/output_spdif3.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/output_tdm.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/output_tdm2.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/play_memory.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/play_queue.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/record_queue.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/play_serialflash_raw.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/play_sd_raw.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/play_sd_wav.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/synth_dc.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/spi_interrupt.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/synth_karplusstrong.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/synth_pinknoise.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/synth_simple_drum.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/synth_pwm.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/synth_sine.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/synth_tonesweep.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/synth_waveform.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/synth_whitenoise.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/synth_wavetable.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/utility/sqrt_integer.c.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/utility/imxrt_hw.cpp.o
Compiling library "Wire"
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Wire/WireKinetis.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Wire/Wire.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Wire/WireIMXRT.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Wire/utility/twi.c.o
Compiling core...
Using precompiled core: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_cache_770757/core/core_teensy_avr_teensy40_usb_serial,opt_o2std,keys_en-us_43d7487000cdf9b723b9ed9d5bc4d576.a
Linking everything together...
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc" -O2 -Wl,--gc-sections,--relax "-T/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/avr/cores/teensy4/imxrt1062.ld" -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/myT4WavDisplay.ino.elf /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/sketch/myT4WavDisplay.ino.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/SPI/SPI.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/SD/File.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/SD/SD.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/SD/cache_t3.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/SD/card_t3.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/SD/dir_t3.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/SD/fat_t3.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/SD/file_t3.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/SD/init_t3.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/SD/utility/NXP_SDHC.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/SD/utility/Sd2Card.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/SD/utility/SdFile.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/SD/utility/SdVolume.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/ILI9341_t3/font_Arial.c.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/ILI9341_t3/font_ArialBold.c.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/ILI9341_t3/glcdfont.c.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/ILI9341_t3/ILI9341_t3.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/SerialFlash/SerialFlashChip.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/SerialFlash/SerialFlashDirectory.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/memcpy_audio.S.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/data_spdif.c.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/data_ulaw.c.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/data_waveforms.c.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/data_windows.c.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/analyze_fft1024.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/analyze_fft256.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/analyze_notefreq.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/analyze_peak.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/analyze_print.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/analyze_rms.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/analyze_tonedetect.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/control_ak4558.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/control_cs42448.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/control_cs4272.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/control_sgtl5000.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/control_tlv320aic3206.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/control_wm8731.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/effect_bitcrusher.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/effect_chorus.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/effect_combine.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/effect_delay.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/effect_delay_ext.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/effect_envelope.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/effect_fade.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/effect_flange.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/effect_freeverb.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/effect_granular.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/effect_midside.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/effect_multiply.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/effect_reverb.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/effect_waveshaper.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/filter_biquad.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/filter_fir.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/filter_variable.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/input_adc.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/input_adcs.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/input_i2s.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/input_i2s2.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/input_i2s_quad.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/input_pdm.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/input_tdm.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/input_tdm2.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/mixer.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/output_adat.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/output_dac.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/output_dacs.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/output_i2s.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/output_i2s2.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/output_i2s_quad.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/output_mqs.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/output_pt8211.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/output_pt8211_2.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/output_pwm.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/output_spdif.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/output_spdif2.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/output_spdif3.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/output_tdm.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/output_tdm2.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/play_memory.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/play_queue.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/play_sd_raw.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/play_sd_wav.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/play_serialflash_raw.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/record_queue.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/spi_interrupt.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/synth_dc.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/synth_karplusstrong.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/synth_pinknoise.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/synth_pwm.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/synth_simple_drum.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/synth_sine.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/synth_tonesweep.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/synth_waveform.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/synth_wavetable.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/synth_whitenoise.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/utility/sqrt_integer.c.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Audio/utility/imxrt_hw.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Wire/Wire.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Wire/WireIMXRT.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Wire/WireKinetis.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/libraries/Wire/utility/twi.c.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/../arduino_cache_770757/core/core_teensy_avr_teensy40_usb_serial,opt_o2std,keys_en-us_43d7487000cdf9b723b9ed9d5bc4d576.a -L/var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491 -larm_cortexM7lfsp_math -lm -lstdc++
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-objcopy" -O ihex -j .eeprom --set-section-flags=.eeprom=alloc,load --no-change-warnings --change-section-lma .eeprom=0 /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/myT4WavDisplay.ino.elf /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/myT4WavDisplay.ino.eep
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-objcopy" -O ihex -R .eeprom /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/myT4WavDisplay.ino.elf /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/myT4WavDisplay.ino.hex
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/stdout_redirect" /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/myT4WavDisplay.ino.lst "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-objdump" -d -S -C /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/myT4WavDisplay.ino.elf
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/stdout_redirect" /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/myT4WavDisplay.ino.sym "/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-objdump" -t -C /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/myT4WavDisplay.ino.elf
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/teensy_post_compile" -file=myT4WavDisplay.ino -path=/var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491 "-tools=/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/" -board=TEENSY40
Multiple libraries were found for "SD.h"
 Used: /Applications/Arduino
 Not used: /Applications/Arduino
Multiple libraries were found for "ILI9341_t3.h"
 Used: /Applications/Arduino
Multiple libraries were found for "SerialFlash.h"
 Used: /Applications/Arduino
Multiple libraries were found for "Audio.h"
 Used: /Applications/Arduino
Multiple libraries were found for "Wire.h"
 Used: /Applications/Arduino
Multiple libraries were found for "SPI.h"
 Used: /Applications/Arduino
Using library SPI at version 1.0 in folder: /Applications/Arduino other
Using library SD at version 1.2.2 in folder: /Applications/Arduino other
Using library ILI9341_t3 at version 1.0 in folder: /Applications/Arduino other
Using library SerialFlash at version 0.5 in folder: /Applications/Arduino other
Using library Audio at version 1.3 in folder: /Applications/Arduino other
Using library Wire at version 1.0 in folder: /Applications/Arduino other
"/Applications/Arduino other versions/Arduino_1_8_10.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-size" -A /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_676491/myT4WavDisplay.ino.elf
Sketch uses 52976 bytes (2%) of program storage space. Maximum is 2031616 bytes.
Global variables use 60240 bytes (5%) of dynamic memory, leaving 988336 bytes for local variables. Maximum is 1048576 bytes.
 
@bicycleguy

I just checked my install of IDE 1.8.10 and TD1.48B1. Teensy libraries do show for me when I have the T4 selected. Know this is an obvious one but you did install the Teensy Libraries when you installed 1.8.10/1.48B1. I am on a windows10x64 machine
Yes, I installed all the libraries. However, looking at the Arduino file size its only 599MB where 1.8.9 is 785.6MB.

Did you try to compile myT4WavDisplay.ino or some other sketch?
 
Yes, I installed all the libraries. However, looking at the Arduino file size its only 599MB where 1.8.9 is 785.6MB.

Did you try to compile myT4WavDisplay.ino or some other sketch?

Something doesn't make sense - know you don't want to here this but how about reinstalling 1.8.10 and 1.48B1?

here is the results of the your sketch with that config:
Code:
F:\arduino-1.8.10\arduino-builder -dump-prefs -logger=machine -hardware F:\arduino-1.8.10\hardware -hardware C:\Users\Merli\AppData\Local\Arduino15\packages -tools F:\arduino-1.8.10\tools-builder -tools F:\arduino-1.8.10\hardware\tools\avr -tools C:\Users\Merli\AppData\Local\Arduino15\packages -built-in-libraries F:\arduino-1.8.10\libraries -libraries D:\Users\Merli\Documents\Arduino\libraries -fqbn=teensy:avr:teensy40:usb=serial,opt=o2std,keys=en-us -ide-version=10810 -build-path C:\Users\Merli\AppData\Local\Temp\arduino_build_815371 -warnings=none -build-cache C:\Users\Merli\AppData\Local\Temp\arduino_cache_430563 -verbose D:\Users\Merli\Documents\Arduino\BycleGuytest\BycleGuytest.ino
F:\arduino-1.8.10\arduino-builder -compile -logger=machine -hardware F:\arduino-1.8.10\hardware -hardware C:\Users\Merli\AppData\Local\Arduino15\packages -tools F:\arduino-1.8.10\tools-builder -tools F:\arduino-1.8.10\hardware\tools\avr -tools C:\Users\Merli\AppData\Local\Arduino15\packages -built-in-libraries F:\arduino-1.8.10\libraries -libraries D:\Users\Merli\Documents\Arduino\libraries -fqbn=teensy:avr:teensy40:usb=serial,opt=o2std,keys=en-us -ide-version=10810 -build-path C:\Users\Merli\AppData\Local\Temp\arduino_build_815371 -warnings=none -build-cache C:\Users\Merli\AppData\Local\Temp\arduino_cache_430563 -verbose D:\Users\Merli\Documents\Arduino\BycleGuytest\BycleGuytest.ino
Using board 'teensy40' from platform in folder: F:\arduino-1.8.10\hardware\teensy\avr
Using core 'teensy4' from platform in folder: F:\arduino-1.8.10\hardware\teensy\avr
Detecting libraries used...
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\sketch\\BycleGuytest.ino.cpp" -o nul
Alternatives for SPI.h: [SPI@1.0]
ResolveLibrary(SPI.h)
  -> candidates: [SPI@1.0]
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\sketch\\BycleGuytest.ino.cpp" -o nul
Alternatives for SD.h: [SD@1.2.3 SD@1.2.2]
ResolveLibrary(SD.h)
  -> candidates: [SD@1.2.3 SD@1.2.2]
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\sketch\\BycleGuytest.ino.cpp" -o nul
Alternatives for ILI9341_t3.h: [ILI9341_t3@1.0]
ResolveLibrary(ILI9341_t3.h)
  -> candidates: [ILI9341_t3@1.0]
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\sketch\\BycleGuytest.ino.cpp" -o nul
Alternatives for SerialFlash.h: [SerialFlash-master@0.5 SerialFlash@0.5]
ResolveLibrary(SerialFlash.h)
  -> candidates: [SerialFlash-master@0.5 SerialFlash@0.5]
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\sketch\\BycleGuytest.ino.cpp" -o nul
Alternatives for Audio.h: [Audio@1.3]
ResolveLibrary(Audio.h)
  -> candidates: [Audio@1.3]
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\sketch\\BycleGuytest.ino.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI\\SPI.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD\\File.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD\\SD.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD\\cache_t3.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD\\card_t3.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD\\dir_t3.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD\\fat_t3.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD\\file_t3.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD\\init_t3.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD\\utility\\NXP_SDHC.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD\\utility\\Sd2Card.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD\\utility\\SdFile.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD\\utility\\SdVolume.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3\\ILI9341_t3.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3\\font_Arial.c" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3\\font_ArialBold.c" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3\\glcdfont.c" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash\\SerialFlashChip.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash\\SerialFlashDirectory.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\analyze_fft1024.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\analyze_fft256.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\analyze_notefreq.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\analyze_peak.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\analyze_print.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\analyze_rms.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\analyze_tonedetect.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\control_ak4558.cpp" -o nul
Alternatives for Wire.h: [Wire@1.0]
ResolveLibrary(Wire.h)
  -> candidates: [Wire@1.0]
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\control_ak4558.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\control_cs42448.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\control_cs4272.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\control_sgtl5000.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\control_tlv320aic3206.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\control_wm8731.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\data_spdif.c" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\data_ulaw.c" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\data_waveforms.c" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\data_windows.c" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\effect_bitcrusher.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\effect_chorus.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\effect_combine.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\effect_delay.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\effect_delay_ext.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\effect_envelope.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\effect_fade.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\effect_flange.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\effect_freeverb.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\effect_granular.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\effect_midside.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\effect_multiply.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\effect_reverb.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\effect_waveshaper.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\filter_biquad.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\filter_fir.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\filter_variable.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\input_adc.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\input_adcs.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\input_i2s.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\input_i2s2.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\input_i2s_quad.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\input_pdm.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\input_tdm.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\input_tdm2.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\memcpy_audio.S" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\mixer.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\output_adat.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\output_dac.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\output_dacs.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\output_i2s.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\output_i2s2.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\output_i2s_quad.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\output_mqs.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\output_pt8211.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\output_pt8211_2.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\output_pwm.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\output_spdif.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\output_spdif2.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\output_spdif3.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\output_tdm.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\output_tdm2.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\play_memory.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\play_queue.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\play_sd_raw.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\play_sd_wav.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\play_serialflash_raw.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\record_queue.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\spi_interrupt.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\synth_dc.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\synth_karplusstrong.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\synth_pinknoise.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\synth_pwm.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\synth_simple_drum.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\synth_sine.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\synth_tonesweep.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\synth_waveform.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\synth_wavetable.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\synth_whitenoise.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility\\imxrt_hw.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio\\utility\\sqrt_integer.c" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire\\Wire.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire\\WireIMXRT.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire\\WireKinetis.cpp" -o nul
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire\\utility" "F:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire\\utility\\twi.c" -o nul
Generating function prototypes...
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\sketch\\BycleGuytest.ino.cpp" -o "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\preproc\\ctags_target_for_gcc_minus_e.cpp"
"F:\\arduino-1.8.10\\tools-builder\\ctags\\5.8-arduino11/ctags" -u --language-force=c++ -f - --c++-kinds=svpf --fields=KSTtzns --line-directives "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\preproc\\ctags_target_for_gcc_minus_e.cpp"
Compiling sketch...
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/precompile_helper" "F:\\arduino-1.8.10\\hardware\\teensy\\avr/cores/teensy4" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371" "F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -x c++-header -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr/cores/teensy4" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371/pch/Arduino.h" -o "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371/pch/Arduino.h.gch"
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\pch\Arduino.h.gch

"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-g++" -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH "-IC:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371/pch" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SPI" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SD" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\ILI9341_t3" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\SerialFlash" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Audio" "-IF:\\arduino-1.8.10\\hardware\\teensy\\avr\\libraries\\Wire" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\sketch\\BycleGuytest.ino.cpp" -o "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\sketch\\BycleGuytest.ino.cpp.o"
Compiling libraries...
Compiling library "SPI"
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\SPI\SPI.cpp.o
Compiling library "SD"
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\SD\init_t3.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\SD\cache_t3.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\SD\file_t3.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\SD\fat_t3.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\SD\card_t3.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\SD\dir_t3.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\SD\File.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\SD\SD.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\SD\utility\NXP_SDHC.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\SD\utility\Sd2Card.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\SD\utility\SdFile.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\SD\utility\SdVolume.cpp.o
Compiling library "ILI9341_t3"
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\ILI9341_t3\glcdfont.c.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\ILI9341_t3\font_Arial.c.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\ILI9341_t3\font_ArialBold.c.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\ILI9341_t3\ILI9341_t3.cpp.o
Compiling library "SerialFlash"
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\SerialFlash\SerialFlashChip.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\SerialFlash\SerialFlashDirectory.cpp.o
Compiling library "Audio"
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\memcpy_audio.S.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\data_spdif.c.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\data_ulaw.c.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\data_windows.c.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\data_waveforms.c.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\analyze_peak.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\analyze_print.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\control_cs4272.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\control_sgtl5000.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\analyze_fft256.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\analyze_notefreq.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\control_ak4558.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\analyze_rms.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\control_tlv320aic3206.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\analyze_tonedetect.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\effect_bitcrusher.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\control_cs42448.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\effect_chorus.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\control_wm8731.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\effect_combine.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\analyze_fft1024.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\effect_fade.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\effect_envelope.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\effect_delay.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\effect_flange.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\effect_waveshaper.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\effect_granular.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\effect_midside.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\effect_multiply.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\effect_delay_ext.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\effect_freeverb.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\filter_variable.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\filter_biquad.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\filter_fir.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\input_adc.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\effect_reverb.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\input_adcs.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\input_pdm.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\input_i2s2.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\input_i2s_quad.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\mixer.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\input_i2s.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\input_tdm.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\output_dacs.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\output_adat.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\output_i2s.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\input_tdm2.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\output_dac.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\output_spdif.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\output_i2s_quad.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\output_pwm.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\output_spdif2.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\output_i2s2.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\output_mqs.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\output_pt8211_2.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\output_pt8211.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\output_spdif3.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\play_memory.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\output_tdm2.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\output_tdm.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\play_queue.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\spi_interrupt.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\record_queue.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\play_sd_raw.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\synth_pwm.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\synth_dc.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\play_sd_wav.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\synth_karplusstrong.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\synth_sine.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\play_serialflash_raw.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\synth_simple_drum.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\synth_tonesweep.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\synth_pinknoise.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\synth_whitenoise.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\synth_waveform.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\synth_wavetable.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\utility\sqrt_integer.c.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Audio\utility\imxrt_hw.cpp.o
Compiling library "Wire"
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Wire\Wire.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Wire\WireKinetis.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Wire\WireIMXRT.cpp.o
Using previously compiled file: C:\Users\Merli\AppData\Local\Temp\arduino_build_815371\libraries\Wire\utility\twi.c.o
Compiling core...
Using precompiled core: C:\Users\Merli\AppData\Local\Temp\arduino_cache_430563\core\core_teensy_avr_teensy40_usb_serial,opt_o2std,keys_en-us_fb7005aa833c1e73caa59a2a6148fc9a.a
Linking everything together...
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-gcc" -O2 -Wl,--gc-sections,--relax "-TF:\\arduino-1.8.10\\hardware\\teensy\\avr\\cores\\teensy4/imxrt1062.ld" -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -o "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371/BycleGuytest.ino.elf" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\sketch\\BycleGuytest.ino.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\SPI\\SPI.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\SD\\File.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\SD\\SD.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\SD\\cache_t3.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\SD\\card_t3.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\SD\\dir_t3.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\SD\\fat_t3.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\SD\\file_t3.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\SD\\init_t3.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\SD\\utility\\NXP_SDHC.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\SD\\utility\\Sd2Card.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\SD\\utility\\SdFile.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\SD\\utility\\SdVolume.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\ILI9341_t3\\font_Arial.c.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\ILI9341_t3\\font_ArialBold.c.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\ILI9341_t3\\glcdfont.c.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\ILI9341_t3\\ILI9341_t3.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\SerialFlash\\SerialFlashChip.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\SerialFlash\\SerialFlashDirectory.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\memcpy_audio.S.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\data_spdif.c.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\data_ulaw.c.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\data_waveforms.c.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\data_windows.c.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\analyze_fft1024.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\analyze_fft256.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\analyze_notefreq.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\analyze_peak.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\analyze_print.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\analyze_rms.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\analyze_tonedetect.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\control_ak4558.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\control_cs42448.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\control_cs4272.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\control_sgtl5000.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\control_tlv320aic3206.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\control_wm8731.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\effect_bitcrusher.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\effect_chorus.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\effect_combine.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\effect_delay.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\effect_delay_ext.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\effect_envelope.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\effect_fade.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\effect_flange.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\effect_freeverb.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\effect_granular.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\effect_midside.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\effect_multiply.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\effect_reverb.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\effect_waveshaper.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\filter_biquad.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\filter_fir.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\filter_variable.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\input_adc.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\input_adcs.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\input_i2s.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\input_i2s2.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\input_i2s_quad.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\input_pdm.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\input_tdm.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\input_tdm2.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\mixer.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\output_adat.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\output_dac.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\output_dacs.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\output_i2s.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\output_i2s2.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\output_i2s_quad.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\output_mqs.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\output_pt8211.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\output_pt8211_2.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\output_pwm.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\output_spdif.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\output_spdif2.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\output_spdif3.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\output_tdm.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\output_tdm2.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\play_memory.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\play_queue.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\play_sd_raw.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\play_sd_wav.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\play_serialflash_raw.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\record_queue.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\spi_interrupt.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\synth_dc.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\synth_karplusstrong.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\synth_pinknoise.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\synth_pwm.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\synth_simple_drum.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\synth_sine.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\synth_tonesweep.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\synth_waveform.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\synth_wavetable.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\synth_whitenoise.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\utility\\sqrt_integer.c.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Audio\\utility\\imxrt_hw.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Wire\\Wire.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Wire\\WireIMXRT.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Wire\\WireKinetis.cpp.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371\\libraries\\Wire\\utility\\twi.c.o" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371/..\\arduino_cache_430563\\core\\core_teensy_avr_teensy40_usb_serial,opt_o2std,keys_en-us_fb7005aa833c1e73caa59a2a6148fc9a.a" "-LC:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371" -larm_cortexM7lfsp_math -lm -lstdc++
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-objcopy" -O ihex -j .eeprom --set-section-flags=.eeprom=alloc,load --no-change-warnings --change-section-lma .eeprom=0 "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371/BycleGuytest.ino.elf" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371/BycleGuytest.ino.eep"
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-objcopy" -O ihex -R .eeprom "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371/BycleGuytest.ino.elf" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371/BycleGuytest.ino.hex"
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/stdout_redirect" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371/BycleGuytest.ino.lst" "F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-objdump" -d -S -C "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371/BycleGuytest.ino.elf"
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/stdout_redirect" "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371/BycleGuytest.ino.sym" "F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-objdump" -t -C "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371/BycleGuytest.ino.elf"
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/teensy_post_compile" -file=BycleGuytest.ino "-path=C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371" "-tools=F:\\arduino-1.8.10\\hardware\\teensy/../tools/" -board=TEENSY40
Multiple libraries were found for "Audio.h"
 Used: F:\arduino-1.8.10\hardware\teensy\avr\libraries\Audio
Multiple libraries were found for "Wire.h"
 Used: F:\arduino-1.8.10\hardware\teensy\avr\libraries\Wire
Multiple libraries were found for "SPI.h"
 Used: F:\arduino-1.8.10\hardware\teensy\avr\libraries\SPI
Multiple libraries were found for "SD.h"
 Used: F:\arduino-1.8.10\hardware\teensy\avr\libraries\SD
 Not used: F:\arduino-1.8.10\libraries\SD
Multiple libraries were found for "ILI9341_t3.h"
 Used: F:\arduino-1.8.10\hardware\teensy\avr\libraries\ILI9341_t3
Multiple libraries were found for "SerialFlash.h"
 Used: F:\arduino-1.8.10\hardware\teensy\avr\libraries\SerialFlash
 Not used: D:\Users\Merli\Documents\Arduino\libraries\SerialFlash-master
Using library SPI at version 1.0 in folder: F:\arduino-1.8.10\hardware\teensy\avr\libraries\SPI 
Using library SD at version 1.2.2 in folder: F:\arduino-1.8.10\hardware\teensy\avr\libraries\SD 
Using library ILI9341_t3 at version 1.0 in folder: F:\arduino-1.8.10\hardware\teensy\avr\libraries\ILI9341_t3 
Using library SerialFlash at version 0.5 in folder: F:\arduino-1.8.10\hardware\teensy\avr\libraries\SerialFlash 
Using library Audio at version 1.3 in folder: F:\arduino-1.8.10\hardware\teensy\avr\libraries\Audio 
Using library Wire at version 1.0 in folder: F:\arduino-1.8.10\hardware\teensy\avr\libraries\Wire 
"F:\\arduino-1.8.10\\hardware\\teensy/../tools/arm/bin/arm-none-eabi-size" -A "C:\\Users\\Merli\\AppData\\Local\\Temp\\arduino_build_815371/BycleGuytest.ino.elf"
Sketch uses 54976 bytes (2%) of program storage space. Maximum is 2031616 bytes.
Global variables use 62224 bytes (5%) of dynamic memory, leaving 986352 bytes for local variables. Maximum is 1048576 bytes.
 
The other thing you can do for sanity is going into the 1.8.10 director navigate to hardware/teensy/avr/libraries and see if there it any in that directory.
 
Just re-downloaded and re-installed both. Now Arduino1.8.10 shows a more reasonable 855MB and the library callouts look better
Code:
/Applications/Arduino.app/Contents/Java/arduino-builder -dump-prefs -logger=machine -hardware /Applications/Arduino.app/Contents/Java/hardware -hardware /Users/michaelrunyan/Library/Arduino15/packages -tools /Applications/Arduino.app/Contents/Java/tools-builder -tools /Applications/Arduino.app/Contents/Java/hardware/tools/avr -tools /Users/michaelrunyan/Library/Arduino15/packages -built-in-libraries /Applications/Arduino.app/Contents/Java/libraries -libraries /Users/michaelrunyan/Documents/Arduino/libraries -fqbn=teensy:avr:teensy40:usb=serial,opt=o2std,keys=en-us -vid-pid=0X16C0_0X0483 -ide-version=10810 -build-path /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312 -warnings=default -build-cache /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_cache_542889 -verbose /Users/michaelrunyan/Documents/Arduino/myT4WavDisplay/myT4WavDisplay.ino
/Applications/Arduino.app/Contents/Java/arduino-builder -compile -logger=machine -hardware /Applications/Arduino.app/Contents/Java/hardware -hardware /Users/michaelrunyan/Library/Arduino15/packages -tools /Applications/Arduino.app/Contents/Java/tools-builder -tools /Applications/Arduino.app/Contents/Java/hardware/tools/avr -tools /Users/michaelrunyan/Library/Arduino15/packages -built-in-libraries /Applications/Arduino.app/Contents/Java/libraries -libraries /Users/michaelrunyan/Documents/Arduino/libraries -fqbn=teensy:avr:teensy40:usb=serial,opt=o2std,keys=en-us -vid-pid=0X16C0_0X0483 -ide-version=10810 -build-path /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312 -warnings=default -build-cache /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_cache_542889 -verbose /Users/michaelrunyan/Documents/Arduino/myT4WavDisplay/myT4WavDisplay.ino
Using board 'teensy40' from platform in folder: /Applications/Arduino.app/Contents/Java/hardware/teensy/avr
Using core 'teensy4' from platform in folder: /Applications/Arduino.app/Contents/Java/hardware/teensy/avr
Detecting libraries used...
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/sketch/myT4WavDisplay.ino.cpp -o /dev/null
Alternatives for SPI.h: [SPI@1.0]
ResolveLibrary(SPI.h)
  -> candidates: [SPI@1.0]
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/sketch/myT4WavDisplay.ino.cpp -o /dev/null
Alternatives for SD.h: [SD@1.2.3 SD@1.2.2]
ResolveLibrary(SD.h)
  -> candidates: [SD@1.2.3 SD@1.2.2]
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/sketch/myT4WavDisplay.ino.cpp -o /dev/null
Alternatives for ILI9341_t3.h: [ILI9341_t3@1.0]
ResolveLibrary(ILI9341_t3.h)
  -> candidates: [ILI9341_t3@1.0]
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/sketch/myT4WavDisplay.ino.cpp -o /dev/null
Alternatives for SerialFlash.h: [SerialFlash@0.5]
ResolveLibrary(SerialFlash.h)
  -> candidates: [SerialFlash@0.5]
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/sketch/myT4WavDisplay.ino.cpp -o /dev/null
Alternatives for Audio.h: [Audio@1.3]
ResolveLibrary(Audio.h)
  -> candidates: [Audio@1.3]
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/sketch/myT4WavDisplay.ino.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI/SPI.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD/File.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD/SD.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD/cache_t3.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD/card_t3.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD/dir_t3.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD/fat_t3.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD/file_t3.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD/init_t3.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD/utility/NXP_SDHC.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD/utility/Sd2Card.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD/utility/SdFile.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD/utility/SdVolume.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3/ILI9341_t3.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3/font_Arial.c -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3/font_ArialBold.c -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3/glcdfont.c -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash/SerialFlashChip.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash/SerialFlashDirectory.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/analyze_fft1024.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/analyze_fft256.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/analyze_notefreq.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/analyze_peak.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/analyze_print.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/analyze_rms.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/analyze_tonedetect.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/control_ak4558.cpp -o /dev/null
Alternatives for Wire.h: [Wire@1.0]
ResolveLibrary(Wire.h)
  -> candidates: [Wire@1.0]
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/control_ak4558.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/control_cs42448.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/control_cs4272.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/control_sgtl5000.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/control_tlv320aic3206.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/control_wm8731.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/data_spdif.c -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/data_ulaw.c -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/data_waveforms.c -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/data_windows.c -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/effect_bitcrusher.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/effect_chorus.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/effect_combine.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/effect_delay.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/effect_delay_ext.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/effect_envelope.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/effect_fade.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/effect_flange.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/effect_freeverb.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/effect_granular.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/effect_midside.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/effect_multiply.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/effect_reverb.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/effect_waveshaper.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/filter_biquad.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/filter_fir.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/filter_variable.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/input_adc.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/input_adcs.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/input_i2s.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/input_i2s2.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/input_i2s_quad.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/input_pdm.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/input_tdm.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/input_tdm2.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/memcpy_audio.S -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/mixer.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/output_adat.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/output_dac.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/output_dacs.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/output_i2s.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/output_i2s2.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/output_i2s_quad.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/output_mqs.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/output_pt8211.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/output_pt8211_2.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/output_pwm.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/output_spdif.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/output_spdif2.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/output_spdif3.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/output_tdm.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/output_tdm2.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/play_memory.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/play_queue.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/play_sd_raw.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/play_sd_wav.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/play_serialflash_raw.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/record_queue.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/spi_interrupt.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/synth_dc.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/synth_karplusstrong.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/synth_pinknoise.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/synth_pwm.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/synth_simple_drum.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/synth_sine.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/synth_tonesweep.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/synth_waveform.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/synth_wavetable.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/synth_whitenoise.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility/imxrt_hw.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio/utility/sqrt_integer.c -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire/Wire.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire/WireIMXRT.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire/WireKinetis.cpp -o /dev/null
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire/utility /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire/utility/twi.c -o /dev/null
Generating function prototypes...
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -E -CC -x c++ -w -g -Wall -ffunction-sections -fdata-sections -nostdlib -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/sketch/myT4WavDisplay.ino.cpp -o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/preproc/ctags_target_for_gcc_minus_e.cpp
/Applications/Arduino.app/Contents/Java/tools-builder/ctags/5.8-arduino11/ctags -u --language-force=c++ -f - --c++-kinds=svpf --fields=KSTtzns --line-directives /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/preproc/ctags_target_for_gcc_minus_e.cpp
Compiling sketch...
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/precompile_helper /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312 /Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -x c++-header -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/pch/Arduino.h -o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/pch/Arduino.h.gch
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/pch/Arduino.h.gch
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-g++ -c -O2 -g -Wall -ffunction-sections -fdata-sections -nostdlib -MMD -std=gnu++14 -fno-exceptions -fpermissive -fno-rtti -fno-threadsafe-statics -felide-constructors -Wno-error=narrowing -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -D__IMXRT1062__ -DTEENSYDUINO=148 -DARDUINO=10810 -DF_CPU=600000000 -DUSB_SERIAL -DLAYOUT_US_ENGLISH -I/var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/pch -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio -I/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/sketch/myT4WavDisplay.ino.cpp -o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/sketch/myT4WavDisplay.ino.cpp.o
Compiling libraries...
Compiling library "SPI"
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/SPI/SPI.cpp.o
Compiling library "SD"
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/SD/card_t3.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/SD/cache_t3.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/SD/dir_t3.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/SD/fat_t3.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/SD/File.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/SD/SD.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/SD/init_t3.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/SD/file_t3.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/SD/utility/NXP_SDHC.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/SD/utility/Sd2Card.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/SD/utility/SdVolume.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/SD/utility/SdFile.cpp.o
Compiling library "ILI9341_t3"
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/ILI9341_t3/font_Arial.c.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/ILI9341_t3/font_ArialBold.c.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/ILI9341_t3/glcdfont.c.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/ILI9341_t3/ILI9341_t3.cpp.o
Compiling library "SerialFlash"
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/SerialFlash/SerialFlashDirectory.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/SerialFlash/SerialFlashChip.cpp.o
Compiling library "Audio"
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/memcpy_audio.S.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/data_spdif.c.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/data_windows.c.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/data_waveforms.c.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/data_ulaw.c.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/analyze_fft1024.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/analyze_peak.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/analyze_print.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/analyze_rms.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/analyze_notefreq.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/analyze_fft256.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/analyze_tonedetect.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/control_ak4558.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/control_cs42448.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/control_cs4272.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/control_sgtl5000.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/control_wm8731.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/effect_bitcrusher.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/effect_chorus.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/effect_combine.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/effect_delay.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/control_tlv320aic3206.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/effect_delay_ext.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/effect_envelope.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/effect_fade.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/effect_flange.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/effect_freeverb.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/effect_granular.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/effect_midside.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/effect_multiply.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/effect_reverb.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/effect_waveshaper.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/filter_biquad.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/input_adc.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/filter_variable.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/input_adcs.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/filter_fir.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/input_i2s2.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/input_i2s.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/input_pdm.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/input_i2s_quad.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/input_tdm.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/input_tdm2.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/mixer.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/output_adat.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/output_dac.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/output_dacs.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/output_i2s.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/output_i2s_quad.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/output_mqs.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/output_i2s2.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/output_pt8211.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/output_pwm.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/output_pt8211_2.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/output_spdif.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/output_spdif2.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/output_tdm.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/output_spdif3.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/output_tdm2.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/play_queue.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/play_memory.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/play_sd_raw.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/play_sd_wav.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/play_serialflash_raw.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/record_queue.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/spi_interrupt.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/synth_karplusstrong.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/synth_pinknoise.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/synth_dc.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/synth_pwm.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/synth_simple_drum.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/synth_tonesweep.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/synth_sine.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/synth_waveform.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/synth_wavetable.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/synth_whitenoise.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/utility/sqrt_integer.c.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/utility/imxrt_hw.cpp.o
Compiling library "Wire"
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Wire/Wire.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Wire/WireKinetis.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Wire/WireIMXRT.cpp.o
Using previously compiled file: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Wire/utility/twi.c.o
Compiling core...
Using precompiled core: /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_cache_542889/core/core_teensy_avr_teensy40_usb_serial,opt_o2std,keys_en-us_cee3a1d70ca5f7f18ab44a012a95ee10.a
Linking everything together...
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-gcc -O2 -Wl,--gc-sections,--relax -T/Applications/Arduino.app/Contents/Java/hardware/teensy/avr/cores/teensy4/imxrt1062.ld -mthumb -mcpu=cortex-m7 -mfloat-abi=hard -mfpu=fpv5-d16 -o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/myT4WavDisplay.ino.elf /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/sketch/myT4WavDisplay.ino.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/SPI/SPI.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/SD/File.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/SD/SD.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/SD/cache_t3.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/SD/card_t3.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/SD/dir_t3.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/SD/fat_t3.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/SD/file_t3.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/SD/init_t3.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/SD/utility/NXP_SDHC.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/SD/utility/Sd2Card.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/SD/utility/SdFile.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/SD/utility/SdVolume.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/ILI9341_t3/font_Arial.c.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/ILI9341_t3/font_ArialBold.c.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/ILI9341_t3/glcdfont.c.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/ILI9341_t3/ILI9341_t3.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/SerialFlash/SerialFlashChip.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/SerialFlash/SerialFlashDirectory.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/memcpy_audio.S.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/data_spdif.c.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/data_ulaw.c.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/data_waveforms.c.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/data_windows.c.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/analyze_fft1024.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/analyze_fft256.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/analyze_notefreq.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/analyze_peak.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/analyze_print.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/analyze_rms.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/analyze_tonedetect.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/control_ak4558.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/control_cs42448.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/control_cs4272.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/control_sgtl5000.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/control_tlv320aic3206.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/control_wm8731.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/effect_bitcrusher.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/effect_chorus.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/effect_combine.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/effect_delay.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/effect_delay_ext.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/effect_envelope.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/effect_fade.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/effect_flange.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/effect_freeverb.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/effect_granular.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/effect_midside.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/effect_multiply.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/effect_reverb.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/effect_waveshaper.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/filter_biquad.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/filter_fir.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/filter_variable.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/input_adc.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/input_adcs.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/input_i2s.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/input_i2s2.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/input_i2s_quad.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/input_pdm.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/input_tdm.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/input_tdm2.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/mixer.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/output_adat.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/output_dac.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/output_dacs.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/output_i2s.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/output_i2s2.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/output_i2s_quad.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/output_mqs.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/output_pt8211.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/output_pt8211_2.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/output_pwm.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/output_spdif.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/output_spdif2.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/output_spdif3.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/output_tdm.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/output_tdm2.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/play_memory.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/play_queue.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/play_sd_raw.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/play_sd_wav.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/play_serialflash_raw.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/record_queue.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/spi_interrupt.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/synth_dc.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/synth_karplusstrong.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/synth_pinknoise.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/synth_pwm.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/synth_simple_drum.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/synth_sine.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/synth_tonesweep.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/synth_waveform.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/synth_wavetable.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/synth_whitenoise.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/utility/sqrt_integer.c.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Audio/utility/imxrt_hw.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Wire/Wire.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Wire/WireIMXRT.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Wire/WireKinetis.cpp.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/libraries/Wire/utility/twi.c.o /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/../arduino_cache_542889/core/core_teensy_avr_teensy40_usb_serial,opt_o2std,keys_en-us_cee3a1d70ca5f7f18ab44a012a95ee10.a -L/var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312 -larm_cortexM7lfsp_math -lm -lstdc++
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-objcopy -O ihex -j .eeprom --set-section-flags=.eeprom=alloc,load --no-change-warnings --change-section-lma .eeprom=0 /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/myT4WavDisplay.ino.elf /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/myT4WavDisplay.ino.eep
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-objcopy -O ihex -R .eeprom /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/myT4WavDisplay.ino.elf /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/myT4WavDisplay.ino.hex
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/stdout_redirect /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/myT4WavDisplay.ino.lst /Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-objdump -d -S -C /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/myT4WavDisplay.ino.elf
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/stdout_redirect /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/myT4WavDisplay.ino.sym /Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-objdump -t -C /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/myT4WavDisplay.ino.elf
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/teensy_post_compile -file=myT4WavDisplay.ino -path=/var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312 -tools=/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/ -board=TEENSY40
Multiple libraries were found for "SerialFlash.h"
 Used: /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash
Multiple libraries were found for "Audio.h"
 Used: /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio
Multiple libraries were found for "Wire.h"
 Used: /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire
Multiple libraries were found for "SPI.h"
 Used: /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI
Multiple libraries were found for "SD.h"
 Used: /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD
 Not used: /Applications/Arduino.app/Contents/Java/libraries/SD
Multiple libraries were found for "ILI9341_t3.h"
 Used: /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3
Using library SPI at version 1.0 in folder: /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SPI 
Using library SD at version 1.2.2 in folder: /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SD 
Using library ILI9341_t3 at version 1.0 in folder: /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/ILI9341_t3 
Using library SerialFlash at version 0.5 in folder: /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/SerialFlash 
Using library Audio at version 1.3 in folder: /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Audio 
Using library Wire at version 1.0 in folder: /Applications/Arduino.app/Contents/Java/hardware/teensy/avr/libraries/Wire 
/Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/arm/bin/arm-none-eabi-size -A /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/myT4WavDisplay.ino.elf
Sketch uses 52912 bytes (2%) of program storage space. Maximum is 2031616 bytes.
Global variables use 60176 bytes (5%) of dynamic memory, leaving 988400 bytes for local variables. Maximum is 1048576 bytes.

But the program still crashes the T4 (no sign of life and terminal can't be found). Also checked and TD1.48B1 works on 1.8.9.
 
Here's the Teensy verbose output showing the port closing at the very end:(edit, or I guess never opening)
Code:
11:23:37.378 (ports 2): Begin, version=1.48-beta1
11:23:37.378 (ports 2): USB device add callback
11:23:37.380 (ports 2): USB device remove callback
11:23:37.380 (ports 2): Serial add callback
11:23:37.387 (ports 2): Serial remove callback
11:23:37.392 (ports 2): HID Manager started
11:24:24.283 (post_compile 1): Begin, version=1.48-beta1
11:24:24.669 (loader): Teensy Loader 1.48-beta1, begin program
11:24:24.702 (loader): Listening for remote control on port 3149
11:24:24.703 (loader): initialized, showing main window
11:24:24.821 (loader): remote connection 18 opened
11:24:24.822 (post_compile 1): Sending command: comment: Teensyduino 1.48-beta1 - MACOSX (teensy_post_compile)
11:24:24.826 (loader): remote cmd from 18: "comment: Teensyduino 1.48-beta1 - MACOSX (teensy_post_compile)"
11:24:24.827 (loader): remote cmd from 18: "status"
11:24:24.829 (loader): HID/macos: no devices found
11:24:24.829 (post_compile 1): Status: 0, 0, 0, 0, 0, 0, /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_871214/, myT4WavDisplay.ino.hex
11:24:24.829 (post_compile 1): Sending command: dir:/var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/
11:24:24.830 (loader): remote cmd from 18: "dir:/var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/"
11:24:24.830 (post_compile 1): Sending command: file:myT4WavDisplay.ino.hex
11:24:24.830 (loader): remote cmd from 18: "file:myT4WavDisplay.ino.hex"
11:24:24.839 (loader): File "myT4WavDisplay.ino.hex". 52924 bytes, 3% used
11:24:24.844 (loader): remote cmd from 18: "status"
11:24:24.845 (post_compile 1): Status: 1, 0, 0, 0, 0, 0, /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/, myT4WavDisplay.ino.hex
11:24:24.845 (post_compile 1): Sending command: auto:on
11:24:24.845 (loader): remote cmd from 18: "auto:on"
11:24:24.846 (post_compile 1): Disconnect
11:24:24.857 (loader): remote connection 18 closed
11:24:34.725 (ports 2): USB device add callback
11:24:34.725 (ports 2):   loc=14340000, vid=16C0, pid=0478, ver=0105, ser=0009649E
11:24:34.725 (ports 2):   actual serailnum=615582
11:24:34.725 (ports 2):     name: [no_device] (Teensy) Bootloader
11:24:34.725 (loader): remote connection 18 opened
11:24:35.448 (ports 2): HID add callback, vid=16c0, pid=0478, ver=0105, loc=14340000, use=ff9c:24
11:24:35.448 (ports 2):   found prior teensy at this loc, age=0.723
11:24:35.448 (ports 2):     name: HID=16c0:0478.ff9c.24 (Teensy 4.0) Bootloader
11:24:35.449 (loader): HID/macos: attach callback
11:24:35.453 (loader): Device came online, code_size = 2031616
11:24:35.453 (loader): Board is: Teensy 4.0 (IMXRT1062), version 1.05
11:24:35.459 (loader): File "myT4WavDisplay.ino.hex". 52924 bytes, 3% used
11:24:35.460 (loader): set background IMG_ONLINE
11:24:35.468 (loader): File "myT4WavDisplay.ino.hex". 52924 bytes, 3% used
11:24:35.469 (loader): elf appears to be for Teensy 4.0 (IMXRT1062) (2031616 bytes)
11:24:35.470 (loader): elf binary data matches hex file
11:24:35.470 (loader): elf file is for Teensy 4.0 (IMXRT1062)
11:24:35.470 (loader): begin operation
11:24:35.499 (loader): flash, block=0, bs=1024, auto=1
11:24:35.499 (loader):  gauge old value = 0
11:24:35.500 (loader): flash, block=1, bs=1024, auto=1
11:24:35.672 (loader):  gauge old value = 1
11:24:35.679 (loader): flash, block=2, bs=1024, auto=1
11:24:35.680 (loader):  gauge old value = 2
11:24:35.680 (loader): flash, block=3, bs=1024, auto=1
11:24:35.680 (loader):  gauge old value = 3
11:24:35.680 (loader): flash, block=4, bs=1024, auto=1
11:24:35.681 (loader):  gauge old value = 4
11:24:35.681 (loader): flash, block=5, bs=1024, auto=1
11:24:35.682 (loader):  gauge old value = 5
11:24:35.683 (loader): flash, block=6, bs=1024, auto=1
11:24:35.684 (loader):  gauge old value = 6
11:24:35.684 (loader): flash, block=7, bs=1024, auto=1
11:24:35.685 (loader):  gauge old value = 7
11:24:35.686 (loader): flash, block=8, bs=1024, auto=1
11:24:35.687 (loader):  gauge old value = 8
11:24:35.687 (loader): flash, block=9, bs=1024, auto=1
11:24:35.688 (loader):  gauge old value = 9
11:24:35.689 (loader): flash, block=10, bs=1024, auto=1
11:24:35.690 (loader):  gauge old value = 10
11:24:35.690 (loader): flash, block=11, bs=1024, auto=1
11:24:35.692 (loader):  gauge old value = 11
11:24:35.692 (loader): flash, block=12, bs=1024, auto=1
11:24:35.693 (loader):  gauge old value = 12
11:24:35.700 (loader): flash, block=13, bs=1024, auto=1
11:24:35.700 (loader):  gauge old value = 13
11:24:35.700 (loader): flash, block=14, bs=1024, auto=1
11:24:35.702 (loader):  gauge old value = 14
11:24:35.702 (loader): flash, block=15, bs=1024, auto=1
11:24:35.703 (loader):  gauge old value = 15
11:24:35.704 (loader): flash, block=16, bs=1024, auto=1
11:24:35.705 (loader):  gauge old value = 16
11:24:35.705 (loader): flash, block=17, bs=1024, auto=1
11:24:35.706 (loader):  gauge old value = 17
11:24:35.707 (loader): flash, block=18, bs=1024, auto=1
11:24:35.708 (loader):  gauge old value = 18
11:24:35.708 (loader): flash, block=19, bs=1024, auto=1
11:24:35.710 (loader):  gauge old value = 19
11:24:35.716 (loader): flash, block=20, bs=1024, auto=1
11:24:35.716 (loader):  gauge old value = 20
11:24:35.716 (loader): flash, block=21, bs=1024, auto=1
11:24:35.718 (loader):  gauge old value = 21
11:24:35.718 (loader): flash, block=22, bs=1024, auto=1
11:24:35.719 (loader):  gauge old value = 22
11:24:35.719 (loader): flash, block=23, bs=1024, auto=1
11:24:35.721 (loader):  gauge old value = 23
11:24:35.721 (loader): flash, block=24, bs=1024, auto=1
11:24:35.722 (loader):  gauge old value = 24
11:24:35.723 (loader): flash, block=25, bs=1024, auto=1
11:24:35.724 (loader):  gauge old value = 25
11:24:35.724 (loader): flash, block=26, bs=1024, auto=1
11:24:35.725 (loader):  gauge old value = 26
11:24:35.732 (loader): flash, block=27, bs=1024, auto=1
11:24:35.732 (loader):  gauge old value = 27
11:24:35.733 (loader): flash, block=28, bs=1024, auto=1
11:24:35.734 (loader):  gauge old value = 28
11:24:35.734 (loader): flash, block=29, bs=1024, auto=1
11:24:35.736 (loader):  gauge old value = 29
11:24:35.736 (loader): flash, block=30, bs=1024, auto=1
11:24:35.737 (loader):  gauge old value = 30
11:24:35.737 (loader): flash, block=31, bs=1024, auto=1
11:24:35.739 (loader):  gauge old value = 31
11:24:35.739 (loader): flash, block=32, bs=1024, auto=1
11:24:35.740 (loader):  gauge old value = 32
11:24:35.741 (loader): flash, block=33, bs=1024, auto=1
11:24:35.742 (loader):  gauge old value = 33
11:24:35.742 (loader): flash, block=34, bs=1024, auto=1
11:24:35.743 (loader):  gauge old value = 34
11:24:35.749 (loader): flash, block=35, bs=1024, auto=1
11:24:35.750 (loader):  gauge old value = 35
11:24:35.756 (loader): flash, block=36, bs=1024, auto=1
11:24:35.756 (loader):  gauge old value = 36
11:24:35.756 (loader): flash, block=37, bs=1024, auto=1
11:24:35.757 (loader):  gauge old value = 37
11:24:35.757 (loader): flash, block=38, bs=1024, auto=1
11:24:35.759 (loader):  gauge old value = 38
11:24:35.766 (loader): flash, block=39, bs=1024, auto=1
11:24:35.766 (loader):  gauge old value = 39
11:24:35.766 (loader): flash, block=40, bs=1024, auto=1
11:24:35.768 (loader):  gauge old value = 40
11:24:35.768 (loader): flash, block=41, bs=1024, auto=1
11:24:35.769 (loader):  gauge old value = 41
11:24:35.769 (loader): flash, block=42, bs=1024, auto=1
11:24:35.771 (loader):  gauge old value = 42
11:24:35.771 (loader): flash, block=43, bs=1024, auto=1
11:24:35.772 (loader):  gauge old value = 43
11:24:35.772 (loader): flash, block=44, bs=1024, auto=1
11:24:35.774 (loader):  gauge old value = 44
11:24:35.774 (loader): flash, block=45, bs=1024, auto=1
11:24:35.775 (loader):  gauge old value = 45
11:24:35.782 (loader): flash, block=46, bs=1024, auto=1
11:24:35.782 (loader):  gauge old value = 46
11:24:35.783 (loader): flash, block=47, bs=1024, auto=1
11:24:35.784 (loader):  gauge old value = 47
11:24:35.784 (loader): flash, block=48, bs=1024, auto=1
11:24:35.786 (loader):  gauge old value = 48
11:24:35.786 (loader): flash, block=49, bs=1024, auto=1
11:24:35.787 (loader):  gauge old value = 49
11:24:35.787 (loader): flash, block=50, bs=1024, auto=1
11:24:35.789 (loader):  gauge old value = 50
11:24:35.789 (loader): flash, block=51, bs=1024, auto=1
11:24:35.790 (loader):  gauge old value = 51
11:24:35.806 (loader): sending reboot
11:24:35.806 (loader): begin wait_until_offline
11:24:35.806 (loader): HID/macos: status: ok
11:24:35.857 (ports 2): HID remove callback
11:24:35.857 (ports 2): HID add callback, vid=16c0, pid=0478, ver=0105, loc=14340000
11:24:35.857 (ports 2): USB device remove callback
11:24:35.857 (ports 2): remove, loc=14340000
11:24:35.857 (ports 2): usb_remove: usb:14340000
11:24:35.857 (ports 2): del device: location=14340000
11:24:35.907 (loader): HID/macos: detach callback: is currently open device
11:24:35.908 (loader): offline, waited 2
11:24:35.908 (loader): end operation, total time = 0.439 seconds
11:24:35.909 (loader): set background IMG_REBOOT_OK
11:24:35.910 (loader): redraw timer set, image 14 to show for 1200 ms
11:24:35.952 (loader): HID/macos: number of devices found = 0
11:24:35.952 (loader): HID/macos: no devices found (empty set)
11:24:37.111 (loader): redraw, image 9
11:24:37.661 (ports 2): purge, name=HID=16c0:0478.ff9c.24 (Teensy 4.0) Bootloader, loc=usb:14340000, age=1.804 sec
11:25:12.776 (post_compile 3): Begin, version=1.48-beta1
11:25:12.776 (loader): remote connection 22 opened
11:25:12.776 (post_compile 3): Sending command: comment: Teensyduino 1.48-beta1 - MACOSX (teensy_post_compile)
11:25:12.776 (loader): remote cmd from 22: "comment: Teensyduino 1.48-beta1 - MACOSX (teensy_post_compile)"
11:25:12.777 (loader): remote cmd from 22: "status"
11:25:12.777 (post_compile 3): Status: 1, 1, 0, 1, 0, 0, /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/, myT4WavDisplay.ino.hex
11:25:12.777 (post_compile 3): Sending command: dir:/var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_748221/
11:25:12.777 (loader): remote cmd from 22: "dir:/var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_748221/"
11:25:12.777 (post_compile 3): Sending command: file:Blink.ino.hex
11:25:12.777 (loader): remote cmd from 22: "file:Blink.ino.hex"
11:25:12.780 (loader): File "Blink.ino.hex". 12164 bytes, 1% used
11:25:12.787 (loader): remote cmd from 22: "status"
11:25:12.788 (post_compile 3): Status: 1, 1, 0, 1, 0, 0, /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_748221/, Blink.ino.hex
11:25:12.788 (post_compile 3): Disconnect
11:25:12.799 (loader): remote connection 22 closed
11:25:19.525 (ports 2): USB device add callback
11:25:19.525 (ports 2):   loc=14340000, vid=16C0, pid=0478, ver=0105, ser=0009649E
11:25:19.525 (ports 2):   actual serailnum=615582
11:25:19.525 (ports 2):     name: [no_device] (Teensy) Bootloader
11:25:20.249 (loader): HID/macos: attach callback
11:25:20.249 (ports 2): HID add callback, vid=16c0, pid=0478, ver=0105, loc=14340000, use=ff9c:24
11:25:20.249 (ports 2):   found prior teensy at this loc, age=0.724
11:25:20.249 (ports 2):     name: HID=16c0:0478.ff9c.24 (Teensy 4.0) Bootloader
11:25:20.451 (loader): Device came online, code_size = 2031616
11:25:20.451 (loader): Board is: Teensy 4.0 (IMXRT1062), version 1.05
11:25:20.454 (loader): File "Blink.ino.hex". 12164 bytes, 1% used
11:25:20.455 (loader): set background IMG_ONLINE
11:25:20.459 (loader): File "Blink.ino.hex". 12164 bytes, 1% used
11:25:20.459 (loader): elf appears to be for Teensy 4.0 (IMXRT1062) (2031616 bytes)
11:25:20.459 (loader): elf binary data matches hex file
11:25:20.459 (loader): elf file is for Teensy 4.0 (IMXRT1062)
11:25:20.459 (loader): begin operation
11:25:20.486 (loader): flash, block=0, bs=1024, auto=1
11:25:20.486 (loader):  gauge old value = 0
11:25:20.488 (loader): flash, block=1, bs=1024, auto=1
11:25:20.652 (loader):  gauge old value = 1
11:25:20.654 (loader): flash, block=2, bs=1024, auto=1
11:25:20.654 (loader):  gauge old value = 2
11:25:20.654 (loader): flash, block=3, bs=1024, auto=1
11:25:20.655 (loader):  gauge old value = 3
11:25:20.655 (loader): flash, block=4, bs=1024, auto=1
11:25:20.655 (loader):  gauge old value = 4
11:25:20.655 (loader): flash, block=5, bs=1024, auto=1
11:25:20.657 (loader):  gauge old value = 5
11:25:20.657 (loader): flash, block=6, bs=1024, auto=1
11:25:20.658 (loader):  gauge old value = 6
11:25:20.659 (loader): flash, block=7, bs=1024, auto=1
11:25:20.660 (loader):  gauge old value = 7
11:25:20.660 (loader): flash, block=8, bs=1024, auto=1
11:25:20.661 (loader):  gauge old value = 8
11:25:20.669 (loader): flash, block=9, bs=1024, auto=1
11:25:20.669 (loader):  gauge old value = 9
11:25:20.669 (loader): flash, block=10, bs=1024, auto=1
11:25:20.671 (loader):  gauge old value = 10
11:25:20.671 (loader): flash, block=11, bs=1024, auto=1
11:25:20.673 (loader):  gauge old value = 11
11:25:20.674 (loader): sending reboot
11:25:20.674 (loader): begin wait_until_offline
11:25:20.674 (loader): HID/macos: status: ok
11:25:21.061 (ports 2): HID remove callback
11:25:21.061 (ports 2): HID add callback, vid=16c0, pid=0478, ver=0105, loc=14340000
11:25:21.061 (ports 2): USB device remove callback
11:25:21.061 (ports 2): remove, loc=14340000
11:25:21.061 (ports 2): usb_remove: usb:14340000
11:25:21.061 (ports 2): del device: location=14340000
11:25:21.062 (ports 2): USB device add callback
11:25:21.062 (ports 2):   loc=14340000, vid=16C0, pid=0483, ver=0279, ser=6155820
11:25:21.062 (ports 2):   actual serailnum=615582
11:25:21.062 (ports 2):   found prior teensy at this loc, age=0.001
11:25:21.062 (ports 2):     name: [no_device] (Teensy 4.0) Serial
11:25:21.085 (loader): HID/macos: detach callback: is currently open device
11:25:21.087 (loader): offline, waited 8
11:25:21.087 (loader): end operation, total time = 0.627 seconds
11:25:21.087 (loader): set background IMG_REBOOT_OK
11:25:21.089 (loader): redraw timer set, image 14 to show for 1200 ms
11:25:21.200 (loader): HID/macos: number of devices found = 0
11:25:21.200 (loader): HID/macos: no devices found (empty set)
11:25:21.292 (ports 2): Serial add callback
11:25:21.293 (ports 2):   name=/dev/cu.usbmodem61558201, loc=14340000, vid=16c0, pid=0483, ver=0279
11:25:21.293 (ports 2):   found prior teensy at this loc, age=0.231
11:25:21.293 (ports 2):     name: /dev/cu.usbmodem61558201 (Teensy 4.0) Serial
11:25:22.290 (loader): redraw, image 9
11:25:49.989 (post_compile 4): Begin, version=1.48-beta1
11:25:49.989 (loader): remote connection 22 opened
11:25:49.989 (post_compile 4): Sending command: comment: Teensyduino 1.48-beta1 - MACOSX (teensy_post_compile)
11:25:49.989 (loader): remote cmd from 22: "comment: Teensyduino 1.48-beta1 - MACOSX (teensy_post_compile)"
11:25:49.990 (loader): remote cmd from 22: "status"
11:25:49.990 (post_compile 4): Status: 1, 1, 0, 2, 0, 0, /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_748221/, Blink.ino.hex
11:25:49.990 (post_compile 4): Sending command: dir:/var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/
11:25:49.990 (loader): remote cmd from 22: "dir:/var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/"
11:25:49.990 (post_compile 4): Sending command: file:myT4WavDisplay.ino.hex
11:25:49.990 (loader): remote cmd from 22: "file:myT4WavDisplay.ino.hex"
11:25:49.998 (loader): File "myT4WavDisplay.ino.hex". 52924 bytes, 3% used
11:25:50.008 (loader): remote cmd from 22: "status"
11:25:50.008 (post_compile 4): Status: 1, 1, 0, 2, 0, 0, /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/, myT4WavDisplay.ino.hex
11:25:50.008 (post_compile 4): Disconnect
11:25:50.019 (loader): remote connection 22 closed
11:25:50.240 (post_compile 5): Begin, version=1.48-beta1
11:25:50.241 (loader): remote connection 22 opened
11:25:50.241 (post_compile 5): Sending command: comment: Teensyduino 1.48-beta1 - MACOSX (teensy_post_compile)
11:25:50.241 (loader): remote cmd from 22: "comment: Teensyduino 1.48-beta1 - MACOSX (teensy_post_compile)"
11:25:50.241 (loader): remote cmd from 22: "status"
11:25:50.241 (post_compile 5): Status: 1, 1, 0, 2, 0, 0, /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/, myT4WavDisplay.ino.hex
11:25:50.241 (post_compile 5): Disconnect
11:25:50.253 (post_compile 6): Running teensy_reboot: /Applications/Arduino.app/Contents/Java/hardware/teensy/../tools/teensy_reboot
11:25:50.253 (loader): remote connection 22 closed
11:25:50.253 (loader): remote connection 22 opened
11:25:50.254 (loader): remote connection 22 closed
11:25:50.264 (reboot 7): Begin, version=1.48-beta1
11:25:50.264 (reboot 7): location = /dev/cu.usbmodem61558201
11:25:50.264 (reboot 7): portlabel = /dev/cu.usbmodem61558201
11:25:50.264 (reboot 7): portprotocol = serial
11:25:50.264 (reboot 7): Serial device /dev/cu.usbmodem61558201 will be tried first
11:25:50.264 (reboot 7): USB device add callback
11:25:50.265 (reboot 7):   loc=14340000, vid=16C0, pid=0483, ver=0279, ser=6155820
11:25:50.265 (reboot 7):   actual serailnum=615582
11:25:50.266 (loader): remote connection 22 opened
11:25:50.266 (reboot 7): USB device remove callback
11:25:50.266 (reboot 7): Serial add callback
11:25:50.266 (reboot 7):   name=/dev/cu.usbmodem61558201, loc=14340000, vid=16c0, pid=0483, ver=0279
11:25:50.273 (reboot 7): Serial remove callback
11:25:50.302 (reboot 7): HID Manager started
11:25:50.303 (reboot 7): found Teensy Loader, version 1.48
11:25:50.303 (reboot 7): Sending command: show:arduino_attempt_reboot
11:25:50.303 (loader): remote cmd from 22: "show:arduino_attempt_reboot"
11:25:50.303 (loader): got request to show arduino rebooting message
11:25:50.305 (reboot 7): Sending command: comment: Teensyduino 1.48-beta1 - MACOSX (teensy_reboot)
11:25:50.306 (loader): remote cmd from 22: "comment: Teensyduino 1.48-beta1 - MACOSX (teensy_reboot)"
11:25:50.306 (loader): remote cmd from 22: "status"
11:25:50.306 (reboot 7): Status: 1, 1, 0, 2, 0, 0, /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/, myT4WavDisplay.ino.hex
11:25:50.306 (reboot 7): do_reset (serial) /dev/cu.usbmodem61558201
11:25:50.310 (loader): remote cmd from 22: "status"
11:25:50.310 (reboot 7): Status: 1, 1, 0, 2, 0, 0, /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/, myT4WavDisplay.ino.hex
11:25:50.310 (reboot 7): status read, retry 0
11:25:50.351 (ports 2): Serial remove callback
11:25:50.352 (ports 2): USB device remove callback
11:25:50.352 (ports 2): remove, loc=14340000
11:25:50.352 (ports 2): usb_remove: usb:14340000
11:25:50.352 (ports 2): del device: location=14340000
11:25:50.411 (loader): remote cmd from 22: "status"
11:25:50.411 (reboot 7): Status: 1, 1, 0, 2, 0, 0, /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/, myT4WavDisplay.ino.hex
11:25:50.411 (reboot 7): status read, retry 1
11:25:50.512 (loader): remote cmd from 22: "status"
11:25:50.512 (reboot 7): Status: 1, 1, 0, 2, 0, 0, /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/, myT4WavDisplay.ino.hex
11:25:50.512 (reboot 7): status read, retry 2
11:25:50.617 (loader): remote cmd from 22: "status"
11:25:50.618 (reboot 7): Status: 1, 1, 0, 2, 0, 0, /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/, myT4WavDisplay.ino.hex
11:25:50.618 (reboot 7): status read, retry 3
11:25:50.723 (loader): remote cmd from 22: "status"
11:25:50.723 (reboot 7): Status: 1, 1, 0, 2, 0, 0, /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/, myT4WavDisplay.ino.hex
11:25:50.723 (reboot 7): status read, retry 4
11:25:50.755 (ports 2): USB device add callback
11:25:50.755 (ports 2):   loc=14340000, vid=16C0, pid=0478, ver=0105, ser=0009649E
11:25:50.756 (ports 2):   actual serailnum=615582
11:25:50.756 (ports 2):   found prior teensy at this loc, age=0.404
11:25:50.756 (ports 2):     name: [no_device] (Teensy 4.0) Bootloader
11:25:50.829 (loader): remote cmd from 22: "status"
11:25:50.829 (reboot 7): Status: 1, 1, 0, 2, 0, 0, /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/, myT4WavDisplay.ino.hex
11:25:50.829 (reboot 7): status read, retry 5
11:25:50.934 (loader): remote cmd from 22: "status"
11:25:50.934 (reboot 7): Status: 1, 1, 0, 2, 0, 0, /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/, myT4WavDisplay.ino.hex
11:25:50.934 (reboot 7): status read, retry 6
11:25:51.038 (loader): remote cmd from 22: "status"
11:25:51.038 (reboot 7): Status: 1, 1, 0, 2, 0, 0, /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/, myT4WavDisplay.ino.hex
11:25:51.038 (reboot 7): status read, retry 7
11:25:51.140 (loader): remote cmd from 22: "status"
11:25:51.141 (reboot 7): Status: 1, 1, 0, 2, 0, 0, /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/, myT4WavDisplay.ino.hex
11:25:51.141 (reboot 7): status read, retry 8
11:25:51.245 (loader): remote cmd from 22: "status"
11:25:51.245 (reboot 7): Status: 1, 1, 0, 2, 0, 0, /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/, myT4WavDisplay.ino.hex
11:25:51.245 (reboot 7): status read, retry 9
11:25:51.351 (loader): remote cmd from 22: "status"
11:25:51.351 (reboot 7): Status: 1, 1, 0, 2, 0, 0, /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/, myT4WavDisplay.ino.hex
11:25:51.351 (reboot 7): status read, retry 10
11:25:51.455 (loader): remote cmd from 22: "status"
11:25:51.455 (reboot 7): Status: 1, 1, 0, 2, 0, 0, /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/, myT4WavDisplay.ino.hex
11:25:51.455 (reboot 7): status read, retry 11
11:25:51.479 (loader): HID/macos: attach callback
11:25:51.479 (ports 2): HID add callback, vid=16c0, pid=0478, ver=0105, loc=14340000, use=ff9c:24
11:25:51.479 (ports 2):   found prior teensy at this loc, age=0.724
11:25:51.479 (ports 2):     name: HID=16c0:0478.ff9c.24 (Teensy 4.0) Bootloader
11:25:51.560 (loader): remote cmd from 22: "status"
11:25:51.560 (loader): Device came online, code_size = 2031616
11:25:51.560 (loader): Board is: Teensy 4.0 (IMXRT1062), version 1.05
11:25:51.567 (loader): File "myT4WavDisplay.ino.hex". 52924 bytes, 3% used
11:25:51.568 (loader): set background IMG_ONLINE
11:25:51.576 (loader): File "myT4WavDisplay.ino.hex". 52924 bytes, 3% used
11:25:51.577 (loader): elf appears to be for Teensy 4.0 (IMXRT1062) (2031616 bytes)
11:25:51.577 (loader): elf binary data matches hex file
11:25:51.577 (loader): elf file is for Teensy 4.0 (IMXRT1062)
11:25:51.577 (loader): begin operation
11:25:51.580 (reboot 7): Status: 1, 1, 1, 3, 0, 1, /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/, myT4WavDisplay.ino.hex
11:25:51.598 (loader): flash, block=0, bs=1024, auto=1
11:25:51.598 (loader):  gauge old value = 0
11:25:51.598 (loader): flash, block=1, bs=1024, auto=1
11:25:51.767 (loader):  gauge old value = 1
11:25:51.769 (loader): remote cmd from 22: "status"
11:25:51.769 (reboot 7): Status: 1, 1, 1, 3, 0, 1, /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/, myT4WavDisplay.ino.hex
11:25:51.770 (loader): flash, block=2, bs=1024, auto=1
11:25:51.770 (loader):  gauge old value = 2
11:25:51.770 (loader): flash, block=3, bs=1024, auto=1
11:25:51.770 (loader):  gauge old value = 3
11:25:51.771 (loader): flash, block=4, bs=1024, auto=1
11:25:51.771 (loader):  gauge old value = 4
11:25:51.771 (loader): flash, block=5, bs=1024, auto=1
11:25:51.773 (loader):  gauge old value = 5
11:25:51.773 (loader): flash, block=6, bs=1024, auto=1
11:25:51.774 (loader):  gauge old value = 6
11:25:51.774 (loader): flash, block=7, bs=1024, auto=1
11:25:51.776 (loader):  gauge old value = 7
11:25:51.776 (loader): flash, block=8, bs=1024, auto=1
11:25:51.777 (loader):  gauge old value = 8
11:25:51.778 (loader): flash, block=9, bs=1024, auto=1
11:25:51.779 (loader):  gauge old value = 9
11:25:51.779 (loader): flash, block=10, bs=1024, auto=1
11:25:51.780 (loader):  gauge old value = 10
11:25:51.781 (loader): flash, block=11, bs=1024, auto=1
11:25:51.782 (loader):  gauge old value = 11
11:25:51.782 (loader): flash, block=12, bs=1024, auto=1
11:25:51.784 (loader):  gauge old value = 12
11:25:51.784 (loader): flash, block=13, bs=1024, auto=1
11:25:51.785 (loader):  gauge old value = 13
11:25:51.785 (loader): flash, block=14, bs=1024, auto=1
11:25:51.787 (loader):  gauge old value = 14
11:25:51.788 (loader): flash, block=15, bs=1024, auto=1
11:25:51.788 (loader):  gauge old value = 15
11:25:51.789 (loader): flash, block=16, bs=1024, auto=1
11:25:51.790 (loader):  gauge old value = 16
11:25:51.790 (loader): flash, block=17, bs=1024, auto=1
11:25:51.791 (loader):  gauge old value = 17
11:25:51.792 (loader): flash, block=18, bs=1024, auto=1
11:25:51.793 (loader):  gauge old value = 18
11:25:51.793 (loader): flash, block=19, bs=1024, auto=1
11:25:51.795 (loader):  gauge old value = 19
11:25:51.795 (loader): flash, block=20, bs=1024, auto=1
11:25:51.796 (loader):  gauge old value = 20
11:25:51.797 (loader): flash, block=21, bs=1024, auto=1
11:25:51.798 (loader):  gauge old value = 21
11:25:51.798 (loader): flash, block=22, bs=1024, auto=1
11:25:51.799 (loader):  gauge old value = 22
11:25:51.800 (loader): flash, block=23, bs=1024, auto=1
11:25:51.801 (loader):  gauge old value = 23
11:25:51.801 (loader): flash, block=24, bs=1024, auto=1
11:25:51.803 (loader):  gauge old value = 24
11:25:51.805 (loader): flash, block=25, bs=1024, auto=1
11:25:51.805 (loader):  gauge old value = 25
11:25:51.805 (loader): flash, block=26, bs=1024, auto=1
11:25:51.807 (loader):  gauge old value = 26
11:25:51.807 (loader): flash, block=27, bs=1024, auto=1
11:25:51.808 (loader):  gauge old value = 27
11:25:51.808 (loader): flash, block=28, bs=1024, auto=1
11:25:51.810 (loader):  gauge old value = 28
11:25:51.810 (loader): flash, block=29, bs=1024, auto=1
11:25:51.811 (loader):  gauge old value = 29
11:25:51.812 (loader): flash, block=30, bs=1024, auto=1
11:25:51.813 (loader):  gauge old value = 30
11:25:51.813 (loader): flash, block=31, bs=1024, auto=1
11:25:51.814 (loader):  gauge old value = 31
11:25:51.815 (loader): flash, block=32, bs=1024, auto=1
11:25:51.816 (loader):  gauge old value = 32
11:25:51.816 (loader): flash, block=33, bs=1024, auto=1
11:25:51.818 (loader):  gauge old value = 33
11:25:51.818 (loader): flash, block=34, bs=1024, auto=1
11:25:51.819 (loader):  gauge old value = 34
11:25:51.826 (loader): remote cmd from 22: "status"
11:25:51.826 (reboot 7): Status: 1, 1, 1, 3, 0, 1, /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/, myT4WavDisplay.ino.hex
11:25:51.826 (loader): flash, block=35, bs=1024, auto=1
11:25:51.827 (loader):  gauge old value = 35
11:25:51.827 (loader): flash, block=36, bs=1024, auto=1
11:25:51.828 (loader):  gauge old value = 36
11:25:51.829 (loader): flash, block=37, bs=1024, auto=1
11:25:51.830 (loader):  gauge old value = 37
11:25:51.830 (loader): flash, block=38, bs=1024, auto=1
11:25:51.831 (loader):  gauge old value = 38
11:25:51.832 (loader): flash, block=39, bs=1024, auto=1
11:25:51.833 (loader):  gauge old value = 39
11:25:51.833 (loader): flash, block=40, bs=1024, auto=1
11:25:51.835 (loader):  gauge old value = 40
11:25:51.835 (loader): flash, block=41, bs=1024, auto=1
11:25:51.836 (loader):  gauge old value = 41
11:25:51.837 (loader): flash, block=42, bs=1024, auto=1
11:25:51.838 (loader):  gauge old value = 42
11:25:51.838 (loader): flash, block=43, bs=1024, auto=1
11:25:51.839 (loader):  gauge old value = 43
11:25:51.840 (loader): flash, block=44, bs=1024, auto=1
11:25:51.841 (loader):  gauge old value = 44
11:25:51.841 (loader): flash, block=45, bs=1024, auto=1
11:25:51.842 (loader):  gauge old value = 45
11:25:51.843 (loader): flash, block=46, bs=1024, auto=1
11:25:51.844 (loader):  gauge old value = 46
11:25:51.844 (loader): flash, block=47, bs=1024, auto=1
11:25:51.845 (loader):  gauge old value = 47
11:25:51.846 (loader): flash, block=48, bs=1024, auto=1
11:25:51.847 (loader):  gauge old value = 48
11:25:51.847 (loader): flash, block=49, bs=1024, auto=1
11:25:51.849 (loader):  gauge old value = 49
11:25:51.849 (loader): flash, block=50, bs=1024, auto=1
11:25:51.850 (loader):  gauge old value = 50
11:25:51.850 (loader): flash, block=51, bs=1024, auto=1
11:25:51.852 (loader):  gauge old value = 51
11:25:51.855 (loader): sending reboot
11:25:51.855 (loader): begin wait_until_offline
11:25:51.855 (loader): HID/macos: status: ok
11:25:51.886 (ports 2): HID remove callback
11:25:51.886 (ports 2): HID add callback, vid=16c0, pid=0478, ver=0105, loc=14340000
11:25:51.887 (ports 2): USB device remove callback
11:25:51.887 (ports 2): remove, loc=14340000
11:25:51.887 (ports 2): usb_remove: usb:14340000
11:25:51.887 (ports 2): del device: location=14340000
11:25:51.906 (loader): HID/macos: detach callback: is currently open device
11:25:51.907 (loader): offline, waited 1
11:25:51.907 (loader): end operation, total time = 0.330 seconds
11:25:51.908 (loader): set background IMG_REBOOT_OK
11:25:51.909 (loader): redraw timer set, image 14 to show for 1200 ms
11:25:51.909 (loader): remote cmd from 22: "status"
11:25:51.914 (loader): HID/macos: number of devices found = 0
11:25:51.915 (loader): HID/macos: no devices found (empty set)
11:25:51.915 (reboot 7): Status: 1, 1, 0, 3, 0, 0, /var/folders/b9/m7vp5hr925n_3r73_y07979w0000gn/T/arduino_build_472312/, myT4WavDisplay.ino.hex
11:25:51.915 (reboot 7): status read, retry 12
11:25:51.915 (reboot 7): Success
11:25:51.915 (reboot 7): Disconnect
11:25:51.928 (loader): remote connection 22 closed
11:25:53.109 (loader): redraw, image 9
11:26:14.668 (loader): Verbose Info event
 
Last edited:
At message #47 I said 1.8.9 works with 1.48b1. That not quit a correct statement. The 1.8.9 used 1.47 for it's initial TD installation. It works correctly with the 1.48b1 TD not necessarily the 1.48b1 installer.
 
I have narrowed down a T4 crash with Arduino1.8.10 TD1.48b1 a little more. After re-installing Arduino1.8.10 and TD1.48b1 the issues I was having in many programs went away (as should be expected if the TD install was faulty). However the program in message #40 above still crashes. That program calls many libraries so is hard to debug (if you can call it that with no debugger).

SD, SPI, and Audio examples from the examples now all work.(as in Arduino 1.8.9-TD1.47)

In the ILI9341_t3 examples folder there is a problem. graphicstest.ino works in 1.8.9 and 1.8.10 but demoSauce.ino only works in 1.8.9.

In graphicstest.ino I change TFT_DC to 5 from 9 and TFT_CS to 9 from 10 and it works great.

In DemoSauce.ino the same changes, no joy.

I'm still looking...
 
Status
Not open for further replies.
Back
Top