public inbox for gcc@gcc.gnu.org
 help / color / mirror / Atom feed
* Problems building a cross compiler (toolchain)
@ 1998-03-25 17:22 John C. Ruttenberg
  1998-03-29  5:14 ` H.J. Lu
  1998-03-30 16:18 ` Jim Wilson
  0 siblings, 2 replies; 5+ messages in thread
From: John C. Ruttenberg @ 1998-03-25 17:22 UTC (permalink / raw)
  To: egcs

I'm trying to build a cross compiler i686-linux -> mips-elf.  I tried to
follow the instructions in
ftp://ftp.cygnus.com/pub/embedded/crossgcc/FAQ-0.8.1 , but perhaps I haven't
done as well as I could.  I'll give the exact steps I followed at the end of
the message.

The problem is that the make of egcs errors out with:

    GNU assembler version 2.8.1 (mips-elf), using BFD version 2.8.1
     mips-tfile -v -o _muldi3.o /tmp/cca01170.s
    xgcc: installation problem, cannot exec `mips-tfile': No such file or directory

This happens when it is trying to compile _muldi3.o with the following
command:

    /home/rutt/src/egcs-1.0.2/mips/gcc/xgcc \
        -B/home/rutt/src/egcs-1.0.2/mips/gcc/ -O2  -DCROSS_COMPILE -DIN_GCC \
        -g -O2 -I./include  -G 0 -g1 -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED \
        -fexceptions    -I. -I../../gcc -I../../gcc/config -c -DL_muldi3 \
        ../../gcc/libgcc2.c -o _muldi3.o -v

I found the source to mips-tfile in the egcs tree, but I can't build it:

    [rutt@gertie gcc]$ make mips-tfile
    gcc -c -DCROSS_COMPILE -DIN_GCC    -g  -DHAVE_CONFIG_H     -I. -I../../gcc -I../../gcc/config ../../gcc/mips-tfile.c
    ../../gcc/mips-tfile.c:719: mips/a.out.h: No such file or directory

From glancing at it, I don't understand why I should need it.  It seems to be
a COFF thing.

Here are the steps I followed:

     1. cd binutils-2.8.1
     2. configure --target=mips-elf --host=i686-linux -prefix=/home/rutt/cross/mips 
     3. make all install
     4. cd ../egcs-1.0.2
     5. mkdir mips
     6. ../configure --target=mips-elf --host=i686-linux -prefix=/home/rutt/cross/mips 
     7. make cross

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Problems building a cross compiler (toolchain)
  1998-03-29  5:14 ` H.J. Lu
@ 1998-03-28 19:24   ` John C. Ruttenberg
  1998-04-02 11:32   ` Ian Lance Taylor
  1 sibling, 0 replies; 5+ messages in thread
From: John C. Ruttenberg @ 1998-03-28 19:24 UTC (permalink / raw)
  To: H.J. Lu; +Cc: egcs

I think this problem is solved.  I needed --with-gnu-as in my configure.
Thanks.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Problems building a cross compiler (toolchain)
  1998-03-25 17:22 Problems building a cross compiler (toolchain) John C. Ruttenberg
@ 1998-03-29  5:14 ` H.J. Lu
  1998-03-28 19:24   ` John C. Ruttenberg
  1998-04-02 11:32   ` Ian Lance Taylor
  1998-03-30 16:18 ` Jim Wilson
  1 sibling, 2 replies; 5+ messages in thread
From: H.J. Lu @ 1998-03-29  5:14 UTC (permalink / raw)
  To: rutt; +Cc: egcs

> 
> I'm trying to build a cross compiler i686-linux -> mips-elf.  I tried to
> follow the instructions in
> ftp://ftp.cygnus.com/pub/embedded/crossgcc/FAQ-0.8.1 , but perhaps I haven't
> done as well as I could.  I'll give the exact steps I followed at the end of
> the message.
> 

I will look into this if it is still not solved next week.

