Jump to content
  • 0

Compile works once, then strange error when recompiling same code


PaulStoffregen

Question

I'm working on an improved Arduino Ethernet library.

Today I tried compiling it for a ChipKit UNO32.  It compiles correctly the first time, and I get this:

Sketch uses 59,048 bytes (46%) of program storage space. Maximum is 126,976 bytes.
Global variables use 6,668 bytes (40%) of dynamic memory, leaving 9,716 bytes for local variables. Maximum is 16,384 bytes.

But if I try to compile (the exact same code) again, I get this error:

panic: runtime error: index out of range

goroutine 1 [running]:
arduino.cc/builder.findIncludesUntilDone(0xc208020e00, 0xc208159260, 0x59f0c0, 0xc2080d23c0, 0xc20823cd0a, 0x7, 0x0, 0x0)
	/home/jenkins/jenkins/jobs/arduino-builder-linux64/workspace/src/arduino.cc/builder/container_find_includes.go:321 +0xc06
arduino.cc/builder.(*ContainerFindIncludes).Run(0x6c5060, 0xc208020e00, 0x0, 0x0)
	/home/jenkins/jenkins/jobs/arduino-builder-linux64/workspace/src/arduino.cc/builder/container_find_includes.go:149 +0x75d
arduino.cc/builder.runCommands(0xc208020e00, 0xc20806fa98, 0x22, 0x22, 0x1, 0x0, 0x0)
	/home/jenkins/jenkins/jobs/arduino-builder-linux64/workspace/src/arduino.cc/builder/builder.go:189 +0x139
arduino.cc/builder.(*Builder).Run(0xc20806fce0, 0xc208020e00, 0x0, 0x0)
	/home/jenkins/jenkins/jobs/arduino-builder-linux64/workspace/src/arduino.cc/builder/builder.go:124 +0x1227
arduino.cc/builder.RunBuilder(0xc208020e00, 0x0, 0x0)
	/home/jenkins/jenkins/jobs/arduino-builder-linux64/workspace/src/arduino.cc/builder/builder.go:220 +0x49
main.main()
	/home/jenkins/jenkins/jobs/arduino-builder-linux64/workspace/src/arduino.cc/arduino-builder/main.go:316 +0x171b
/home/paul/teensy/arduino-1.6.13/arduino-builder returned 2
Error compiling for board chipKIT UNO32.

I'm using Arduino 1.6.13 with ChipKit version 1.3.1 installed from the Boards Manager.

This is the code I'm compiling, using the WebClient example:

https://github.com/PaulStoffregen/Ethernet

 

Link to comment
Share on other sites

13 answers to this question

Recommended Posts

Hi Paul,

What OS and version are you running? Are you using the Arduino Wiznet Ethernet shield? What verion ot the ethernet library are you using? I uploaded the sketch to the chipkit uno32 on both arduino 1.6.12 and 1.6.13 multiple times with out issue. I upgraded the ethernet library to the newest version and was able to upload the sketch without issue still.  

cheers,

Jon

Link to comment
Share on other sites

1 hour ago, jpeyron said:

What OS and version are you running?

Ubuntu 14.04, 64 bit, with Arduino 1.6.13.

 

1 hour ago, jpeyron said:

Are you using the Arduino Wiznet Ethernet shield?


I have a few different shields here, a genuine Arduino Ethernet R3, a clone Arduino Ethernet R2, and a Seeed Studio W5000 Ethernet shield.

But this problem is a compiler error.  No actual hardware (other than a PC) is needed to reproduce the error.  Just click Verify twice.

 

1 hour ago, jpeyron said:

What verion ot the ethernet library are you using?

I'm using the one linked from my message.  This:

https://github.com/PaulStoffregen/Ethernet

This copy my own work to greatly optimize the Arduino Ethernet library.  It's likely to someday become the official Arduino version....

 

1 hour ago, jpeyron said:

 

I uploaded the sketch to the chipkit uno32 on both arduino 1.6.12 and 1.6.13 multiple times with out issue. I upgraded the ethernet library to the newest version and was able to upload the sketch without issue still.

You need to use the Ethernet library I linked above.  Not Arduino's copy, not the one that comes with the ChipKit core lib.  Use this one:

https://github.com/PaulStoffregen/Ethernet

This almost certainly is some subtle bug in the toolchain, perhaps Arduino's builder?  If you want to reproduce it, use that code.  If you look at the readme on that page and scroll down, you can see a list of all the boards I've already tested.  A few others still don't work with the optimized code, but only ChipKit has this strange compile error.

 

 

 

1 hour ago, jpeyron said:

 

cheers,

Jon

 

 

 

 

Link to comment
Share on other sites

Hi PaulStoffregen,

Those of us here on the Digilent Forum haven't developed the backend code for the chipKIT community nor the Arduino community, so unfortunately we won't be able to offer much help for this sort of compilation error.

Thanks,
JColvin

Link to comment
Share on other sites

@PaulStoffregen,

Perhaps post the toolchain error to the arduino compiler group?

But, I'd like to try and get you past the compiler bug if I can.  I've used the following approach many times to get past goofy compiler errors (like crashes), and ... it has helped me.  Specifically, may I recommend that you try the following:

Using #ifdef and #define, comment out many portions of your code.  If the compiler works, uncomment half of those sections.  If it doesn't, comment more of what wasn't commented before.  Basically, bisect your code until you find the line (or lines) causing the problem.  Since the problem seems to be associated with includes, you might wish to #define away the inclusion of some (or all) of your include files.

If the result is that the compiler gives you errors in your code, that might tell you that 1) the compiler is working, or 2) if  you aren't sure, that you need to be a little more carefully selective with your #ifdefs.

I know that at times in the past, I have commented out all of main() from the { to the }.  I've found the approach very helpful.

Even better, when you are done, you should be able to create a small and simple test case that you can send to the Arduino team, so they can focus their efforts.

Sound useful?

Dan

Link to comment
Share on other sites

I'll take another look and see if I can narrow this down a bit.

But my purpose here is mainly to report a toolchain bug.  This isn't about solving a problem with my own personal project.  I am a regular contributor to Arduino.  If you look at Arduino's release notes, you'll see my name many times.  I have a long history of Arduino contributions, and this is latest work for the benefit of all Arduino users....

I'm currently working on major improvements to the Arduino Ethernet library.  Odds are good some of all of my recent work on this improved Ethernet library will become Arduino's official library.  If you read the Arduino developers mail list, you'll see we're discussing this now, and Cristian (Arduino's technical lead) is interested to merge this sort of improvement.

I have compiled this code for every widely used Arduino compatible board, as you can see in the readme on my github page.  Only ChipKit has this build error.

ChipKit already has a fork of Ethernet, so perhaps this won't matter for ChipKit users (but support for the newer ethernet chip and performance improvement will be pretty compelling reasons to update ChipKit's fork).  Or maybe whoever maintains the ChipKit code will work on this after Arduino publishes the code.  But it seems the polite and respectful thing to at least try to bring it to someone's attention here, if there's any interest in dealing with this problem before it affects many users.

Something is definitely wrong with ChipKit's compile process.  I've tried to provide you with a reproducible test case.

Link to comment
Share on other sites

Correct, this error is unique to ChipKit.

I have tested with these boards:

Teensy 3.6      
Teensy 3.2      
Teensy LC       
Teensy 2.0      
Arduino Uno R3  
Arduino Due     
Arduino Zero    
Arduino 101     
ChipKit Uno32   
Wemos D1 (ESP8266)      
Mega 2560 (clone) 

Link to comment
Share on other sites

Hi PaulStoffregen,

I tried out your library from your github and didn't get any of the compilation errors you were mentioning. I wasn't sure how to specify path file within the .ino to make sure it linked to your library rather than the defaults, so I ended up deleting the Ethernet library folders from both the chipKIT core library set in AppData and the Arduino Ethernet library folder from the Program Files on my Windows 10 machine (since I figured I could always uninstall and re-download if something went drastically wrong). I am using the Arduino 1.6.13 ide and the chipKIT boards 1.3.1 version and compiled the WebClient example multiple times in a row for the random chipKIT boards I tested (Uno32, uC32, and WF32). I also tried the PachubeClientString example as a "random" other test, but with the same success as the WebClient example.

I guess as a random side note, when I was on the chipKIT board 1.1.0 version, I always got a complaint about a yield function on all of the compilations, but I'm not seeing that anymore.

