Hello,
Not sure if this is the correct subforum for my questions. If it is the wrong place I apologize.
I am attempting to use the NetBeans Arduino plug-in. I have set everything up but then I go to compile/run the program I get the below error.
avr-ar rcs lib/core/arduinocore.a
avr-ar: lib/core/arduinocore.a: No such file or directory
make: *** [lib/core/arduinocore.a] Error 1
BUILD FAILED (exit value 2, total time: 191ms)
from what I can tell the IDE is looking for a file named arduinocore.a, However there is not a file by that name. I did a hard drive search for it and it turned up nothing. the file arduinocore.a is listed in the "make" file of the plug-in below is the code that references the arduinocore.a from the make file.
COM_PORT = COM4
BAUD_RATE = 115200
ARDUINO_VERSION = 106
ARDUINO_BASE_DIR = C:\Program Files\Arduino
ARDUINO_CORE_DIR = ${ARDUINO_BASE_DIR}/hardware/arduino/cores/arduino
ARDUINO_LIB_DIR = ${ARDUINO_BASE_DIR}/libraries
LIB_CORE_DIR = lib/core
LIB_LIBS_DIR = lib/libs
ARDUINO_LIB_CORE = ${LIB_CORE_DIR}/arduinocore.a
ARDUINO_LIB_LIBS = ${LIB_LIBS_DIR}/arduinolibs.a
I hope I have provided enough information concerning this issue. thank in advanced for any help you provide.
-Matt