Creating a toolchain from Matlab through Eclipse and then on Beagleboard..

Hello All!!

Operating System
Windows 7, AMD 64bit

I am trying to create a toolchain that runs from Simulink and through Matlab, compiled through Eclipse using CodeSourcery Lite “arm-2014.05-29-arm-none-linux-gnueabi.exe”. I have checked that the the compiler is a path variable… I am using Eclipse C/C++and have downloaded the Remote System Explorer tested it and it works, and I have succesfully downloaded and installed the GNU ARM C/C++ Develepment Support tools and CROSS development tools. I am trying to run a simple helloworld program…

#include <stdio.h>

int
main(void)
{
printf(“Hello ARM World!” “\n”);
return 0;
}

but I get this build error…

cs-make all
‘Building target: hw.elf’
‘Invoking: Cross ARM C Linker’
arm-none-linux-gnueabi-gcc -mcpu=cortex-m3 -mthumb -O0 -fmessage-length=0 -fsigned-char -ffunction-sections -fdata-sections -g3 -Xlinker --gc-sections -Wl,-Map,“hw.map” --specs=rdimon.specs -Wl,–start-group -lgcc -lc -lc -lm -lrdimon -Wl,–end-group -o “hw.elf” ./src/main.o
arm-none-linux-gnueabi-gcc: error: rdimon.specs: No such file or directory
cs-make: *** [hw.elf] Error 1

Attached to this post are screenshots of my settings for the compiler…

s1.png

s2.png

s3.png