Probably isn't helpful considering I didn't run into the error you're mentioning even though you are, but I figured I would share anyway.

Thank you,

Natsu

Link to comment
Share on other sites

Hi,

I'm having the same problem. I'm using Arduino 1.6.13 with ChipKIT 1.3.1 installed.

I'm able to compile once, and get this message with verbose output:











/Applications/Arduino.app/Contents/Java/arduino-builder -dump-prefs -logger=machine -hardware /Applications/Arduino.app/Contents/Java/hardware -hardware /Applications/Arduino.app/Contents/Java/portable/packages -tools /Applications/Arduino.app/Contents/Java/tools-builder -tools /Applications/Arduino.app/Contents/Java/hardware/tools/avr -tools /Applications/Arduino.app/Contents/Java/portable/packages -built-in-libraries /Applications/Arduino.app/Contents/Java/libraries -libraries /Users/biomurph/Documents/Arduino/libraries -fqbn=chipKIT:pic32:openbci -ide-version=10613 -build-path /var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801 -warnings=none -prefs=build.warn_data_percentage=75 -prefs=runtime.tools.drivers-windows.path=/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/drivers-windows/v2 -prefs=runtime.tools.pic32-tools.path=/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc -prefs=runtime.tools.pic32prog.path=/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32prog/v2.1.24 -verbose /Users/biomurph/Documents/Arduino/libraries/OpenBCI_32bit_Library/examples/DefaultBoard/DefaultBoard.ino
/Applications/Arduino.app/Contents/Java/arduino-builder -compile -logger=machine -hardware /Applications/Arduino.app/Contents/Java/hardware -hardware /Applications/Arduino.app/Contents/Java/portable/packages -tools /Applications/Arduino.app/Contents/Java/tools-builder -tools /Applications/Arduino.app/Contents/Java/hardware/tools/avr -tools /Applications/Arduino.app/Contents/Java/portable/packages -built-in-libraries /Applications/Arduino.app/Contents/Java/libraries -libraries /Users/biomurph/Documents/Arduino/libraries -fqbn=chipKIT:pic32:openbci -ide-version=10613 -build-path /var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801 -warnings=none -prefs=build.warn_data_percentage=75 -prefs=runtime.tools.drivers-windows.path=/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/drivers-windows/v2 -prefs=runtime.tools.pic32-tools.path=/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc -prefs=runtime.tools.pic32prog.path=/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32prog/v2.1.24 -verbose /Users/biomurph/Documents/Arduino/libraries/OpenBCI_32bit_Library/examples/DefaultBoard/DefaultBoard.ino
Using board 'openbci' from platform in folder: /Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1
Using core 'pic32' from platform in folder: /Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1
Detecting libraries used...
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-g++" -c -g -O2 -w  -DARDUINO_ARCH_PIC32 -mno-smart-io -ffunction-sections -fdata-sections  -mdebugger -Wcast-align -fno-short-double -ftoplevel-reorder -MMD -fno-exceptions -w -x c++ -E -CC -mprocessor=32MX250F128B -DF_CPU=40000000L -DARDUINO=10613 -D_BOARD_DP32_ -DARDUINO_ARCH_PIC32 -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino -G1024 -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch/DefaultBoard.ino.cpp" -o "/dev/null"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-g++" -c -g -O2 -w  -DARDUINO_ARCH_PIC32 -mno-smart-io -ffunction-sections -fdata-sections  -mdebugger -Wcast-align -fno-short-double -ftoplevel-reorder -MMD -fno-exceptions -w -x c++ -E -CC -mprocessor=32MX250F128B -DF_CPU=40000000L -DARDUINO=10613 -D_BOARD_DP32_ -DARDUINO_ARCH_PIC32 -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino -G1024 -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/DSPI" "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch/DefaultBoard.ino.cpp" -o "/dev/null"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-g++" -c -g -O2 -w  -DARDUINO_ARCH_PIC32 -mno-smart-io -ffunction-sections -fdata-sections  -mdebugger -Wcast-align -fno-short-double -ftoplevel-reorder -MMD -fno-exceptions -w -x c++ -E -CC -mprocessor=32MX250F128B -DF_CPU=40000000L -DARDUINO=10613 -D_BOARD_DP32_ -DARDUINO_ARCH_PIC32 -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino -G1024 -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/DSPI" "-I/Users/biomurph/Documents/Arduino/libraries/OBCI32_SD" "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch/DefaultBoard.ino.cpp" -o "/dev/null"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-g++" -c -g -O2 -w  -DARDUINO_ARCH_PIC32 -mno-smart-io -ffunction-sections -fdata-sections  -mdebugger -Wcast-align -fno-short-double -ftoplevel-reorder -MMD -fno-exceptions -w -x c++ -E -CC -mprocessor=32MX250F128B -DF_CPU=40000000L -DARDUINO=10613 -D_BOARD_DP32_ -DARDUINO_ARCH_PIC32 -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino -G1024 -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/DSPI" "-I/Users/biomurph/Documents/Arduino/libraries/OBCI32_SD" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/EEPROM" "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch/DefaultBoard.ino.cpp" -o "/dev/null"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-g++" -c -g -O2 -w  -DARDUINO_ARCH_PIC32 -mno-smart-io -ffunction-sections -fdata-sections  -mdebugger -Wcast-align -fno-short-double -ftoplevel-reorder -MMD -fno-exceptions -w -x c++ -E -CC -mprocessor=32MX250F128B -DF_CPU=40000000L -DARDUINO=10613 -D_BOARD_DP32_ -DARDUINO_ARCH_PIC32 -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino -G1024 -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/DSPI" "-I/Users/biomurph/Documents/Arduino/libraries/OBCI32_SD" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/EEPROM" "-I/Users/biomurph/Documents/Arduino/libraries/OpenBCI_32bit_Library" "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch/DefaultBoard.ino.cpp" -o "/dev/null"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-g++" -c -g -O2 -w  -DARDUINO_ARCH_PIC32 -mno-smart-io -ffunction-sections -fdata-sections  -mdebugger -Wcast-align -fno-short-double -ftoplevel-reorder -MMD -fno-exceptions -w -x c++ -E -CC -mprocessor=32MX250F128B -DF_CPU=40000000L -DARDUINO=10613 -D_BOARD_DP32_ -DARDUINO_ARCH_PIC32 -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino -G1024 -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/DSPI" "-I/Users/biomurph/Documents/Arduino/libraries/OBCI32_SD" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/EEPROM" "-I/Users/biomurph/Documents/Arduino/libraries/OpenBCI_32bit_Library" "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch/DefaultBoard.ino.cpp" -o "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/preproc/ctags_target_for_gcc_minus_e.cpp"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-g++" -c -g -O2 -w  -DARDUINO_ARCH_PIC32 -mno-smart-io -ffunction-sections -fdata-sections  -mdebugger -Wcast-align -fno-short-double -ftoplevel-reorder -MMD -fno-exceptions -w -x c++ -E -CC -mprocessor=32MX250F128B -DF_CPU=40000000L -DARDUINO=10613 -D_BOARD_DP32_ -DARDUINO_ARCH_PIC32 -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino -G1024 -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/DSPI" "-I/Users/biomurph/Documents/Arduino/libraries/OBCI32_SD" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/EEPROM" "-I/Users/biomurph/Documents/Arduino/libraries/OpenBCI_32bit_Library" "/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/DSPI/DSPI.cpp" -o "/dev/null"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-g++" -c -g -O2 -w  -DARDUINO_ARCH_PIC32 -mno-smart-io -ffunction-sections -fdata-sections  -mdebugger -Wcast-align -fno-short-double -ftoplevel-reorder -MMD -fno-exceptions -w -x c++ -E -CC -mprocessor=32MX250F128B -DF_CPU=40000000L -DARDUINO=10613 -D_BOARD_DP32_ -DARDUINO_ARCH_PIC32 -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino -G1024 -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/DSPI" "-I/Users/biomurph/Documents/Arduino/libraries/OBCI32_SD" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/EEPROM" "-I/Users/biomurph/Documents/Arduino/libraries/OpenBCI_32bit_Library" "/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/DSPI/DSPI.cpp" -o "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/preproc/ctags_target_for_gcc_minus_e.cpp"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-g++" -c -g -O2 -w  -DARDUINO_ARCH_PIC32 -mno-smart-io -ffunction-sections -fdata-sections  -mdebugger -Wcast-align -fno-short-double -ftoplevel-reorder -MMD -fno-exceptions -w -x c++ -E -CC -mprocessor=32MX250F128B -DF_CPU=40000000L -DARDUINO=10613 -D_BOARD_DP32_ -DARDUINO_ARCH_PIC32 -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino -G1024 -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/DSPI" "-I/Users/biomurph/Documents/Arduino/libraries/OBCI32_SD" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/EEPROM" "-I/Users/biomurph/Documents/Arduino/libraries/OpenBCI_32bit_Library" "-I/Users/biomurph/Documents/Arduino/libraries/OBCI32_SD/utility" "/Users/biomurph/Documents/Arduino/libraries/OBCI32_SD/File.cpp" -o "/dev/null"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-g++" -c -g -O2 -w  -DARDUINO_ARCH_PIC32 -mno-smart-io -ffunction-sections -fdata-sections  -mdebugger -Wcast-align -fno-short-double -ftoplevel-reorder -MMD -fno-exceptions -w -x c++ -E -CC -mprocessor=32MX250F128B -DF_CPU=40000000L -DARDUINO=10613 -D_BOARD_DP32_ -DARDUINO_ARCH_PIC32 -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino -G1024 -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/DSPI" "-I/Users/biomurph/Documents/Arduino/libraries/OBCI32_SD" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/EEPROM" "-I/Users/biomurph/Documents/Arduino/libraries/OpenBCI_32bit_Library" "-I/Users/biomurph/Documents/Arduino/libraries/OBCI32_SD/utility" "/Users/biomurph/Documents/Arduino/libraries/OBCI32_SD/File.cpp" -o "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/preproc/ctags_target_for_gcc_minus_e.cpp"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-g++" -c -g -O2 -w  -DARDUINO_ARCH_PIC32 -mno-smart-io -ffunction-sections -fdata-sections  -mdebugger -Wcast-align -fno-short-double -ftoplevel-reorder -MMD -fno-exceptions -w -x c++ -E -CC -mprocessor=32MX250F128B -DF_CPU=40000000L -DARDUINO=10613 -D_BOARD_DP32_ -DARDUINO_ARCH_PIC32 -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino -G1024 -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/DSPI" "-I/Users/biomurph/Documents/Arduino/libraries/OBCI32_SD" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/EEPROM" "-I/Users/biomurph/Documents/Arduino/libraries/OpenBCI_32bit_Library" "-I/Users/biomurph/Documents/Arduino/libraries/OBCI32_SD/utility" "/Users/biomurph/Documents/Arduino/libraries/OBCI32_SD/OBCI32_SD.cpp" -o "/dev/null"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-g++" -c -g -O2 -w  -DARDUINO_ARCH_PIC32 -mno-smart-io -ffunction-sections -fdata-sections  -mdebugger -Wcast-align -fno-short-double -ftoplevel-reorder -MMD -fno-exceptions -w -x c++ -E -CC -mprocessor=32MX250F128B -DF_CPU=40000000L -DARDUINO=10613 -D_BOARD_DP32_ -DARDUINO_ARCH_PIC32 -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino -G1024 -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/DSPI" "-I/Users/biomurph/Documents/Arduino/libraries/OBCI32_SD" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/EEPROM" "-I/Users/biomurph/Documents/Arduino/libraries/OpenBCI_32bit_Library" "-I/Users/biomurph/Documents/Arduino/libraries/OBCI32_SD/utility" "/Users/biomurph/Documents/Arduino/libraries/OBCI32_SD/OBCI32_SD.cpp" -o "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/preproc/ctags_target_for_gcc_minus_e.cpp"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-g++" -c -g -O2 -w  -DARDUINO_ARCH_PIC32 -mno-smart-io -ffunction-sections -fdata-sections  -mdebugger -Wcast-align -fno-short-double -ftoplevel-reorder -MMD -fno-exceptions -w -x c++ -E -CC -mprocessor=32MX250F128B -DF_CPU=40000000L -DARDUINO=10613 -D_BOARD_DP32_ -DARDUINO_ARCH_PIC32 -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino -G1024 -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/DSPI" "-I/Users/biomurph/Documents/Arduino/libraries/OBCI32_SD" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/EEPROM" "-I/Users/biomurph/Documents/Arduino/libraries/OpenBCI_32bit_Library" "-I/Users/biomurph/Documents/Arduino/libraries/OBCI32_SD/utility" "/Users/biomurph/Documents/Arduino/libraries/OBCI32_SD/utility/Sd2Card.cpp" -o "/dev/null"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-g++" -c -g -O2 -w  -DARDUINO_ARCH_PIC32 -mno-smart-io -ffunction-sections -fdata-sections  -mdebugger -Wcast-align -fno-short-double -ftoplevel-reorder -MMD -fno-exceptions -w -x c++ -E -CC -mprocessor=32MX250F128B -DF_CPU=40000000L -DARDUINO=10613 -D_BOARD_DP32_ -DARDUINO_ARCH_PIC32 -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino -G1024 -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/DSPI" "-I/Users/biomurph/Documents/Arduino/libraries/OBCI32_SD" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/EEPROM" "-I/Users/biomurph/Documents/Arduino/libraries/OpenBCI_32bit_Library" "-I/Users/biomurph/Documents/Arduino/libraries/OBCI32_SD/utility" "/Users/biomurph/Documents/Arduino/libraries/OBCI32_SD/utility/Sd2Card.cpp" -o "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/preproc/ctags_target_for_gcc_minus_e.cpp"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-g++" -c -g -O2 -w  -DARDUINO_ARCH_PIC32 -mno-smart-io -ffunction-sections -fdata-sections  -mdebugger -Wcast-align -fno-short-double -ftoplevel-reorder -MMD -fno-exceptions -w -x c++ -E -CC -mprocessor=32MX250F128B -DF_CPU=40000000L -DARDUINO=10613 -D_BOARD_DP32_ -DARDUINO_ARCH_PIC32 -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino -G1024 -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/DSPI" "-I/Users/biomurph/Documents/Arduino/libraries/OBCI32_SD" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/EEPROM" "-I/Users/biomurph/Documents/Arduino/libraries/OpenBCI_32bit_Library" "-I/Users/biomurph/Documents/Arduino/libraries/OBCI32_SD/utility" "/Users/biomurph/Documents/Arduino/libraries/OBCI32_SD/utility/SdFile.cpp" -o "/dev/null"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-g++" -c -g -O2 -w  -DARDUINO_ARCH_PIC32 -mno-smart-io -ffunction-sections -fdata-sections  -mdebugger -Wcast-align -fno-short-double -ftoplevel-reorder -MMD -fno-exceptions -w -x c++ -E -CC -mprocessor=32MX250F128B -DF_CPU=40000000L -DARDUINO=10613 -D_BOARD_DP32_ -DARDUINO_ARCH_PIC32 -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino -G1024 -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/DSPI" "-I/Users/biomurph/Documents/Arduino/libraries/OBCI32_SD" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/EEPROM" "-I/Users/biomurph/Documents/Arduino/libraries/OpenBCI_32bit_Library" "-I/Users/biomurph/Documents/Arduino/libraries/OBCI32_SD/utility" "/Users/biomurph/Documents/Arduino/libraries/OBCI32_SD/utility/SdFile.cpp" -o "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/preproc/ctags_target_for_gcc_minus_e.cpp"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-g++" -c -g -O2 -w  -DARDUINO_ARCH_PIC32 -mno-smart-io -ffunction-sections -fdata-sections  -mdebugger -Wcast-align -fno-short-double -ftoplevel-reorder -MMD -fno-exceptions -w -x c++ -E -CC -mprocessor=32MX250F128B -DF_CPU=40000000L -DARDUINO=10613 -D_BOARD_DP32_ -DARDUINO_ARCH_PIC32 -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino -G1024 -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/DSPI" "-I/Users/biomurph/Documents/Arduino/libraries/OBCI32_SD" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/EEPROM" "-I/Users/biomurph/Documents/Arduino/libraries/OpenBCI_32bit_Library" "-I/Users/biomurph/Documents/Arduino/libraries/OBCI32_SD/utility" "/Users/biomurph/Documents/Arduino/libraries/OBCI32_SD/utility/SdVolume.cpp" -o "/dev/null"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-g++" -c -g -O2 -w  -DARDUINO_ARCH_PIC32 -mno-smart-io -ffunction-sections -fdata-sections  -mdebugger -Wcast-align -fno-short-double -ftoplevel-reorder -MMD -fno-exceptions -w -x c++ -E -CC -mprocessor=32MX250F128B -DF_CPU=40000000L -DARDUINO=10613 -D_BOARD_DP32_ -DARDUINO_ARCH_PIC32 -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino -G1024 -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/DSPI" "-I/Users/biomurph/Documents/Arduino/libraries/OBCI32_SD" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/EEPROM" "-I/Users/biomurph/Documents/Arduino/libraries/OpenBCI_32bit_Library" "-I/Users/biomurph/Documents/Arduino/libraries/OBCI32_SD/utility" "/Users/biomurph/Documents/Arduino/libraries/OBCI32_SD/utility/SdVolume.cpp" -o "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/preproc/ctags_target_for_gcc_minus_e.cpp"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-g++" -c -g -O2 -w  -DARDUINO_ARCH_PIC32 -mno-smart-io -ffunction-sections -fdata-sections  -mdebugger -Wcast-align -fno-short-double -ftoplevel-reorder -MMD -fno-exceptions -w -x c++ -E -CC -mprocessor=32MX250F128B -DF_CPU=40000000L -DARDUINO=10613 -D_BOARD_DP32_ -DARDUINO_ARCH_PIC32 -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino -G1024 -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/DSPI" "-I/Users/biomurph/Documents/Arduino/libraries/OBCI32_SD" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/EEPROM" "-I/Users/biomurph/Documents/Arduino/libraries/OpenBCI_32bit_Library" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/EEPROM/utility" "/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/EEPROM/EEPROM.cpp" -o "/dev/null"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-g++" -c -g -O2 -w  -DARDUINO_ARCH_PIC32 -mno-smart-io -ffunction-sections -fdata-sections  -mdebugger -Wcast-align -fno-short-double -ftoplevel-reorder -MMD -fno-exceptions -w -x c++ -E -CC -mprocessor=32MX250F128B -DF_CPU=40000000L -DARDUINO=10613 -D_BOARD_DP32_ -DARDUINO_ARCH_PIC32 -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino -G1024 -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/DSPI" "-I/Users/biomurph/Documents/Arduino/libraries/OBCI32_SD" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/EEPROM" "-I/Users/biomurph/Documents/Arduino/libraries/OpenBCI_32bit_Library" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/EEPROM/utility" "/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/EEPROM/EEPROM.cpp" -o "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/preproc/ctags_target_for_gcc_minus_e.cpp"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-g++" -c -g -O2 -w  -DARDUINO_ARCH_PIC32 -mno-smart-io -ffunction-sections -fdata-sections  -mdebugger -Wcast-align -fno-short-double -ftoplevel-reorder -MMD -fno-exceptions -w -x c++ -E -CC -mprocessor=32MX250F128B -DF_CPU=40000000L -DARDUINO=10613 -D_BOARD_DP32_ -DARDUINO_ARCH_PIC32 -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino -G1024 -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/DSPI" "-I/Users/biomurph/Documents/Arduino/libraries/OBCI32_SD" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/EEPROM" "-I/Users/biomurph/Documents/Arduino/libraries/OpenBCI_32bit_Library" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/EEPROM/utility" "/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/EEPROM/utility/Deeprom.c" -o "/dev/null"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-g++" -c -g -O2 -w  -DARDUINO_ARCH_PIC32 -mno-smart-io -ffunction-sections -fdata-sections  -mdebugger -Wcast-align -fno-short-double -ftoplevel-reorder -MMD -fno-exceptions -w -x c++ -E -CC -mprocessor=32MX250F128B -DF_CPU=40000000L -DARDUINO=10613 -D_BOARD_DP32_ -DARDUINO_ARCH_PIC32 -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino -G1024 -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/DSPI" "-I/Users/biomurph/Documents/Arduino/libraries/OBCI32_SD" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/EEPROM" "-I/Users/biomurph/Documents/Arduino/libraries/OpenBCI_32bit_Library" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/EEPROM/utility" "/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/EEPROM/utility/Deeprom.c" -o "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/preproc/ctags_target_for_gcc_minus_e.cpp"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-g++" -c -g -O2 -w  -DARDUINO_ARCH_PIC32 -mno-smart-io -ffunction-sections -fdata-sections  -mdebugger -Wcast-align -fno-short-double -ftoplevel-reorder -MMD -fno-exceptions -w -x c++ -E -CC -mprocessor=32MX250F128B -DF_CPU=40000000L -DARDUINO=10613 -D_BOARD_DP32_ -DARDUINO_ARCH_PIC32 -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino -G1024 -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/DSPI" "-I/Users/biomurph/Documents/Arduino/libraries/OBCI32_SD" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/EEPROM" "-I/Users/biomurph/Documents/Arduino/libraries/OpenBCI_32bit_Library" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/EEPROM/utility" "/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/EEPROM/utility/flash.c" -o "/dev/null"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-g++" -c -g -O2 -w  -DARDUINO_ARCH_PIC32 -mno-smart-io -ffunction-sections -fdata-sections  -mdebugger -Wcast-align -fno-short-double -ftoplevel-reorder -MMD -fno-exceptions -w -x c++ -E -CC -mprocessor=32MX250F128B -DF_CPU=40000000L -DARDUINO=10613 -D_BOARD_DP32_ -DARDUINO_ARCH_PIC32 -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino -G1024 -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/DSPI" "-I/Users/biomurph/Documents/Arduino/libraries/OBCI32_SD" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/EEPROM" "-I/Users/biomurph/Documents/Arduino/libraries/OpenBCI_32bit_Library" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/EEPROM/utility" "/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/EEPROM/utility/flash.c" -o "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/preproc/ctags_target_for_gcc_minus_e.cpp"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-g++" -c -g -O2 -w  -DARDUINO_ARCH_PIC32 -mno-smart-io -ffunction-sections -fdata-sections  -mdebugger -Wcast-align -fno-short-double -ftoplevel-reorder -MMD -fno-exceptions -w -x c++ -E -CC -mprocessor=32MX250F128B -DF_CPU=40000000L -DARDUINO=10613 -D_BOARD_DP32_ -DARDUINO_ARCH_PIC32 -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino -G1024 -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/DSPI" "-I/Users/biomurph/Documents/Arduino/libraries/OBCI32_SD" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/EEPROM" "-I/Users/biomurph/Documents/Arduino/libraries/OpenBCI_32bit_Library" "/Users/biomurph/Documents/Arduino/libraries/OpenBCI_32bit_Library/OpenBCI_32bit_Library.cpp" -o "/dev/null"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-g++" -c -g -O2 -w  -DARDUINO_ARCH_PIC32 -mno-smart-io -ffunction-sections -fdata-sections  -mdebugger -Wcast-align -fno-short-double -ftoplevel-reorder -MMD -fno-exceptions -w -x c++ -E -CC -mprocessor=32MX250F128B -DF_CPU=40000000L -DARDUINO=10613 -D_BOARD_DP32_ -DARDUINO_ARCH_PIC32 -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino -G1024 -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/DSPI" "-I/Users/biomurph/Documents/Arduino/libraries/OBCI32_SD" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/EEPROM" "-I/Users/biomurph/Documents/Arduino/libraries/OpenBCI_32bit_Library" "/Users/biomurph/Documents/Arduino/libraries/OpenBCI_32bit_Library/OpenBCI_32bit_Library.cpp" -o "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/preproc/ctags_target_for_gcc_minus_e.cpp"
Generating function prototypes...
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-g++" -c -g -O2 -w  -DARDUINO_ARCH_PIC32 -mno-smart-io -ffunction-sections -fdata-sections  -mdebugger -Wcast-align -fno-short-double -ftoplevel-reorder -MMD -fno-exceptions -w -x c++ -E -CC -mprocessor=32MX250F128B -DF_CPU=40000000L -DARDUINO=10613 -D_BOARD_DP32_ -DARDUINO_ARCH_PIC32 -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino -G1024 -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/DSPI" "-I/Users/biomurph/Documents/Arduino/libraries/OBCI32_SD" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/EEPROM" "-I/Users/biomurph/Documents/Arduino/libraries/OpenBCI_32bit_Library" "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch/DefaultBoard.ino.cpp" -o "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/preproc/ctags_target_for_gcc_minus_e.cpp"
"/Applications/Arduino.app/Contents/Java/tools-builder/ctags/5.8-arduino10/ctags" -u --language-force=c++ -f - --c++-kinds=svpf --fields=KSTtzns --line-directives "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/preproc/ctags_target_for_gcc_minus_e.cpp"
Compiling sketch...
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-g++"  -c -g -O2 -w  -DARDUINO_ARCH_PIC32 -mno-smart-io -ffunction-sections -fdata-sections  -mdebugger -Wcast-align -fno-short-double -ftoplevel-reorder -MMD -fno-exceptions -mprocessor=32MX250F128B -DF_CPU=40000000L  -DARDUINO=10613 -D_BOARD_DP32_ -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino "-G1024" -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/DSPI" "-I/Users/biomurph/Documents/Arduino/libraries/OBCI32_SD" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/EEPROM" "-I/Users/biomurph/Documents/Arduino/libraries/OpenBCI_32bit_Library" "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch/DefaultBoard.ino.cpp" -o "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch/DefaultBoard.ino.cpp.o"
Compiling libraries...
Compiling library "DSPI"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-g++"  -c -g -O2 -w  -DARDUINO_ARCH_PIC32 -mno-smart-io -ffunction-sections -fdata-sections  -mdebugger -Wcast-align -fno-short-double -ftoplevel-reorder -MMD -fno-exceptions -mprocessor=32MX250F128B -DF_CPU=40000000L  -DARDUINO=10613 -D_BOARD_DP32_ -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino "-G1024" -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/DSPI" "-I/Users/biomurph/Documents/Arduino/libraries/OBCI32_SD" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/EEPROM" "-I/Users/biomurph/Documents/Arduino/libraries/OpenBCI_32bit_Library" "/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/DSPI/DSPI.cpp" -o "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/libraries/DSPI/DSPI.cpp.o"
Compiling library "OBCI32_SD"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-g++"  -c -g -O2 -w  -DARDUINO_ARCH_PIC32 -mno-smart-io -ffunction-sections -fdata-sections  -mdebugger -Wcast-align -fno-short-double -ftoplevel-reorder -MMD -fno-exceptions -mprocessor=32MX250F128B -DF_CPU=40000000L  -DARDUINO=10613 -D_BOARD_DP32_ -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino "-G1024" -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/DSPI" "-I/Users/biomurph/Documents/Arduino/libraries/OBCI32_SD" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/EEPROM" "-I/Users/biomurph/Documents/Arduino/libraries/OpenBCI_32bit_Library" "-I/Users/biomurph/Documents/Arduino/libraries/OBCI32_SD/utility" "/Users/biomurph/Documents/Arduino/libraries/OBCI32_SD/File.cpp" -o "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/libraries/OBCI32_SD/File.cpp.o"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-g++"  -c -g -O2 -w  -DARDUINO_ARCH_PIC32 -mno-smart-io -ffunction-sections -fdata-sections  -mdebugger -Wcast-align -fno-short-double -ftoplevel-reorder -MMD -fno-exceptions -mprocessor=32MX250F128B -DF_CPU=40000000L  -DARDUINO=10613 -D_BOARD_DP32_ -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino "-G1024" -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/DSPI" "-I/Users/biomurph/Documents/Arduino/libraries/OBCI32_SD" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/EEPROM" "-I/Users/biomurph/Documents/Arduino/libraries/OpenBCI_32bit_Library" "-I/Users/biomurph/Documents/Arduino/libraries/OBCI32_SD/utility" "/Users/biomurph/Documents/Arduino/libraries/OBCI32_SD/OBCI32_SD.cpp" -o "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/libraries/OBCI32_SD/OBCI32_SD.cpp.o"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-g++"  -c -g -O2 -w  -DARDUINO_ARCH_PIC32 -mno-smart-io -ffunction-sections -fdata-sections  -mdebugger -Wcast-align -fno-short-double -ftoplevel-reorder -MMD -fno-exceptions -mprocessor=32MX250F128B -DF_CPU=40000000L  -DARDUINO=10613 -D_BOARD_DP32_ -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino "-G1024" -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/DSPI" "-I/Users/biomurph/Documents/Arduino/libraries/OBCI32_SD" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/EEPROM" "-I/Users/biomurph/Documents/Arduino/libraries/OpenBCI_32bit_Library" "-I/Users/biomurph/Documents/Arduino/libraries/OBCI32_SD/utility" "/Users/biomurph/Documents/Arduino/libraries/OBCI32_SD/utility/Sd2Card.cpp" -o "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/libraries/OBCI32_SD/utility/Sd2Card.cpp.o"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-g++"  -c -g -O2 -w  -DARDUINO_ARCH_PIC32 -mno-smart-io -ffunction-sections -fdata-sections  -mdebugger -Wcast-align -fno-short-double -ftoplevel-reorder -MMD -fno-exceptions -mprocessor=32MX250F128B -DF_CPU=40000000L  -DARDUINO=10613 -D_BOARD_DP32_ -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino "-G1024" -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/DSPI" "-I/Users/biomurph/Documents/Arduino/libraries/OBCI32_SD" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/EEPROM" "-I/Users/biomurph/Documents/Arduino/libraries/OpenBCI_32bit_Library" "-I/Users/biomurph/Documents/Arduino/libraries/OBCI32_SD/utility" "/Users/biomurph/Documents/Arduino/libraries/OBCI32_SD/utility/SdFile.cpp" -o "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/libraries/OBCI32_SD/utility/SdFile.cpp.o"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-g++"  -c -g -O2 -w  -DARDUINO_ARCH_PIC32 -mno-smart-io -ffunction-sections -fdata-sections  -mdebugger -Wcast-align -fno-short-double -ftoplevel-reorder -MMD -fno-exceptions -mprocessor=32MX250F128B -DF_CPU=40000000L  -DARDUINO=10613 -D_BOARD_DP32_ -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino "-G1024" -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/DSPI" "-I/Users/biomurph/Documents/Arduino/libraries/OBCI32_SD" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/EEPROM" "-I/Users/biomurph/Documents/Arduino/libraries/OpenBCI_32bit_Library" "-I/Users/biomurph/Documents/Arduino/libraries/OBCI32_SD/utility" "/Users/biomurph/Documents/Arduino/libraries/OBCI32_SD/utility/SdVolume.cpp" -o "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/libraries/OBCI32_SD/utility/SdVolume.cpp.o"
Compiling library "EEPROM"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-g++"  -c -g -O2 -w  -DARDUINO_ARCH_PIC32 -mno-smart-io -ffunction-sections -fdata-sections  -mdebugger -Wcast-align -fno-short-double -ftoplevel-reorder -MMD -fno-exceptions -mprocessor=32MX250F128B -DF_CPU=40000000L  -DARDUINO=10613 -D_BOARD_DP32_ -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino "-G1024" -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/DSPI" "-I/Users/biomurph/Documents/Arduino/libraries/OBCI32_SD" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/EEPROM" "-I/Users/biomurph/Documents/Arduino/libraries/OpenBCI_32bit_Library" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/EEPROM/utility" "/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/EEPROM/EEPROM.cpp" -o "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/libraries/EEPROM/EEPROM.cpp.o"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-gcc"  -c -g -O2 -w  -DARDUINO_ARCH_PIC32 -mno-smart-io -ffunction-sections -fdata-sections  -mdebugger -Wcast-align -fno-short-double -ftoplevel-reorder -MMD -mprocessor=32MX250F128B -DF_CPU=40000000L  -DARDUINO=10613 -D_BOARD_DP32_ -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino -G1024 -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/DSPI" "-I/Users/biomurph/Documents/Arduino/libraries/OBCI32_SD" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/EEPROM" "-I/Users/biomurph/Documents/Arduino/libraries/OpenBCI_32bit_Library" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/EEPROM/utility" "/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/EEPROM/utility/Deeprom.c" -o "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/libraries/EEPROM/utility/Deeprom.c.o"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-gcc"  -c -g -O2 -w  -DARDUINO_ARCH_PIC32 -mno-smart-io -ffunction-sections -fdata-sections  -mdebugger -Wcast-align -fno-short-double -ftoplevel-reorder -MMD -mprocessor=32MX250F128B -DF_CPU=40000000L  -DARDUINO=10613 -D_BOARD_DP32_ -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino -G1024 -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/DSPI" "-I/Users/biomurph/Documents/Arduino/libraries/OBCI32_SD" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/EEPROM" "-I/Users/biomurph/Documents/Arduino/libraries/OpenBCI_32bit_Library" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/EEPROM/utility" "/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/EEPROM/utility/flash.c" -o "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/libraries/EEPROM/utility/flash.c.o"
Compiling library "OpenBCI_32bit_Library"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-g++"  -c -g -O2 -w  -DARDUINO_ARCH_PIC32 -mno-smart-io -ffunction-sections -fdata-sections  -mdebugger -Wcast-align -fno-short-double -ftoplevel-reorder -MMD -fno-exceptions -mprocessor=32MX250F128B -DF_CPU=40000000L  -DARDUINO=10613 -D_BOARD_DP32_ -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino "-G1024" -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/DSPI" "-I/Users/biomurph/Documents/Arduino/libraries/OBCI32_SD" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/EEPROM" "-I/Users/biomurph/Documents/Arduino/libraries/OpenBCI_32bit_Library" "/Users/biomurph/Documents/Arduino/libraries/OpenBCI_32bit_Library/OpenBCI_32bit_Library.cpp" -o "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/libraries/OpenBCI_32bit_Library/OpenBCI_32bit_Library.cpp.o"
Compiling core...
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-gcc"  -c -g -O2 -w  -DARDUINO_ARCH_PIC32 -mno-smart-io -ffunction-sections -fdata-sections  -mdebugger -Wcast-align -fno-short-double -ftoplevel-reorder -MMD -mprocessor=32MX250F128B -DF_CPU=40000000L  -DARDUINO=10613 -D_BOARD_DP32_ -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino -G1024 -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI/Board_Data.c" -o "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/Board_Data.c.o"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-g++" -c -g1 -O2 -Wa,--gdwarf-2 -mprocessor=32MX250F128B -DF_CPU=40000000L  -DARDUINO=10613 -D_BOARD_DP32_ -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino "-G1024" -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32/cpp-startup.S" -o "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/cpp-startup.S.o"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-g++" -c -g1 -O2 -Wa,--gdwarf-2 -mprocessor=32MX250F128B -DF_CPU=40000000L  -DARDUINO=10613 -D_BOARD_DP32_ -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino "-G1024" -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32/crti.S" -o "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/crti.S.o"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-g++" -c -g1 -O2 -Wa,--gdwarf-2 -mprocessor=32MX250F128B -DF_CPU=40000000L  -DARDUINO=10613 -D_BOARD_DP32_ -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino "-G1024" -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32/crtn.S" -o "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/crtn.S.o"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-g++" -c -g1 -O2 -Wa,--gdwarf-2 -mprocessor=32MX250F128B -DF_CPU=40000000L  -DARDUINO=10613 -D_BOARD_DP32_ -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino "-G1024" -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32/pic32_software_reset.S" -o "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/pic32_software_reset.S.o"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-g++" -c -g1 -O2 -Wa,--gdwarf-2 -mprocessor=32MX250F128B -DF_CPU=40000000L  -DARDUINO=10613 -D_BOARD_DP32_ -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino "-G1024" -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32/vector_table.S" -o "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/vector_table.S.o"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-gcc"  -c -g -O2 -w  -DARDUINO_ARCH_PIC32 -mno-smart-io -ffunction-sections -fdata-sections  -mdebugger -Wcast-align -fno-short-double -ftoplevel-reorder -MMD -mprocessor=32MX250F128B -DF_CPU=40000000L  -DARDUINO=10613 -D_BOARD_DP32_ -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino -G1024 -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32/HardwareSerial_cdcacm.c" -o "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/HardwareSerial_cdcacm.c.o"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-gcc"  -c -g -O2 -w  -DARDUINO_ARCH_PIC32 -mno-smart-io -ffunction-sections -fdata-sections  -mdebugger -Wcast-align -fno-short-double -ftoplevel-reorder -MMD -mprocessor=32MX250F128B -DF_CPU=40000000L  -DARDUINO=10613 -D_BOARD_DP32_ -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino -G1024 -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32/HardwareSerial_usb.c" -o "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/HardwareSerial_usb.c.o"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-gcc"  -c -g -O2 -w  -DARDUINO_ARCH_PIC32 -mno-smart-io -ffunction-sections -fdata-sections  -mdebugger -Wcast-align -fno-short-double -ftoplevel-reorder -MMD -mprocessor=32MX250F128B -DF_CPU=40000000L  -DARDUINO=10613 -D_BOARD_DP32_ -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino -G1024 -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32/WInterrupts.c" -o "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/WInterrupts.c.o"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-gcc"  -c -g -O2 -w  -DARDUINO_ARCH_PIC32 -mno-smart-io -ffunction-sections -fdata-sections  -mdebugger -Wcast-align -fno-short-double -ftoplevel-reorder -MMD -mprocessor=32MX250F128B -DF_CPU=40000000L  -DARDUINO=10613 -D_BOARD_DP32_ -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino -G1024 -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32/WSystem.c" -o "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/WSystem.c.o"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-gcc"  -c -g -O2 -w  -DARDUINO_ARCH_PIC32 -mno-smart-io -ffunction-sections -fdata-sections  -mdebugger -Wcast-align -fno-short-double -ftoplevel-reorder -MMD -mprocessor=32MX250F128B -DF_CPU=40000000L  -DARDUINO=10613 -D_BOARD_DP32_ -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino -G1024 -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32/exceptions.c" -o "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/exceptions.c.o"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-gcc"  -c -g -O2 -w  -DARDUINO_ARCH_PIC32 -mno-smart-io -ffunction-sections -fdata-sections  -mdebugger -Wcast-align -fno-short-double -ftoplevel-reorder -MMD -mprocessor=32MX250F128B -DF_CPU=40000000L  -DARDUINO=10613 -D_BOARD_DP32_ -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino -G1024 -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32/pins_arduino.c" -o "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/pins_arduino.c.o"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-gcc"  -c -g -O2 -w  -DARDUINO_ARCH_PIC32 -mno-smart-io -ffunction-sections -fdata-sections  -mdebugger -Wcast-align -fno-short-double -ftoplevel-reorder -MMD -mprocessor=32MX250F128B -DF_CPU=40000000L  -DARDUINO=10613 -D_BOARD_DP32_ -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino -G1024 -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32/task_manager.c" -o "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/task_manager.c.o"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-gcc"  -c -g -O2 -w  -DARDUINO_ARCH_PIC32 -mno-smart-io -ffunction-sections -fdata-sections  -mdebugger -Wcast-align -fno-short-double -ftoplevel-reorder -MMD -mprocessor=32MX250F128B -DF_CPU=40000000L  -DARDUINO=10613 -D_BOARD_DP32_ -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino -G1024 -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32/wiring.c" -o "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/wiring.c.o"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-gcc"  -c -g -O2 -w  -DARDUINO_ARCH_PIC32 -mno-smart-io -ffunction-sections -fdata-sections  -mdebugger -Wcast-align -fno-short-double -ftoplevel-reorder -MMD -mprocessor=32MX250F128B -DF_CPU=40000000L  -DARDUINO=10613 -D_BOARD_DP32_ -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino -G1024 -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32/wiring_analog.c" -o "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/wiring_analog.c.o"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-gcc"  -c -g -O2 -w  -DARDUINO_ARCH_PIC32 -mno-smart-io -ffunction-sections -fdata-sections  -mdebugger -Wcast-align -fno-short-double -ftoplevel-reorder -MMD -mprocessor=32MX250F128B -DF_CPU=40000000L  -DARDUINO=10613 -D_BOARD_DP32_ -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino -G1024 -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32/wiring_digital.c" -o "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/wiring_digital.c.o"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-gcc"  -c -g -O2 -w  -DARDUINO_ARCH_PIC32 -mno-smart-io -ffunction-sections -fdata-sections  -mdebugger -Wcast-align -fno-short-double -ftoplevel-reorder -MMD -mprocessor=32MX250F128B -DF_CPU=40000000L  -DARDUINO=10613 -D_BOARD_DP32_ -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino -G1024 -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32/wiring_pulse.c" -o "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/wiring_pulse.c.o"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-gcc"  -c -g -O2 -w  -DARDUINO_ARCH_PIC32 -mno-smart-io -ffunction-sections -fdata-sections  -mdebugger -Wcast-align -fno-short-double -ftoplevel-reorder -MMD -mprocessor=32MX250F128B -DF_CPU=40000000L  -DARDUINO=10613 -D_BOARD_DP32_ -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino -G1024 -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32/wiring_shift.c" -o "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/wiring_shift.c.o"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-g++"  -c -g -O2 -w  -DARDUINO_ARCH_PIC32 -mno-smart-io -ffunction-sections -fdata-sections  -mdebugger -Wcast-align -fno-short-double -ftoplevel-reorder -MMD -fno-exceptions -mprocessor=32MX250F128B -DF_CPU=40000000L  -DARDUINO=10613 -D_BOARD_DP32_ -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino "-G1024" -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32/HardwareSerial.cpp" -o "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/HardwareSerial.cpp.o"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-g++"  -c -g -O2 -w  -DARDUINO_ARCH_PIC32 -mno-smart-io -ffunction-sections -fdata-sections  -mdebugger -Wcast-align -fno-short-double -ftoplevel-reorder -MMD -fno-exceptions -mprocessor=32MX250F128B -DF_CPU=40000000L  -DARDUINO=10613 -D_BOARD_DP32_ -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino "-G1024" -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32/IPAddress.cpp" -o "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/IPAddress.cpp.o"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-g++"  -c -g -O2 -w  -DARDUINO_ARCH_PIC32 -mno-smart-io -ffunction-sections -fdata-sections  -mdebugger -Wcast-align -fno-short-double -ftoplevel-reorder -MMD -fno-exceptions -mprocessor=32MX250F128B -DF_CPU=40000000L  -DARDUINO=10613 -D_BOARD_DP32_ -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino "-G1024" -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32/Print.cpp" -o "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/Print.cpp.o"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-g++"  -c -g -O2 -w  -DARDUINO_ARCH_PIC32 -mno-smart-io -ffunction-sections -fdata-sections  -mdebugger -Wcast-align -fno-short-double -ftoplevel-reorder -MMD -fno-exceptions -mprocessor=32MX250F128B -DF_CPU=40000000L  -DARDUINO=10613 -D_BOARD_DP32_ -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino "-G1024" -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32/Stream.cpp" -o "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/Stream.cpp.o"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-g++"  -c -g -O2 -w  -DARDUINO_ARCH_PIC32 -mno-smart-io -ffunction-sections -fdata-sections  -mdebugger -Wcast-align -fno-short-double -ftoplevel-reorder -MMD -fno-exceptions -mprocessor=32MX250F128B -DF_CPU=40000000L  -DARDUINO=10613 -D_BOARD_DP32_ -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino "-G1024" -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32/Tone.cpp" -o "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/Tone.cpp.o"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-g++"  -c -g -O2 -w  -DARDUINO_ARCH_PIC32 -mno-smart-io -ffunction-sections -fdata-sections  -mdebugger -Wcast-align -fno-short-double -ftoplevel-reorder -MMD -fno-exceptions -mprocessor=32MX250F128B -DF_CPU=40000000L  -DARDUINO=10613 -D_BOARD_DP32_ -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino "-G1024" -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32/WMath.cpp" -o "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/WMath.cpp.o"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-g++"  -c -g -O2 -w  -DARDUINO_ARCH_PIC32 -mno-smart-io -ffunction-sections -fdata-sections  -mdebugger -Wcast-align -fno-short-double -ftoplevel-reorder -MMD -fno-exceptions -mprocessor=32MX250F128B -DF_CPU=40000000L  -DARDUINO=10613 -D_BOARD_DP32_ -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino "-G1024" -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32/WString.cpp" -o "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/WString.cpp.o"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-g++"  -c -g -O2 -w  -DARDUINO_ARCH_PIC32 -mno-smart-io -ffunction-sections -fdata-sections  -mdebugger -Wcast-align -fno-short-double -ftoplevel-reorder -MMD -fno-exceptions -mprocessor=32MX250F128B -DF_CPU=40000000L  -DARDUINO=10613 -D_BOARD_DP32_ -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino "-G1024" -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32/doprnt.cpp" -o "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/doprnt.cpp.o"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-g++"  -c -g -O2 -w  -DARDUINO_ARCH_PIC32 -mno-smart-io -ffunction-sections -fdata-sections  -mdebugger -Wcast-align -fno-short-double -ftoplevel-reorder -MMD -fno-exceptions -mprocessor=32MX250F128B -DF_CPU=40000000L  -DARDUINO=10613 -D_BOARD_DP32_ -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino "-G1024" -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32/main.cpp" -o "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/main.cpp.o"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-ar"  rcs  "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/core.a"  "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/cpp-startup.S.o"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-ar"  rcs  "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/core.a"  "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/crti.S.o"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-ar"  rcs  "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/core.a"  "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/crtn.S.o"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-ar"  rcs  "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/core.a"  "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/pic32_software_reset.S.o"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-ar"  rcs  "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/core.a"  "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/vector_table.S.o"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-ar"  rcs  "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/core.a"  "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/HardwareSerial_cdcacm.c.o"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-ar"  rcs  "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/core.a"  "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/HardwareSerial_usb.c.o"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-ar"  rcs  "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/core.a"  "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/WInterrupts.c.o"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-ar"  rcs  "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/core.a"  "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/WSystem.c.o"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-ar"  rcs  "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/core.a"  "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/exceptions.c.o"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-ar"  rcs  "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/core.a"  "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/pins_arduino.c.o"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-ar"  rcs  "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/core.a"  "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/task_manager.c.o"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-ar"  rcs  "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/core.a"  "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/wiring.c.o"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-ar"  rcs  "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/core.a"  "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/wiring_analog.c.o"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-ar"  rcs  "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/core.a"  "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/wiring_digital.c.o"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-ar"  rcs  "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/core.a"  "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/wiring_pulse.c.o"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-ar"  rcs  "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/core.a"  "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/wiring_shift.c.o"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-ar"  rcs  "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/core.a"  "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/HardwareSerial.cpp.o"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-ar"  rcs  "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/core.a"  "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/IPAddress.cpp.o"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-ar"  rcs  "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/core.a"  "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/Print.cpp.o"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-ar"  rcs  "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/core.a"  "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/Stream.cpp.o"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-ar"  rcs  "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/core.a"  "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/Tone.cpp.o"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-ar"  rcs  "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/core.a"  "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/WMath.cpp.o"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-ar"  rcs  "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/core.a"  "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/WString.cpp.o"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-ar"  rcs  "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/core.a"  "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/doprnt.cpp.o"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-ar"  rcs  "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/core.a"  "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/main.cpp.o"
Linking everything together...
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-g++" -w -Os -Wl,--save-gld=/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch.ld,-Map=/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch.map,--gc-sections -mdebugger -mno-peripheral-libs -nostartfiles -mprocessor=32MX250F128B  -o "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/DefaultBoard.ino.elf" "/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32/cpp-startup.S" "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/sketch/DefaultBoard.ino.cpp.o" "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/libraries/DSPI/DSPI.cpp.o" "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/libraries/OBCI32_SD/File.cpp.o" "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/libraries/OBCI32_SD/OBCI32_SD.cpp.o" "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/libraries/OBCI32_SD/utility/Sd2Card.cpp.o" "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/libraries/OBCI32_SD/utility/SdFile.cpp.o" "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/libraries/OBCI32_SD/utility/SdVolume.cpp.o" "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/libraries/EEPROM/EEPROM.cpp.o" "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/libraries/EEPROM/utility/Deeprom.c.o" "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/libraries/EEPROM/utility/flash.c.o" "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/libraries/OpenBCI_32bit_Library/OpenBCI_32bit_Library.cpp.o" "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/Board_Data.c.o" "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/core/core.a" -L/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801 -lm  -T "/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32/chipKIT-application-32MX250F128.ld" -T "/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32/chipKIT-application-COMMON.ld"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-objcopy" -O ihex -j .eeprom --set-section-flags=.eeprom=alloc,load --no-change-warnings --change-section-lma .eeprom=0  "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/DefaultBoard.ino.elf" "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/DefaultBoard.ino.eep"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-bin2hex" -a  "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_605801/DefaultBoard.ino.elf"
Using library DSPI in folder: /Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/DSPI (legacy)
Using library OBCI32_SD in folder: /Users/biomurph/Documents/Arduino/libraries/OBCI32_SD (legacy)
Using library EEPROM in folder: /Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/EEPROM (legacy)
Using library OpenBCI_32bit_Library in folder: /Users/biomurph/Documents/Arduino/libraries/OpenBCI_32bit_Library (legacy)