> The problem is that the make of egcs errors out with:
> 
>     GNU assembler version 2.8.1 (mips-elf), using BFD version 2.8.1
>      mips-tfile -v -o _muldi3.o /tmp/cca01170.s
>     xgcc: installation problem, cannot exec `mips-tfile': No such file or directory
> 
> This happens when it is trying to compile _muldi3.o with the following
> command:
> 
>     /home/rutt/src/egcs-1.0.2/mips/gcc/xgcc \
>         -B/home/rutt/src/egcs-1.0.2/mips/gcc/ -O2  -DCROSS_COMPILE -DIN_GCC \
>         -g -O2 -I./include  -G 0 -g1 -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED \
>         -fexceptions    -I. -I../../gcc -I../../gcc/config -c -DL_muldi3 \
>         ../../gcc/libgcc2.c -o _muldi3.o -v
> 
> I found the source to mips-tfile in the egcs tree, but I can't build it:
> 
>     [rutt@gertie gcc]$ make mips-tfile
>     gcc -c -DCROSS_COMPILE -DIN_GCC    -g  -DHAVE_CONFIG_H     -I. -I../../gcc -I../../gcc/config ../../gcc/mips-tfile.c
>     ../../gcc/mips-tfile.c:719: mips/a.out.h: No such file or directory
> 
> >From glancing at it, I don't understand why I should need it.  It seems to be
> a COFF thing.
> 
> Here are the steps I followed:
> 
>      1. cd binutils-2.8.1
>      2. configure --target=mips-elf --host=i686-linux -prefix=/home/rutt/cross/mips 
>      3. make all install
>      4. cd ../egcs-1.0.2
>      5. mkdir mips
>      6. ../configure --target=mips-elf --host=i686-linux -prefix=/home/rutt/cross/mips 
>      7. make cross
> 

Are you using glibc 2? If you are not sure, I would recommend to leave
out the --host part and let configure figure out what your host is.


-- 
H.J.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Problems building a cross compiler (toolchain)
  1998-03-25 17:22 Problems building a cross compiler (toolchain) John C. Ruttenberg
  1998-03-29  5:14 ` H.J. Lu
@ 1998-03-30 16:18 ` Jim Wilson
  1 sibling, 0 replies; 5+ messages in thread
From: Jim Wilson @ 1998-03-30 16:18 UTC (permalink / raw)
  To: rutt; +Cc: egcs

	I'm trying to build a cross compiler i686-linux -> mips-elf.
	xgcc: installation problem, cannot exec `mips-tfile': No such file or directory

You have to use --with-gnu-as when configuring a cross compiler to the mips.
You probably should use --with-gnu-ld also for good measure.  mips-tfile
will not be needed if you do this.

Jim

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Problems building a cross compiler (toolchain)
  1998-03-29  5:14 ` H.J. Lu
  1998-03-28 19:24   ` John C. Ruttenberg
@ 1998-04-02 11:32   ` Ian Lance Taylor
  1 sibling, 0 replies; 5+ messages in thread
From: Ian Lance Taylor @ 1998-04-02 11:32 UTC (permalink / raw)
  To: hjl; +Cc: rutt, egcs

   From: hjl@lucon.org (H.J. Lu)
   Date: Sat, 28 Mar 1998 09:32:11 -0800 (PST)

   > I'm trying to build a cross compiler i686-linux -> mips-elf.  I tried to
   > follow the instructions in
   > ftp://ftp.cygnus.com/pub/embedded/crossgcc/FAQ-0.8.1 , but perhaps I haven't
   > done as well as I could.  I'll give the exact steps I followed at the end of
   > the message.
   > 

   I will look into this if it is still not solved next week.

You don't want mips-tfile, because it doesn't work as a cross tool.
You want to use gas instead.  Configure using --with-gnu-as to avoid
getting mips-tfile.

Ian

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~1998-04-02 11:32 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1998-03-25 17:22 Problems building a cross compiler (toolchain) John C. Ruttenberg
1998-03-29  5:14 ` H.J. Lu
1998-03-28 19:24   ` John C. Ruttenberg
1998-04-02 11:32   ` Ian Lance Taylor
1998-03-30 16:18 ` Jim Wilson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).