Yagarto problems

Hi all,

i’m testing Yagarto under XP/2000 to choose the IDE for the company.

I installed the three packages supplied by the site.

My problems are:

  • on the original makefile i had a number of ‘echo’ commands to comment each operations: now i receive :

process_begin: CreateProcess(NULL, echo -------- begin --------, …) failed.

make (e=2): Impossibile trovare il file specificato.

I must comment out all the echo commands to compile.

  • compiling a source i have:

arm-elf-gcc -c -mcpu=arm7tdmi -mthumb-interwork -I. -x assembler-with-cpp -DRAM_RUN -Wa,-adhlns=src/CStartup.lst,-gstabs src/CStartup.S -o src/CStartup.o

arm-elf-gcc -c -mthumb -mcpu=arm7tdmi -mthumb-interwork -I. -gstabs -DRAM_RUN -O2 -Wall -Wcast-align -Wcast-qual -Wimplicit -Wpointer-arith -Wswitch -Wredundant-decls -Wreturn-type -Wshadow -Wunused -Wa,-adhlns=src/main.lst -I… -MD -MP -MF .dep/main.o.d -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -std=gnu99 src/main.c -o src/main.o

src/main.c:44: warning: …

D:\DOCUME~1\xyz\IMPOST~1\Temp/ccqabaaa.s: Assembler messages:

D:\DOCUME~1\xyz\IMPOST~1\Temp/ccqabaaa.s:650: Error: can’t resolve main' {.text section} - main’ {.text section}

make: *** [src/main.o] Error 1

What does it mean? Of course the main function is not missing and the same source is compiled by other compiler…

Thanks !

something about how make launches things on windows is often broken. It is likely that it’s just that your code does not have quotes around what it is echoing ```
echo foobar


From what I've seen for windows to process it properly, it should look like ```
echo "foobar"

I had the same problem with the Yagarto package. The echo command is missing. I copied one from another package and everything run fine.

Angelo

Thanks !

@Polux: where did you find echo command ?

And what about the assembler problem ??

I found it making a search under windows :lol: It was already on a WinARM installation. Another on WinAVR :smiley:

Angelo