Sketch uses 61,884 bytes (50%) of program storage space. Maximum is 122,880 bytes.
Global variables use 11,464 bytes (34%) of dynamic memory, leaving 21,304 bytes for local variables. Maximum is 32,768 bytes.

Then, when I try to compile it again, I get this error message with verbose output:

Arduino: 1.6.13 (Mac OS X), Board: "OpenBCI 32"

/Applications/Arduino.app/Contents/Java/arduino-builder -dump-prefs -logger=machine -hardware /Applications/Arduino.app/Contents/Java/hardware -hardware /Applications/Arduino.app/Contents/Java/portable/packages -tools /Applications/Arduino.app/Contents/Java/tools-builder -tools /Applications/Arduino.app/Contents/Java/hardware/tools/avr -tools /Applications/Arduino.app/Contents/Java/portable/packages -built-in-libraries /Applications/Arduino.app/Contents/Java/libraries -libraries /Users/biomurph/Documents/Arduino/libraries -fqbn=chipKIT:pic32:openbci -ide-version=10613 -build-path /var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_804542 -warnings=none -prefs=build.warn_data_percentage=75 -prefs=runtime.tools.pic32-tools.path=/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc -prefs=runtime.tools.drivers-windows.path=/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/drivers-windows/v2 -prefs=runtime.tools.pic32prog.path=/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32prog/v2.1.24 -verbose /Users/biomurph/Documents/Arduino/libraries/OpenBCI_32bit_Library/examples/BasicBoard/BasicBoard.ino
/Applications/Arduino.app/Contents/Java/arduino-builder -compile -logger=machine -hardware /Applications/Arduino.app/Contents/Java/hardware -hardware /Applications/Arduino.app/Contents/Java/portable/packages -tools /Applications/Arduino.app/Contents/Java/tools-builder -tools /Applications/Arduino.app/Contents/Java/hardware/tools/avr -tools /Applications/Arduino.app/Contents/Java/portable/packages -built-in-libraries /Applications/Arduino.app/Contents/Java/libraries -libraries /Users/biomurph/Documents/Arduino/libraries -fqbn=chipKIT:pic32:openbci -ide-version=10613 -build-path /var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_804542 -warnings=none -prefs=build.warn_data_percentage=75 -prefs=runtime.tools.pic32-tools.path=/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc -prefs=runtime.tools.drivers-windows.path=/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/drivers-windows/v2 -prefs=runtime.tools.pic32prog.path=/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32prog/v2.1.24 -verbose /Users/biomurph/Documents/Arduino/libraries/OpenBCI_32bit_Library/examples/BasicBoard/BasicBoard.ino
Using board 'openbci' from platform in folder: /Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1
Using core 'pic32' from platform in folder: /Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1
Detecting libraries used...
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-g++" -c -g -O2 -w  -DARDUINO_ARCH_PIC32 -mno-smart-io -ffunction-sections -fdata-sections  -mdebugger -Wcast-align -fno-short-double -ftoplevel-reorder -MMD -fno-exceptions -w -x c++ -E -CC -mprocessor=32MX250F128B -DF_CPU=40000000L -DARDUINO=10613 -D_BOARD_DP32_ -DARDUINO_ARCH_PIC32 -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino -G1024 -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_804542/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_804542/sketch/BasicBoard.ino.cpp" -o "/dev/null"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-g++" -c -g -O2 -w  -DARDUINO_ARCH_PIC32 -mno-smart-io -ffunction-sections -fdata-sections  -mdebugger -Wcast-align -fno-short-double -ftoplevel-reorder -MMD -fno-exceptions -w -x c++ -E -CC -mprocessor=32MX250F128B -DF_CPU=40000000L -DARDUINO=10613 -D_BOARD_DP32_ -DARDUINO_ARCH_PIC32 -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino -G1024 -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_804542/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/DSPI" "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_804542/sketch/BasicBoard.ino.cpp" -o "/dev/null"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-g++" -c -g -O2 -w  -DARDUINO_ARCH_PIC32 -mno-smart-io -ffunction-sections -fdata-sections  -mdebugger -Wcast-align -fno-short-double -ftoplevel-reorder -MMD -fno-exceptions -w -x c++ -E -CC -mprocessor=32MX250F128B -DF_CPU=40000000L -DARDUINO=10613 -D_BOARD_DP32_ -DARDUINO_ARCH_PIC32 -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino -G1024 -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_804542/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/DSPI" "-I/Users/biomurph/Documents/Arduino/libraries/OpenBCI_32bit_Library" "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_804542/sketch/BasicBoard.ino.cpp" -o "/dev/null"
"/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/tools/pic32-tools/1.42-pic32gcc/bin/pic32-g++" -c -g -O2 -w  -DARDUINO_ARCH_PIC32 -mno-smart-io -ffunction-sections -fdata-sections  -mdebugger -Wcast-align -fno-short-double -ftoplevel-reorder -MMD -fno-exceptions -w -x c++ -E -CC -mprocessor=32MX250F128B -DF_CPU=40000000L -DARDUINO=10613 -D_BOARD_DP32_ -DARDUINO_ARCH_PIC32 -DMPIDEVER=16777998 -DMPIDE=150 -DIDE=Arduino -G1024 -D_USE_USB_FOR_SERIAL_ -I/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_804542/sketch "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/cores/pic32" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/variants/OpenBCI" "-I/Applications/Arduino.app/Contents/Java/portable/packages/chipKIT/hardware/pic32/1.3.1/libraries/DSPI" "-I/Users/biomurph/Documents/Arduino/libraries/OpenBCI_32bit_Library" "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_804542/sketch/BasicBoard.ino.cpp" -o "/var/folders/t3/l33f2l513k95rr5c2r8m16h40000gn/T/arduino_build_804542/preproc/ctags_target_for_gcc_minus_e.cpp"
panic: runtime error: index out of range

