Windows/Linux/Mac Eclipse plugin to compile and upload arduino sketches

Hi,

I'm trying to get the Eclipse plugin to work, but somehow I get an error when I build my code.
I'm using the Eclipse Arduino Package V2.3_win32.2014-07-12_02-06-35 from the Bayens page and the Arduino IDE 1.5.7. Since I'm using Windows 7 64Bit, I also use MinGW for the compiler.
Every time I try to build, I get this error:

14:04:02 **** Incremental Build of configuration Release for project test ****
make all 
'Building file: ../.ino.cpp'
'Starting C++ compile'
"H:/arduino/arduino/hardware/tools/avr/bin/avr-g++" -c -g -Os -fno-exceptions -ffunction-sections -fdata-sections -MMD -mmcu=atmega2560 -DF_CPU=16000000L -DARDUINO=157 -DARDUINO_AVR_MEGA2560 -DARDUINO_ARCH_AVR     -I"H:\arduino\arduino\hardware\arduino\avr\cores\arduino" -I"H:\arduino\arduino\hardware\arduino\avr\variants\mega" -MMD -MP -MF".ino.cpp.d" -MT".ino.cpp.d" -D__IN_ECLIPSE__=1 -x c++ "../.ino.cpp"  -o  ".ino.cpp.o"   -Wall
subdir.mk:18: recipe for target '.ino.cpp.o' failed
make: *** [.ino.cpp.o] Error -1073741515

Other than setting the Arduino IDE path in Eclipse, I did not do anything.
The file I'm trying to compile looks like this:

#include <test.h>
void setup(){
}
void loop() {
}

Eclipse also shows 2 errors in my project:

  • make: *** [test.cpp.o] Error -1073741515
  • recipe for target 'test.cpp.o'failed
    The second error points to the file ./Release/subdir.mk

Am I missing some imports or something like that? I really appreciate your support!

Best regards