Hi,
Last week, I compiled the Hello world of the getting started guide and it worked !
Now, I am trying to compile and... it is not working...
I have the following error :
administrateur@ubuntu:~/workdir/filesys/opt/hello$ ls
hello.c
administrateur@ubuntu:~/workdir/filesys/opt/hello$ arm-none-linux-gnueabi-gcc hello.c -o hello
/opt/arm-2009q1/bin/../lib/gcc/arm-none-linux-gnueabi/4.3.3/../../../../arm-none-linux-gnueabi/bin/ld: 1: Syntax error: newline unexpected
collect2: ld returned 2 exit status
administrateur@ubuntu:~/workdir/filesys/opt/hello$
hello.c
#include <stdio.h>
int main()
{
printf("Buongiorno DaVinci!\n");
return 0;
}
I really need your help ! What is the error ?