goroutine 1 [running]:
panic(0x1519c0, 0xc4200100a0)
	/usr/local/go/src/runtime/panic.go:500 +0x1a1
arduino.cc/builder.findIncludesUntilDone(0xc42008c700, 0xc42008ba70, 0x151ce0, 0xc420461680, 0xc42049a1b6, 0x8, 0x0, 0x0)
	/Users/jenkins/jenkins/workspace/arduino-builder-macosx/src/arduino.cc/builder/container_find_includes.go:321 +0x138f
arduino.cc/builder.(*ContainerFindIncludes).Run(0x244c58, 0xc42008c700, 0x41bc3c3c, 0x0)
	/Users/jenkins/jenkins/workspace/arduino-builder-macosx/src/arduino.cc/builder/container_find_includes.go:149 +0x5e4
arduino.cc/builder.runCommands(0xc42008c700, 0xc420413af8, 0x22, 0x22, 0x1, 0x0, 0x0)
	/Users/jenkins/jenkins/workspace/arduino-builder-macosx/src/arduino.cc/builder/builder.go:189 +0xcd
arduino.cc/builder.(*Builder).Run(0xc420413d48, 0xc42008c700, 0xc420035da8, 0x15cc60)
	/Users/jenkins/jenkins/workspace/arduino-builder-macosx/src/arduino.cc/builder/builder.go:124 +0xb90
arduino.cc/builder.RunBuilder(0xc42008c700, 0xc420035da8, 0x244c58)
	/Users/jenkins/jenkins/workspace/arduino-builder-macosx/src/arduino.cc/builder/builder.go:220 +0x35
main.main()
	/Users/jenkins/jenkins/workspace/arduino-builder-macosx/src/arduino.cc/arduino-builder/main.go:316 +0x912
/Applications/Arduino.app/Contents/Java/arduino-builder returned 2
Error compiling for board OpenBCI 32.

If I close the programming window (not quit out of the IDE, just close the window) and then reopen the program, I can compile again OK, but only once. The code that I'm using is from this repo https://github.com/OpenBCI/OpenBCI_32bit_Library and I'm trying to deploy the DefaultBoard.ino from the examples folder. Can you see if you can reproduce the problem? Or perhaps the verbose output will help figure out where the error is happening. I know that I'm on the Digilent forum, Just want to add more information to help try and solve the problem. I'll reach out to the folks at ChipKIT as well.

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...