On Thu, 01 May 2003 22:07:32 -0700,
"Michael Anburaj" <michaelanburaj@hotmail.com> wrote:
>I did try that too...
>
>[root@localhost linux]# make ARCH=mips
>make -f scripts/Makefile.build obj=arch/mips/kernel
>arch/mips/kernel/offset.s
> gcc -Wp,-MD,arch/mips/kernel/.offset.s.d -D__KERNEL__ -Iinclude -Wall
>-Wstrict-prototypes -Wno-trigraphs -O2 -fomit-frame-pointer
>-fno-strict-aliasing -fno-common -I /usr/src/linux/include/asm/gcc -G 0
>-mno-abicalls -fno-pic -pipe -mcpu=r4600 -mips2 -Wa,--trap -nostdinc
>-iwithprefix include -DKBUILD_BASENAME=offset -S -o
>arch/mips/kernel/offset.s arch/mips/kernel/offset.c
>gcc: cannot specify -o with -c or -S and multiple compilations
>make[1]: *** [arch/mips/kernel/offset.s] Error 1
>make: *** [arch/mips/kernel/offset.s] Error 2
Because you mentioned Redhat 9, I have to assume that you are cross
compiling from i386 to mips, is that correct? If so, you need make
ARCH=mips and you have to specify the cross compile tools as well,
something like this :-
make ARCH=mips CROSS_COMPILE=/usr/bin/mips-linux- ...
If you are doing a native mips compile then the problem is that your
version of gcc does not like one or more of the command options, the
unknown option is being treated as a filename.
|