|
Message
From: Matjaz Breskvar<phoenix@o...>
Date: Wed Apr 6 18:48:32 CEST 2005
Subject: [openrisc] Linux2.4 help.
* Balaji V. Iyer (bviyer@n...) wrote: > hi Everyone, > I am getting the following errors when I am trying to build the > linux-2.4 for openrisc GCC. Can anyone please give me guidance as to > what I maybe doing wrong? The machine does recognize the assembler and > all the binutils tools. > > Any Help is appreciated.
This looks like toolchain installation problem. did you try compiling something trivial ? > -Balaji V. Iyer. > > > or32-uclinux-gcc -D__KERNEL__ -I/tmp/My_Stuff/linux-2.4/include -Wall > -Wstrict-prototypes -Wno-trigraphs -O2 -fno-strict-aliasing -fno-common > -D__linux__ -fomit-frame-pointer -I/tmp/My_Stuff/linux-2.4/arch/or32 > -fsigned-char -msoft-float -pipe -ffixed-r2 -Wno-uninitialized > -DKBUILD_BASENAME=main -c -o init/main.o init/main.c
what you can do is change the last line to:
-DKBUILD_BASENAME=main -S -o init/main.S init/main.c
and examine (post ?) the main.S.
best regards, p.
|
 |