Skip to content

Compile error on weird circumstances #36

Closed
@NicoHood

Description

@NicoHood

Originally I had a huge sketch which failed to compile. The issue could be solved by removing a warning (removed a typedef before an enum). This was weird enough.

I simplified my example and the original "workaround" with the enum was no required anymore. Now including another library caused the error. In the original sketch even more libraries were included, so I guess its a library detection problem.

The sketch:

#include "HID-Project.h"

#include "PinChangeInterrupt.h"

void setup() {
  Keyboard.begin();
}

void loop() {}

Dependencies:
https://github.com/NicoHood/PinChangeInterrupt/tree/7b01fe1ec760c419daacf9348f8930d85c52f45c
https://github.com/NicoHood/HID/tree/60a30c1cdba9186a88e1953d542f2df58b7c7083
https://github.com/arduino/Arduino/tree/9552cc6ce255850dccb26d634f6373a3ffd32643
(Used leonardo board to compile)

The verbose output (nah I will not do the arduino builder output here, sorry):

/Arduino/build/linux/work/arduino-builder -dump-prefs -logger=machine -hardware "/Arduino/build/linux/work/hardware" -hardware "/home/linuxuser/.arduino15/packages" -hardware "/sketchbook/hardware" -tools "/Arduino/build/linux/work/tools-builder" -tools "/Arduino/build/linux/work/hardware/tools/avr" -tools "/home/linuxuser/.arduino15/packages" -libraries "/sketchbook/libraries" -libraries "/Arduino/build/linux/work/libraries" -fqbn=arduino:avr:leonardo -vid-pid=0X2341_0X8036 -ide-version=10606 -build-path "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp" -warnings=all -prefs=build.warn_data_percentage=75 -verbose "/tmp/arduino_a905e339abe3b59fd5c5e8847955095e/Remote_USB_MCU_2_test.ino"
/Arduino/build/linux/work/arduino-builder -compile -logger=machine -hardware "/Arduino/build/linux/work/hardware" -hardware "/home/linuxuser/.arduino15/packages" -hardware "/sketchbook/hardware" -tools "/Arduino/build/linux/work/tools-builder" -tools "/Arduino/build/linux/work/hardware/tools/avr" -tools "/home/linuxuser/.arduino15/packages" -libraries "/sketchbook/libraries" -libraries "/Arduino/build/linux/work/libraries" -fqbn=arduino:avr:leonardo -vid-pid=0X2341_0X8036 -ide-version=10606 -build-path "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp" -warnings=all -prefs=build.warn_data_percentage=75 -verbose "/tmp/arduino_a905e339abe3b59fd5c5e8847955095e/Remote_USB_MCU_2_test.ino"
WARNING: Spurious .git folder in 'AnalogTouch' library
WARNING: Spurious .git folder in 'FastLED' library
WARNING: Spurious .dev folder in 'HID-Project' library
WARNING: Spurious .git folder in 'HID-Project' library
WARNING: Spurious .git folder in 'IRLremote' library
WARNING: Spurious .git folder in 'MSGEQ7' library
WARNING: Spurious .git folder in 'Nintendo' library
WARNING: Spurious .git folder in 'PinChangeInterrupt' library
WARNING: Spurious .git folder in 'RCLSwitch' library
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics  -w -x c++ -M -MG -MP -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10606 -DARDUINO_AVR_LEONARDO -DARDUINO_ARCH_AVR  -DUSB_VID=0x2341 -DUSB_PID=0x8036 '-DUSB_MANUFACTURER="Unknown"' '-DUSB_PRODUCT="Arduino Leonardo"'  "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/sketch/Remote_USB_MCU_2_test.ino.cpp"
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics  -w -x c++ -M -MG -MP -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10606 -DARDUINO_AVR_LEONARDO -DARDUINO_ARCH_AVR  -DUSB_VID=0x2341 -DUSB_PID=0x8036 '-DUSB_MANUFACTURER="Unknown"' '-DUSB_PRODUCT="Arduino Leonardo"' "-I/sketchbook/hardware/arduino/avr/cores/arduino" "-I/sketchbook/hardware/arduino/avr/variants/leonardo" "-I/sketchbook/libraries/HID-Project/src" "-I/sketchbook/libraries/PinChangeInterrupt/src" "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/sketch/Remote_USB_MCU_2_test.ino.cpp"
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics  -w -x c++ -M -MG -MP -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10606 -DARDUINO_AVR_LEONARDO -DARDUINO_ARCH_AVR  -DUSB_VID=0x2341 -DUSB_PID=0x8036 '-DUSB_MANUFACTURER="Unknown"' '-DUSB_PRODUCT="Arduino Leonardo"' "-I/sketchbook/hardware/arduino/avr/cores/arduino" "-I/sketchbook/hardware/arduino/avr/variants/leonardo" "-I/sketchbook/libraries/PinChangeInterrupt/src" "-I/sketchbook/libraries/HID-Project/src" "-I/sketchbook/hardware/arduino/avr/libraries/HID" "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/sketch/Remote_USB_MCU_2_test.ino.cpp"
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics  -w -x c++ -M -MG -MP -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10606 -DARDUINO_AVR_LEONARDO -DARDUINO_ARCH_AVR  -DUSB_VID=0x2341 -DUSB_PID=0x8036 '-DUSB_MANUFACTURER="Unknown"' '-DUSB_PRODUCT="Arduino Leonardo"' "-I/sketchbook/hardware/arduino/avr/cores/arduino" "-I/sketchbook/hardware/arduino/avr/variants/leonardo" "-I/sketchbook/libraries/HID-Project/src" "-I/sketchbook/hardware/arduino/avr/libraries/HID" "-I/sketchbook/libraries/PinChangeInterrupt/src" "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/sketch/Remote_USB_MCU_2_test.ino.cpp"
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics  -w -x c++ -M -MG -MP -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10606 -DARDUINO_AVR_LEONARDO -DARDUINO_ARCH_AVR  -DUSB_VID=0x2341 -DUSB_PID=0x8036 '-DUSB_MANUFACTURER="Unknown"' '-DUSB_PRODUCT="Arduino Leonardo"' "-I/sketchbook/hardware/arduino/avr/cores/arduino" "-I/sketchbook/hardware/arduino/avr/variants/leonardo" "-I/sketchbook/libraries/PinChangeInterrupt/src" "-I/sketchbook/hardware/arduino/avr/libraries/HID" "-I/sketchbook/libraries/HID-Project/src" "/sketchbook/libraries/HID-Project/src/MultiReport/AbsoluteMouse.cpp"
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics  -w -x c++ -M -MG -MP -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10606 -DARDUINO_AVR_LEONARDO -DARDUINO_ARCH_AVR  -DUSB_VID=0x2341 -DUSB_PID=0x8036 '-DUSB_MANUFACTURER="Unknown"' '-DUSB_PRODUCT="Arduino Leonardo"' "-I/sketchbook/hardware/arduino/avr/cores/arduino" "-I/sketchbook/hardware/arduino/avr/variants/leonardo" "-I/sketchbook/libraries/PinChangeInterrupt/src" "-I/sketchbook/hardware/arduino/avr/libraries/HID" "-I/sketchbook/libraries/HID-Project/src" "/sketchbook/libraries/HID-Project/src/MultiReport/Consumer.cpp"
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics  -w -x c++ -M -MG -MP -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10606 -DARDUINO_AVR_LEONARDO -DARDUINO_ARCH_AVR  -DUSB_VID=0x2341 -DUSB_PID=0x8036 '-DUSB_MANUFACTURER="Unknown"' '-DUSB_PRODUCT="Arduino Leonardo"' "-I/sketchbook/hardware/arduino/avr/cores/arduino" "-I/sketchbook/hardware/arduino/avr/variants/leonardo" "-I/sketchbook/libraries/HID-Project/src" "-I/sketchbook/hardware/arduino/avr/libraries/HID" "-I/sketchbook/libraries/PinChangeInterrupt/src" "/sketchbook/libraries/HID-Project/src/MultiReport/Gamepad.cpp"
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics  -w -x c++ -M -MG -MP -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10606 -DARDUINO_AVR_LEONARDO -DARDUINO_ARCH_AVR  -DUSB_VID=0x2341 -DUSB_PID=0x8036 '-DUSB_MANUFACTURER="Unknown"' '-DUSB_PRODUCT="Arduino Leonardo"' "-I/sketchbook/hardware/arduino/avr/cores/arduino" "-I/sketchbook/hardware/arduino/avr/variants/leonardo" "-I/sketchbook/libraries/HID-Project/src" "-I/sketchbook/libraries/PinChangeInterrupt/src" "-I/sketchbook/hardware/arduino/avr/libraries/HID" "/sketchbook/libraries/HID-Project/src/MultiReport/ImprovedKeyboard.cpp"
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics  -w -x c++ -M -MG -MP -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10606 -DARDUINO_AVR_LEONARDO -DARDUINO_ARCH_AVR  -DUSB_VID=0x2341 -DUSB_PID=0x8036 '-DUSB_MANUFACTURER="Unknown"' '-DUSB_PRODUCT="Arduino Leonardo"' "-I/sketchbook/hardware/arduino/avr/cores/arduino" "-I/sketchbook/hardware/arduino/avr/variants/leonardo" "-I/sketchbook/hardware/arduino/avr/libraries/HID" "-I/sketchbook/libraries/PinChangeInterrupt/src" "-I/sketchbook/libraries/HID-Project/src" "/sketchbook/libraries/HID-Project/src/MultiReport/ImprovedMouse.cpp"
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics  -w -x c++ -M -MG -MP -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10606 -DARDUINO_AVR_LEONARDO -DARDUINO_ARCH_AVR  -DUSB_VID=0x2341 -DUSB_PID=0x8036 '-DUSB_MANUFACTURER="Unknown"' '-DUSB_PRODUCT="Arduino Leonardo"' "-I/sketchbook/hardware/arduino/avr/cores/arduino" "-I/sketchbook/hardware/arduino/avr/variants/leonardo" "-I/sketchbook/libraries/HID-Project/src" "-I/sketchbook/hardware/arduino/avr/libraries/HID" "-I/sketchbook/libraries/PinChangeInterrupt/src" "/sketchbook/libraries/HID-Project/src/MultiReport/NKROKeyboard.cpp"
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics  -w -x c++ -M -MG -MP -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10606 -DARDUINO_AVR_LEONARDO -DARDUINO_ARCH_AVR  -DUSB_VID=0x2341 -DUSB_PID=0x8036 '-DUSB_MANUFACTURER="Unknown"' '-DUSB_PRODUCT="Arduino Leonardo"' "-I/sketchbook/hardware/arduino/avr/cores/arduino" "-I/sketchbook/hardware/arduino/avr/variants/leonardo" "-I/sketchbook/hardware/arduino/avr/libraries/HID" "-I/sketchbook/libraries/PinChangeInterrupt/src" "-I/sketchbook/libraries/HID-Project/src" "/sketchbook/libraries/HID-Project/src/MultiReport/System.cpp"
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics  -w -x c++ -M -MG -MP -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10606 -DARDUINO_AVR_LEONARDO -DARDUINO_ARCH_AVR  -DUSB_VID=0x2341 -DUSB_PID=0x8036 '-DUSB_MANUFACTURER="Unknown"' '-DUSB_PRODUCT="Arduino Leonardo"' "-I/sketchbook/hardware/arduino/avr/cores/arduino" "-I/sketchbook/hardware/arduino/avr/variants/leonardo" "-I/sketchbook/libraries/PinChangeInterrupt/src" "-I/sketchbook/hardware/arduino/avr/libraries/HID" "-I/sketchbook/libraries/HID-Project/src" "/sketchbook/libraries/HID-Project/src/SingleReport/BootKeyboard.cpp"
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics  -w -x c++ -M -MG -MP -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10606 -DARDUINO_AVR_LEONARDO -DARDUINO_ARCH_AVR  -DUSB_VID=0x2341 -DUSB_PID=0x8036 '-DUSB_MANUFACTURER="Unknown"' '-DUSB_PRODUCT="Arduino Leonardo"' "-I/sketchbook/hardware/arduino/avr/cores/arduino" "-I/sketchbook/hardware/arduino/avr/variants/leonardo" "-I/sketchbook/hardware/arduino/avr/libraries/HID" "-I/sketchbook/libraries/PinChangeInterrupt/src" "-I/sketchbook/libraries/HID-Project/src" "/sketchbook/libraries/HID-Project/src/SingleReport/BootMouse.cpp"
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics  -w -x c++ -M -MG -MP -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10606 -DARDUINO_AVR_LEONARDO -DARDUINO_ARCH_AVR  -DUSB_VID=0x2341 -DUSB_PID=0x8036 '-DUSB_MANUFACTURER="Unknown"' '-DUSB_PRODUCT="Arduino Leonardo"' "-I/sketchbook/hardware/arduino/avr/cores/arduino" "-I/sketchbook/hardware/arduino/avr/variants/leonardo" "-I/sketchbook/hardware/arduino/avr/libraries/HID" "-I/sketchbook/libraries/PinChangeInterrupt/src" "-I/sketchbook/libraries/HID-Project/src" "/sketchbook/libraries/HID-Project/src/SingleReport/RawHID.cpp"
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics  -w -x c++ -M -MG -MP -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10606 -DARDUINO_AVR_LEONARDO -DARDUINO_ARCH_AVR  -DUSB_VID=0x2341 -DUSB_PID=0x8036 '-DUSB_MANUFACTURER="Unknown"' '-DUSB_PRODUCT="Arduino Leonardo"' "-I/sketchbook/hardware/arduino/avr/cores/arduino" "-I/sketchbook/hardware/arduino/avr/variants/leonardo" "-I/sketchbook/hardware/arduino/avr/libraries/HID" "-I/sketchbook/libraries/PinChangeInterrupt/src" "-I/sketchbook/libraries/HID-Project/src" "/sketchbook/libraries/HID-Project/src/SingleReport/SingleGamepad.cpp"
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics  -w -x c++ -M -MG -MP -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10606 -DARDUINO_AVR_LEONARDO -DARDUINO_ARCH_AVR  -DUSB_VID=0x2341 -DUSB_PID=0x8036 '-DUSB_MANUFACTURER="Unknown"' '-DUSB_PRODUCT="Arduino Leonardo"' "-I/sketchbook/hardware/arduino/avr/cores/arduino" "-I/sketchbook/hardware/arduino/avr/variants/leonardo" "-I/sketchbook/libraries/HID-Project/src" "-I/sketchbook/hardware/arduino/avr/libraries/HID" "-I/sketchbook/libraries/PinChangeInterrupt/src" "/sketchbook/libraries/HID-Project/src/SingleReport/SingleNKROKeyboard.cpp"
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics  -w -x c++ -M -MG -MP -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10606 -DARDUINO_AVR_LEONARDO -DARDUINO_ARCH_AVR  -DUSB_VID=0x2341 -DUSB_PID=0x8036 '-DUSB_MANUFACTURER="Unknown"' '-DUSB_PRODUCT="Arduino Leonardo"' "-I/sketchbook/hardware/arduino/avr/cores/arduino" "-I/sketchbook/hardware/arduino/avr/variants/leonardo" "-I/sketchbook/libraries/PinChangeInterrupt/src" "-I/sketchbook/hardware/arduino/avr/libraries/HID" "-I/sketchbook/libraries/HID-Project/src" "/sketchbook/libraries/PinChangeInterrupt/src/PinChangeInterrupt.cpp"
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics  -w -x c++ -M -MG -MP -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10606 -DARDUINO_AVR_LEONARDO -DARDUINO_ARCH_AVR  -DUSB_VID=0x2341 -DUSB_PID=0x8036 '-DUSB_MANUFACTURER="Unknown"' '-DUSB_PRODUCT="Arduino Leonardo"' "-I/sketchbook/hardware/arduino/avr/cores/arduino" "-I/sketchbook/hardware/arduino/avr/variants/leonardo" "-I/sketchbook/libraries/HID-Project/src" "-I/sketchbook/libraries/PinChangeInterrupt/src" "-I/sketchbook/hardware/arduino/avr/libraries/HID" "/sketchbook/libraries/PinChangeInterrupt/src/PinChangeInterrupt0.cpp"
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics  -w -x c++ -M -MG -MP -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10606 -DARDUINO_AVR_LEONARDO -DARDUINO_ARCH_AVR  -DUSB_VID=0x2341 -DUSB_PID=0x8036 '-DUSB_MANUFACTURER="Unknown"' '-DUSB_PRODUCT="Arduino Leonardo"' "-I/sketchbook/hardware/arduino/avr/cores/arduino" "-I/sketchbook/hardware/arduino/avr/variants/leonardo" "-I/sketchbook/hardware/arduino/avr/libraries/HID" "-I/sketchbook/libraries/PinChangeInterrupt/src" "-I/sketchbook/libraries/HID-Project/src" "/sketchbook/libraries/PinChangeInterrupt/src/PinChangeInterrupt1.cpp"
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics  -w -x c++ -M -MG -MP -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10606 -DARDUINO_AVR_LEONARDO -DARDUINO_ARCH_AVR  -DUSB_VID=0x2341 -DUSB_PID=0x8036 '-DUSB_MANUFACTURER="Unknown"' '-DUSB_PRODUCT="Arduino Leonardo"' "-I/sketchbook/hardware/arduino/avr/cores/arduino" "-I/sketchbook/hardware/arduino/avr/variants/leonardo" "-I/sketchbook/libraries/PinChangeInterrupt/src" "-I/sketchbook/libraries/HID-Project/src" "-I/sketchbook/hardware/arduino/avr/libraries/HID" "/sketchbook/libraries/PinChangeInterrupt/src/PinChangeInterrupt2.cpp"
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics  -w -x c++ -M -MG -MP -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10606 -DARDUINO_AVR_LEONARDO -DARDUINO_ARCH_AVR  -DUSB_VID=0x2341 -DUSB_PID=0x8036 '-DUSB_MANUFACTURER="Unknown"' '-DUSB_PRODUCT="Arduino Leonardo"' "-I/sketchbook/hardware/arduino/avr/cores/arduino" "-I/sketchbook/hardware/arduino/avr/variants/leonardo" "-I/sketchbook/libraries/PinChangeInterrupt/src" "-I/sketchbook/hardware/arduino/avr/libraries/HID" "-I/sketchbook/libraries/HID-Project/src" "/sketchbook/libraries/PinChangeInterrupt/src/PinChangeInterrupt3.cpp"
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics  -w -x c++ -M -MG -MP -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10606 -DARDUINO_AVR_LEONARDO -DARDUINO_ARCH_AVR  -DUSB_VID=0x2341 -DUSB_PID=0x8036 '-DUSB_MANUFACTURER="Unknown"' '-DUSB_PRODUCT="Arduino Leonardo"' "-I/sketchbook/hardware/arduino/avr/cores/arduino" "-I/sketchbook/hardware/arduino/avr/variants/leonardo" "-I/sketchbook/hardware/arduino/avr/libraries/HID" "-I/sketchbook/libraries/PinChangeInterrupt/src" "-I/sketchbook/libraries/HID-Project/src" "/sketchbook/hardware/arduino/avr/libraries/HID/HID.cpp"
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics  -w -x c++ -M -MG -MP -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10606 -DARDUINO_AVR_LEONARDO -DARDUINO_ARCH_AVR  -DUSB_VID=0x2341 -DUSB_PID=0x8036 '-DUSB_MANUFACTURER="Unknown"' '-DUSB_PRODUCT="Arduino Leonardo"' "-I/sketchbook/hardware/arduino/avr/cores/arduino" "-I/sketchbook/hardware/arduino/avr/variants/leonardo" "-I/sketchbook/libraries/PinChangeInterrupt/src" "-I/sketchbook/libraries/HID-Project/src" "-I/sketchbook/hardware/arduino/avr/libraries/HID" "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/sketch/Remote_USB_MCU_2_test.ino.cpp"
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics  -w -x c++ -E -CC -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10606 -DARDUINO_AVR_LEONARDO -DARDUINO_ARCH_AVR  -DUSB_VID=0x2341 -DUSB_PID=0x8036 '-DUSB_MANUFACTURER="Unknown"' '-DUSB_PRODUCT="Arduino Leonardo"' "-I/sketchbook/hardware/arduino/avr/cores/arduino" "-I/sketchbook/hardware/arduino/avr/variants/leonardo" "-I/sketchbook/libraries/HID-Project/src" "-I/sketchbook/libraries/PinChangeInterrupt/src" "-I/sketchbook/hardware/arduino/avr/libraries/HID" "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/sketch/Remote_USB_MCU_2_test.ino.cpp"
"/Arduino/build/linux/work/tools-builder/ctags/5.8-arduino1/ctags" -u --language-force=c++ -f - --c++-kinds=svpf --fields=KSTtzns "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/preproc/ctags_target.cpp"
"/Arduino/build/linux/work/tools-builder/ctags/5.8-arduino1/ctags" -u --language-force=c++ -f - --c++-kinds=svpf --fields=KSTtzns "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/preproc/ctags_target.cpp"
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-g++" -c -g -Os -Wall -Wextra -std=gnu++11 -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10606 -DARDUINO_AVR_LEONARDO -DARDUINO_ARCH_AVR  -DUSB_VID=0x2341 -DUSB_PID=0x8036 '-DUSB_MANUFACTURER="Unknown"' '-DUSB_PRODUCT="Arduino Leonardo"' "-I/sketchbook/hardware/arduino/avr/cores/arduino" "-I/sketchbook/hardware/arduino/avr/variants/leonardo" "-I/sketchbook/libraries/HID-Project/src" "-I/sketchbook/libraries/PinChangeInterrupt/src" "-I/sketchbook/hardware/arduino/avr/libraries/HID" "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/sketch/Remote_USB_MCU_2_test.ino.cpp" -o "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/sketch/Remote_USB_MCU_2_test.ino.cpp.o"
Using previously compiled file: /tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/libraries/HID-Project/MultiReport/AbsoluteMouse.cpp.o
Using previously compiled file: /tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/libraries/HID-Project/MultiReport/Consumer.cpp.o
Using previously compiled file: /tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/libraries/HID-Project/MultiReport/Gamepad.cpp.o
Using previously compiled file: /tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/libraries/HID-Project/MultiReport/ImprovedKeyboard.cpp.o
Using previously compiled file: /tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/libraries/HID-Project/MultiReport/ImprovedMouse.cpp.o
Using previously compiled file: /tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/libraries/HID-Project/MultiReport/NKROKeyboard.cpp.o
Using previously compiled file: /tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/libraries/HID-Project/MultiReport/System.cpp.o
Using previously compiled file: /tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/libraries/HID-Project/SingleReport/BootKeyboard.cpp.o
Using previously compiled file: /tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/libraries/HID-Project/SingleReport/BootMouse.cpp.o
Using previously compiled file: /tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/libraries/HID-Project/SingleReport/RawHID.cpp.o
Using previously compiled file: /tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/libraries/HID-Project/SingleReport/SingleGamepad.cpp.o
Using previously compiled file: /tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/libraries/HID-Project/SingleReport/SingleNKROKeyboard.cpp.o
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-ar" rcs  "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/libraries/HID-Project/HID-Project.a" "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/libraries/HID-Project/MultiReport/AbsoluteMouse.cpp.o"
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-ar" rcs  "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/libraries/HID-Project/HID-Project.a" "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/libraries/HID-Project/MultiReport/Consumer.cpp.o"
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-ar" rcs  "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/libraries/HID-Project/HID-Project.a" "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/libraries/HID-Project/MultiReport/Gamepad.cpp.o"
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-ar" rcs  "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/libraries/HID-Project/HID-Project.a" "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/libraries/HID-Project/MultiReport/ImprovedKeyboard.cpp.o"
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-ar" rcs  "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/libraries/HID-Project/HID-Project.a" "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/libraries/HID-Project/MultiReport/ImprovedMouse.cpp.o"
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-ar" rcs  "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/libraries/HID-Project/HID-Project.a" "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/libraries/HID-Project/MultiReport/NKROKeyboard.cpp.o"
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-ar" rcs  "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/libraries/HID-Project/HID-Project.a" "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/libraries/HID-Project/MultiReport/System.cpp.o"
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-ar" rcs  "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/libraries/HID-Project/HID-Project.a" "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/libraries/HID-Project/SingleReport/BootKeyboard.cpp.o"
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-ar" rcs  "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/libraries/HID-Project/HID-Project.a" "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/libraries/HID-Project/SingleReport/BootMouse.cpp.o"
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-ar" rcs  "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/libraries/HID-Project/HID-Project.a" "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/libraries/HID-Project/SingleReport/RawHID.cpp.o"
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-ar" rcs  "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/libraries/HID-Project/HID-Project.a" "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/libraries/HID-Project/SingleReport/SingleGamepad.cpp.o"
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-ar" rcs  "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/libraries/HID-Project/HID-Project.a" "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/libraries/HID-Project/SingleReport/SingleNKROKeyboard.cpp.o"
Using previously compiled file: /tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/libraries/PinChangeInterrupt/PinChangeInterrupt.cpp.o
Using previously compiled file: /tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/libraries/PinChangeInterrupt/PinChangeInterrupt0.cpp.o
Using previously compiled file: /tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/libraries/PinChangeInterrupt/PinChangeInterrupt1.cpp.o
Using previously compiled file: /tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/libraries/PinChangeInterrupt/PinChangeInterrupt2.cpp.o
Using previously compiled file: /tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/libraries/PinChangeInterrupt/PinChangeInterrupt3.cpp.o
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-ar" rcs  "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/libraries/PinChangeInterrupt/PinChangeInterrupt.a" "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/libraries/HID-Project/HID-Project.a"
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-ar" rcs  "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/libraries/PinChangeInterrupt/PinChangeInterrupt.a" "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/libraries/PinChangeInterrupt/PinChangeInterrupt.cpp.o"
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-ar" rcs  "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/libraries/PinChangeInterrupt/PinChangeInterrupt.a" "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/libraries/PinChangeInterrupt/PinChangeInterrupt0.cpp.o"
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-ar" rcs  "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/libraries/PinChangeInterrupt/PinChangeInterrupt.a" "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/libraries/PinChangeInterrupt/PinChangeInterrupt1.cpp.o"
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-ar" rcs  "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/libraries/PinChangeInterrupt/PinChangeInterrupt.a" "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/libraries/PinChangeInterrupt/PinChangeInterrupt2.cpp.o"
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-ar" rcs  "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/libraries/PinChangeInterrupt/PinChangeInterrupt.a" "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/libraries/PinChangeInterrupt/PinChangeInterrupt3.cpp.o"
Using previously compiled file: /tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/libraries/HID/HID.cpp.o
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-gcc" -c -g -x assembler-with-cpp -mmcu=atmega32u4 -DF_CPU=16000000L -DARDUINO=10606 -DARDUINO_AVR_LEONARDO -DARDUINO_ARCH_AVR  -DUSB_VID=0x2341 -DUSB_PID=0x8036 '-DUSB_MANUFACTURER="Unknown"' '-DUSB_PRODUCT="Arduino Leonardo"' "-I/sketchbook/hardware/arduino/avr/cores/arduino" "-I/sketchbook/hardware/arduino/avr/variants/leonardo" "/sketchbook/hardware/arduino/avr/cores/arduino/wiring_pulse.S" -o "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/wiring_pulse.S.o"
Using previously compiled file: /tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/WInterrupts.c.o
Using previously compiled file: /tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/hooks.c.o
Using previously compiled file: /tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/wiring.c.o
Using previously compiled file: /tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/wiring_analog.c.o
Using previously compiled file: /tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/wiring_digital.c.o
Using previously compiled file: /tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/wiring_pulse.c.o
Using previously compiled file: /tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/wiring_shift.c.o
Using previously compiled file: /tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/CDC.cpp.o
Using previously compiled file: /tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/HardwareSerial.cpp.o
Using previously compiled file: /tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/HardwareSerial0.cpp.o
Using previously compiled file: /tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/HardwareSerial1.cpp.o
Using previously compiled file: /tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/HardwareSerial2.cpp.o
Using previously compiled file: /tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/HardwareSerial3.cpp.o
Using previously compiled file: /tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/IPAddress.cpp.o
Using previously compiled file: /tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/PluggableUSB.cpp.o
Using previously compiled file: /tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/Print.cpp.o
Using previously compiled file: /tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/Stream.cpp.o
Using previously compiled file: /tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/Tone.cpp.o
Using previously compiled file: /tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/USBCore.cpp.o
Using previously compiled file: /tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/WMath.cpp.o
Using previously compiled file: /tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/WString.cpp.o
Using previously compiled file: /tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/abi.cpp.o
Using previously compiled file: /tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/main.cpp.o
Using previously compiled file: /tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/new.cpp.o
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-ar" rcs  "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/core.a" "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/wiring_pulse.S.o"
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-ar" rcs  "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/core.a" "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/WInterrupts.c.o"
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-ar" rcs  "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/core.a" "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/hooks.c.o"
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-ar" rcs  "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/core.a" "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/wiring.c.o"
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-ar" rcs  "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/core.a" "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/wiring_analog.c.o"
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-ar" rcs  "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/core.a" "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/wiring_digital.c.o"
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-ar" rcs  "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/core.a" "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/wiring_pulse.c.o"
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-ar" rcs  "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/core.a" "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/wiring_shift.c.o"
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-ar" rcs  "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/core.a" "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/CDC.cpp.o"
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-ar" rcs  "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/core.a" "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/HardwareSerial.cpp.o"
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-ar" rcs  "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/core.a" "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/HardwareSerial0.cpp.o"
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-ar" rcs  "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/core.a" "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/HardwareSerial1.cpp.o"
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-ar" rcs  "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/core.a" "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/HardwareSerial2.cpp.o"
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-ar" rcs  "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/core.a" "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/HardwareSerial3.cpp.o"
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-ar" rcs  "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/core.a" "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/IPAddress.cpp.o"
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-ar" rcs  "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/core.a" "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/PluggableUSB.cpp.o"
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-ar" rcs  "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/core.a" "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/Print.cpp.o"
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-ar" rcs  "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/core.a" "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/Stream.cpp.o"
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-ar" rcs  "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/core.a" "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/Tone.cpp.o"
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-ar" rcs  "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/core.a" "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/USBCore.cpp.o"
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-ar" rcs  "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/core.a" "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/WMath.cpp.o"
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-ar" rcs  "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/core.a" "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/WString.cpp.o"
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-ar" rcs  "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/core.a" "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/abi.cpp.o"
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-ar" rcs  "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/core.a" "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/main.cpp.o"
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-ar" rcs  "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/core.a" "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/new.cpp.o"
"/Arduino/build/linux/work/hardware/tools/avr/bin/avr-gcc" -Wall -Wextra -Os -Wl,--gc-sections -mmcu=atmega32u4  -o "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/Remote_USB_MCU_2_test.ino.elf" "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/sketch/Remote_USB_MCU_2_test.ino.cpp.o" "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/libraries/PinChangeInterrupt/PinChangeInterrupt.a" "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/libraries/HID/HID.cpp.o" "/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/core/core.a" "-L/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp" -lm
/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/sketch/Remote_USB_MCU_2_test.ino.cpp.o: In function `KeyboardAPI::removeAll()':
/sketchbook/libraries/HID-Project/src/SingleReport/../HID-APIs/KeyboardAPI.hpp:307: undefined reference to `Keyboard'
/sketchbook/libraries/HID-Project/src/SingleReport/../HID-APIs/KeyboardAPI.hpp:307: undefined reference to `Keyboard'
/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/sketch/Remote_USB_MCU_2_test.ino.cpp.o: In function `KeyboardAPI::send_now()':
/sketchbook/libraries/HID-Project/src/SingleReport/../HID-APIs/KeyboardAPI.hpp:312: undefined reference to `Keyboard'
/sketchbook/libraries/HID-Project/src/SingleReport/../HID-APIs/KeyboardAPI.hpp:312: undefined reference to `Keyboard'
/sketchbook/libraries/HID-Project/src/SingleReport/../HID-APIs/KeyboardAPI.hpp:312: undefined reference to `Keyboard'
/tmp/builda905e339abe3b59fd5c5e8847955095e.tmp/sketch/Remote_USB_MCU_2_test.ino.cpp.o:/sketchbook/libraries/HID-Project/src/SingleReport/../HID-APIs/KeyboardAPI.hpp:312: more undefined references to `Keyboard' follow
collect2: error: ld returned 1 exit status
exit status 1
Error compiling.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions