Jonathan Dumaresq wrote:
> Imran V wrote:
>> I am new to Eclipse. Using Yagarto site I have downloaded tools for ARM
>> processors which includes GNU (compiler) and Eclipse as IDE. I am
>> attempting to compile an example project. Each time I execute the
>> command "clean" or "build all" follwing is the message I receive:
>>
>> make -k all
>> compiling
>> arm-elf-gcc -I./ -c -fno-common -00 -g main.c
>> process begin: CreateProcess(null)arm-elf-gcc -I./ -c -fno-common -00 -g
>> main.c...) failed
>> make (e=2): The system cannot find the file specified.
>>
>> I have observed similar error when trying to execute "make clean"
>> command in dos prompt, i.e., eclipse not even in the loop. I have also
>> reinstalled everyting in two different PC with the same result.
>> Regardless, nothing has worked. Any help will be greatly appreciated.
>> Thanks.
>
> this is a system path related.
>
> in a cmd dos windows. what happen if you type this command ?
>
> make --version
> arm-elf-gcc --version
>
> if you get a 3.81 version for the make command, you MUST put SHELL=cmd
> in your makefile.
>
> regards
>
> Jonathan
this is the response I get to cmd dos commands:
C:\make --version
GNU Make version 3.78.1, by Richard Stallman and Roland McGrath.
Built for Windows32
Copyright (C) 1988, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99
Free Software Foundation, Inc.
This is free software; see the source for copying conditions.
There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE.
Report bugs to <bug-make@gnu.org>.
C:\arm-elf-gcc --version
arm-elf-gcc (GCC) 4.1.1
Copyright (C) 2006 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is
NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE.
Please let me know what t do next. Thanks for your help.