public inbox for gcc@gcc.gnu.org
 help / color / mirror / Atom feed
* Building a cross-compiler for i586-pc-msdosdjgpp under gcc-2.95.1fails
@ 1999-10-24  6:01 Alex Buell
  1999-10-25  1:33 ` Building a cross-compiler for i586-pc-msdosdjgpp under gcc-2.95.1 fails Andris Pavenis
  1999-10-31 23:35 ` Building a cross-compiler for i586-pc-msdosdjgpp under gcc-2.95.1fails Alex Buell
  0 siblings, 2 replies; 10+ messages in thread
From: Alex Buell @ 1999-10-24  6:01 UTC (permalink / raw)
  To: Mailing List - GCC

I've been trying to build a cross-compiler so I can port some of my UNIX
code to 32bit DOS with gcc-2.95.1 - but it blows up with an error at the
following point:

for name in _muldi3 _divdi3 _moddi3 _udivdi3 _umoddi3 _negdi2 _lshrdi3
_ashldi3 _ashrdi3 _ffsdi2 _udiv_w_sdiv _udivmoddi4 _cmpdi2 _ucmpdi2
_floatdidf _floatdisf _fixunsdfsi _fixunssfsi _fixunsdfdi _fixdfdi
_fixunssfdi _fixsfdi _fixxfdi _fixunsxfdi _floatdixf _fixunsxfsi _fixtfdi
_fixunstfdi _floatditf __gcc_bcmp _varargs __dummy _eprintf _bb _shtab
_clear_cache _trampoline __main _exit _ctors _pure; \
do \
  echo ${name}; \
  ./xgcc -B/usr/i586-pc-msdosdjgpp/bin/ -B./
-I/usr/i586-pc-msdosdjgpp/include -O2  -DCROSS_COMPILE -DIN_GCC     -g
-I./include   -g1  -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED
-I. -I../../gcc-2.95.1/gcc -I../../gcc-2.95.1/gcc/config
-I../../gcc-2.95.1/gcc/../include -c -DL${name} \
       ../../gcc-2.95.1/gcc/libgcc2.c -o ${name}.o; \
  if [ $? -eq 0 ] ; then true; else exit 1; fi; \
  ` if [ -f /home/alex/src/objdir/gcc/../binutils/ar ] ; then echo
/home/alex/src/objdir/gcc/../binutils/ar ; else if [ "i686-pc-linux-gnu" =
"i586-pc-msdosdjgpp" ] ; then echo ar; else t='s,x,x,'; echo ar | sed -e
$t ; fi; fi` rc tmplibgcc2.a ${name}.o; \
  rm -f ${name}.o; \
done
_muldi3
../../gcc-2.95.1/gcc/libgcc2.c:41: stdlib.h: No such file or directory
../../gcc-2.95.1/gcc/libgcc2.c:42: unistd.h: No such file or directory
make[2]: *** [libgcc2.a] Error 1
make[2]: Leaving directory `/home/alex/src/objdir/gcc'
make[1]: *** [bootstrap] Error 2
make[1]: Leaving directory `/home/alex/src/objdir/gcc'
make: *** [bootstrap] Error 2

I have successfully built and installed binutils-2.9.5.0.16 targeted for
i586-pc-msdosdjgpp. 

Any ideas or patches? 

Cheers, 
Alex 
-- 

Legalise cannabis today! Got PGP? Ask me for public key. 

http://www.tahallah.demon.co.uk - updated!

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

* Re: Building a cross-compiler for i586-pc-msdosdjgpp under gcc-2.95.1 fails
  1999-10-24  6:01 Building a cross-compiler for i586-pc-msdosdjgpp under gcc-2.95.1fails Alex Buell
@ 1999-10-25  1:33 ` Andris Pavenis
  1999-10-25 14:37   ` Building a cross-compiler for i586-pc-msdosdjgpp under gcc-2.95.1fails Alex Buell
  1999-10-31 23:35   ` Building a cross-compiler for i586-pc-msdosdjgpp under gcc-2.95.1 fails Andris Pavenis
  1999-10-31 23:35 ` Building a cross-compiler for i586-pc-msdosdjgpp under gcc-2.95.1fails Alex Buell
  1 sibling, 2 replies; 10+ messages in thread
From: Andris Pavenis @ 1999-10-25  1:33 UTC (permalink / raw)
  To: alex.buell, Alex Buell, Mailing List - GCC

On Sun, 24 Oct 1999, Alex Buell wrote:
> I've been trying to build a cross-compiler so I can port some of my UNIX
> code to 32bit DOS with gcc-2.95.1 - but it blows up with an error at the
> following point:
> 
> for name in _muldi3 _divdi3 _moddi3 _udivdi3 _umoddi3 _negdi2 _lshrdi3
> _ashldi3 _ashrdi3 _ffsdi2 _udiv_w_sdiv _udivmoddi4 _cmpdi2 _ucmpdi2
> _floatdidf _floatdisf _fixunsdfsi _fixunssfsi _fixunsdfdi _fixdfdi
> _fixunssfdi _fixsfdi _fixxfdi _fixunsxfdi _floatdixf _fixunsxfsi _fixtfdi
> _fixunstfdi _floatditf __gcc_bcmp _varargs __dummy _eprintf _bb _shtab
> _clear_cache _trampoline __main _exit _ctors _pure; \
> do \
>   echo ${name}; \
>   ./xgcc -B/usr/i586-pc-msdosdjgpp/bin/ -B./
> -I/usr/i586-pc-msdosdjgpp/include -O2  -DCROSS_COMPILE -DIN_GCC     -g
> -I./include   -g1  -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED
> -I. -I../../gcc-2.95.1/gcc -I../../gcc-2.95.1/gcc/config
> -I../../gcc-2.95.1/gcc/../include -c -DL${name} \
>        ../../gcc-2.95.1/gcc/libgcc2.c -o ${name}.o; \
>   if [ $? -eq 0 ] ; then true; else exit 1; fi; \
>   ` if [ -f /home/alex/src/objdir/gcc/../binutils/ar ] ; then echo
> /home/alex/src/objdir/gcc/../binutils/ar ; else if [ "i686-pc-linux-gnu" =
> "i586-pc-msdosdjgpp" ] ; then echo ar; else t='s,x,x,'; echo ar | sed -e
> $t ; fi; fi` rc tmplibgcc2.a ${name}.o; \
>   rm -f ${name}.o; \
> done
> _muldi3
> ../../gcc-2.95.1/gcc/libgcc2.c:41: stdlib.h: No such file or directory
> .../../gcc-2.95.1/gcc/libgcc2.c:42: unistd.h: No such file or directory
> mmake[2]: *** [libgcc2.a] Error 1
> make[2]: Leaving directory `/home/alex/src/objdir/gcc'
> make[1]: *** [bootstrap] Error 2
> make[1]: Leaving directory `/home/alex/src/objdir/gcc'
> make: *** [bootstrap] Error 2

It is known problem.  fast fixincludes seems to be incompatible with DJGPP
header files. For native build (DJGPP) fast fixincludes does not work at
all (no working fork()). For building cross-compiler under Linux it breaks
header files.

Download source archive for DJGPP (gcc2951s.zip)
and use script I included for cross-compiling (I have tested that it works
on i586-pc-linux-gnu). I used hack to avoid running fast fixincludes
for cross-compiling.

> 
> I have successfully built and installed binutils-2.9.5.0.16 targeted for
> i586-pc-msdosdjgpp. 
> 
> Any ideas or patches? 
> 


Andris

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

* Re: Building a cross-compiler for i586-pc-msdosdjgpp under gcc-2.95.1fails
  1999-10-25  1:33 ` Building a cross-compiler for i586-pc-msdosdjgpp under gcc-2.95.1 fails Andris Pavenis
@ 1999-10-25 14:37   ` Alex Buell
  1999-10-26  6:11     ` Building a cross-compiler for i586-pc-msdosdjgpp under gcc-2.95.1 fails Andris Pavenis
  1999-10-31 23:35     ` Building a cross-compiler for i586-pc-msdosdjgpp under gcc-2.95.1fails Alex Buell
  1999-10-31 23:35   ` Building a cross-compiler for i586-pc-msdosdjgpp under gcc-2.95.1 fails Andris Pavenis
  1 sibling, 2 replies; 10+ messages in thread
From: Alex Buell @ 1999-10-25 14:37 UTC (permalink / raw)
  To: Andris Pavenis; +Cc: Mailing List - GCC

On Mon, 25 Oct 1999, Andris Pavenis wrote:

> It is known problem.  fast fixincludes seems to be incompatible with
> DJGPP header files. For native build (DJGPP) fast fixincludes does not
> work at all (no working fork()). For building cross-compiler under
> Linux it breaks header files.

Will this be fixed for 2.95.2, one would hope?
 
> Download source archive for DJGPP (gcc2951s.zip) and use script I
> included for cross-compiling (I have tested that it works on
> i586-pc-linux-gnu). I used hack to avoid running fast fixincludes for
> cross-compiling.

OK, I shall try that. However, living in Britain has its disadvantages,
expensive on-line phone charges. Do they provide this as a patch for pukka
2.95.1 that I can download and patch my vanilla copy of 2.95.1?

Cheers, 
Alex 
-- 

Legalise cannabis today! Got PGP? Ask me for public key. 

http://www.tahallah.demon.co.uk - updated!

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

* Re: Building a cross-compiler for i586-pc-msdosdjgpp under gcc-2.95.1 fails
  1999-10-25 14:37   ` Building a cross-compiler for i586-pc-msdosdjgpp under gcc-2.95.1fails Alex Buell
@ 1999-10-26  6:11     ` Andris Pavenis
  1999-10-31 23:35       ` Andris Pavenis
  1999-10-31 23:35     ` Building a cross-compiler for i586-pc-msdosdjgpp under gcc-2.95.1fails Alex Buell
  1 sibling, 1 reply; 10+ messages in thread
From: Andris Pavenis @ 1999-10-26  6:11 UTC (permalink / raw)
  To: Alex Buell; +Cc: Mailing List - GCC

On Tue, 26 Oct 1999, Alex Buell wrote:
> On Mon, 25 Oct 1999, Andris Pavenis wrote:
> 
> > It is known problem.  fast fixincludes seems to be incompatible with
> > DJGPP header files. For native build (DJGPP) fast fixincludes does not
> > work at all (no working fork()). For building cross-compiler under
> > Linux it breaks header files.
> 
> Will this be fixed for 2.95.2, one would hope?

It's does not byte for native build for targets i[3456]86-pc-msdosdjgpp
as fast fixincludes crashes immediatelly. I didn't want to mess with fast 
fix-includes for cross-compiling only so I used some hack to
prevent it to run. Also I thought that it's better to use the same sources also
for building cross-compiler.

>  
> > Download source archive for DJGPP (gcc2951s.zip) and use script I
> > included for cross-compiling (I have tested that it works on
> > i586-pc-linux-gnu). I used hack to avoid running fast fixincludes for
> > cross-compiling.
> 
> OK, I shall try that. However, living in Britain has its disadvantages,
> expensive on-line phone charges. Do they provide this as a patch for pukka
> 2.95.1 that I can download and patch my vanilla copy of 2.95.1?
> 

download  gcc2951s2.zip from DJGPP distribution (about 45K). It contains
script I'm using to generate source archive for DJGPP (and needed patches
of course). You'll still need original gcc-2.95.1 and libg++-2.8.1.3 sources.

Andris

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

* Re: Building a cross-compiler for i586-pc-msdosdjgpp under gcc-2.95.1fails
  1999-10-25 14:37   ` Building a cross-compiler for i586-pc-msdosdjgpp under gcc-2.95.1fails Alex Buell
  1999-10-26  6:11     ` Building a cross-compiler for i586-pc-msdosdjgpp under gcc-2.95.1 fails Andris Pavenis
@ 1999-10-31 23:35     ` Alex Buell
  1 sibling, 0 replies; 10+ messages in thread
From: Alex Buell @ 1999-10-31 23:35 UTC (permalink / raw)
  To: Andris Pavenis; +Cc: Mailing List - GCC

On Mon, 25 Oct 1999, Andris Pavenis wrote:

> It is known problem.  fast fixincludes seems to be incompatible with
> DJGPP header files. For native build (DJGPP) fast fixincludes does not
> work at all (no working fork()). For building cross-compiler under
> Linux it breaks header files.

Will this be fixed for 2.95.2, one would hope?
 
> Download source archive for DJGPP (gcc2951s.zip) and use script I
> included for cross-compiling (I have tested that it works on
> i586-pc-linux-gnu). I used hack to avoid running fast fixincludes for
> cross-compiling.

OK, I shall try that. However, living in Britain has its disadvantages,
expensive on-line phone charges. Do they provide this as a patch for pukka
2.95.1 that I can download and patch my vanilla copy of 2.95.1?

Cheers, 
Alex 
-- 

Legalise cannabis today! Got PGP? Ask me for public key. 

http://www.tahallah.demon.co.uk - updated!

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

* Building a cross-compiler for i586-pc-msdosdjgpp under gcc-2.95.1fails
  1999-10-24  6:01 Building a cross-compiler for i586-pc-msdosdjgpp under gcc-2.95.1fails Alex Buell
  1999-10-25  1:33 ` Building a cross-compiler for i586-pc-msdosdjgpp under gcc-2.95.1 fails Andris Pavenis
@ 1999-10-31 23:35 ` Alex Buell
  1 sibling, 0 replies; 10+ messages in thread
From: Alex Buell @ 1999-10-31 23:35 UTC (permalink / raw)
  To: Mailing List - GCC

I've been trying to build a cross-compiler so I can port some of my UNIX
code to 32bit DOS with gcc-2.95.1 - but it blows up with an error at the
following point:

for name in _muldi3 _divdi3 _moddi3 _udivdi3 _umoddi3 _negdi2 _lshrdi3
_ashldi3 _ashrdi3 _ffsdi2 _udiv_w_sdiv _udivmoddi4 _cmpdi2 _ucmpdi2
_floatdidf _floatdisf _fixunsdfsi _fixunssfsi _fixunsdfdi _fixdfdi
_fixunssfdi _fixsfdi _fixxfdi _fixunsxfdi _floatdixf _fixunsxfsi _fixtfdi
_fixunstfdi _floatditf __gcc_bcmp _varargs __dummy _eprintf _bb _shtab
_clear_cache _trampoline __main _exit _ctors _pure; \
do \
  echo ${name}; \
  ./xgcc -B/usr/i586-pc-msdosdjgpp/bin/ -B./
-I/usr/i586-pc-msdosdjgpp/include -O2  -DCROSS_COMPILE -DIN_GCC     -g
-I./include   -g1  -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED
-I. -I../../gcc-2.95.1/gcc -I../../gcc-2.95.1/gcc/config
-I../../gcc-2.95.1/gcc/../include -c -DL${name} \
       ../../gcc-2.95.1/gcc/libgcc2.c -o ${name}.o; \
  if [ $? -eq 0 ] ; then true; else exit 1; fi; \
  ` if [ -f /home/alex/src/objdir/gcc/../binutils/ar ] ; then echo
/home/alex/src/objdir/gcc/../binutils/ar ; else if [ "i686-pc-linux-gnu" =
"i586-pc-msdosdjgpp" ] ; then echo ar; else t='s,x,x,'; echo ar | sed -e
$t ; fi; fi` rc tmplibgcc2.a ${name}.o; \
  rm -f ${name}.o; \
done
_muldi3
../../gcc-2.95.1/gcc/libgcc2.c:41: stdlib.h: No such file or directory
../../gcc-2.95.1/gcc/libgcc2.c:42: unistd.h: No such file or directory
make[2]: *** [libgcc2.a] Error 1
make[2]: Leaving directory `/home/alex/src/objdir/gcc'
make[1]: *** [bootstrap] Error 2
make[1]: Leaving directory `/home/alex/src/objdir/gcc'
make: *** [bootstrap] Error 2

I have successfully built and installed binutils-2.9.5.0.16 targeted for
i586-pc-msdosdjgpp. 

Any ideas or patches? 

Cheers, 
Alex 
-- 

Legalise cannabis today! Got PGP? Ask me for public key. 

http://www.tahallah.demon.co.uk - updated!

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

* Re: Building a cross-compiler for i586-pc-msdosdjgpp under gcc-2.95.1 fails
  1999-10-26  6:11     ` Building a cross-compiler for i586-pc-msdosdjgpp under gcc-2.95.1 fails Andris Pavenis
@ 1999-10-31 23:35       ` Andris Pavenis
  0 siblings, 0 replies; 10+ messages in thread
From: Andris Pavenis @ 1999-10-31 23:35 UTC (permalink / raw)
  To: Alex Buell; +Cc: Mailing List - GCC

On Tue, 26 Oct 1999, Alex Buell wrote:
> On Mon, 25 Oct 1999, Andris Pavenis wrote:
> 
> > It is known problem.  fast fixincludes seems to be incompatible with
> > DJGPP header files. For native build (DJGPP) fast fixincludes does not
> > work at all (no working fork()). For building cross-compiler under
> > Linux it breaks header files.
> 
> Will this be fixed for 2.95.2, one would hope?

It's does not byte for native build for targets i[3456]86-pc-msdosdjgpp
as fast fixincludes crashes immediatelly. I didn't want to mess with fast 
fix-includes for cross-compiling only so I used some hack to
prevent it to run. Also I thought that it's better to use the same sources also
for building cross-compiler.

>  
> > Download source archive for DJGPP (gcc2951s.zip) and use script I
> > included for cross-compiling (I have tested that it works on
> > i586-pc-linux-gnu). I used hack to avoid running fast fixincludes for
> > cross-compiling.
> 
> OK, I shall try that. However, living in Britain has its disadvantages,
> expensive on-line phone charges. Do they provide this as a patch for pukka
> 2.95.1 that I can download and patch my vanilla copy of 2.95.1?
> 

download  gcc2951s2.zip from DJGPP distribution (about 45K). It contains
script I'm using to generate source archive for DJGPP (and needed patches
of course). You'll still need original gcc-2.95.1 and libg++-2.8.1.3 sources.

Andris

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

* Re: Building a cross-compiler for i586-pc-msdosdjgpp under gcc-2.95.1 fails
  1999-10-25  1:33 ` Building a cross-compiler for i586-pc-msdosdjgpp under gcc-2.95.1 fails Andris Pavenis
  1999-10-25 14:37   ` Building a cross-compiler for i586-pc-msdosdjgpp under gcc-2.95.1fails Alex Buell
@ 1999-10-31 23:35   ` Andris Pavenis
  1 sibling, 0 replies; 10+ messages in thread
From: Andris Pavenis @ 1999-10-31 23:35 UTC (permalink / raw)
  To: alex.buell, Alex Buell, Mailing List - GCC

On Sun, 24 Oct 1999, Alex Buell wrote:
> I've been trying to build a cross-compiler so I can port some of my UNIX
> code to 32bit DOS with gcc-2.95.1 - but it blows up with an error at the
> following point:
> 
> for name in _muldi3 _divdi3 _moddi3 _udivdi3 _umoddi3 _negdi2 _lshrdi3
> _ashldi3 _ashrdi3 _ffsdi2 _udiv_w_sdiv _udivmoddi4 _cmpdi2 _ucmpdi2
> _floatdidf _floatdisf _fixunsdfsi _fixunssfsi _fixunsdfdi _fixdfdi
> _fixunssfdi _fixsfdi _fixxfdi _fixunsxfdi _floatdixf _fixunsxfsi _fixtfdi
> _fixunstfdi _floatditf __gcc_bcmp _varargs __dummy _eprintf _bb _shtab
> _clear_cache _trampoline __main _exit _ctors _pure; \
> do \
>   echo ${name}; \
>   ./xgcc -B/usr/i586-pc-msdosdjgpp/bin/ -B./
> -I/usr/i586-pc-msdosdjgpp/include -O2  -DCROSS_COMPILE -DIN_GCC     -g
> -I./include   -g1  -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED
> -I. -I../../gcc-2.95.1/gcc -I../../gcc-2.95.1/gcc/config
> -I../../gcc-2.95.1/gcc/../include -c -DL${name} \
>        ../../gcc-2.95.1/gcc/libgcc2.c -o ${name}.o; \
>   if [ $? -eq 0 ] ; then true; else exit 1; fi; \
>   ` if [ -f /home/alex/src/objdir/gcc/../binutils/ar ] ; then echo
> /home/alex/src/objdir/gcc/../binutils/ar ; else if [ "i686-pc-linux-gnu" =
> "i586-pc-msdosdjgpp" ] ; then echo ar; else t='s,x,x,'; echo ar | sed -e
> $t ; fi; fi` rc tmplibgcc2.a ${name}.o; \
>   rm -f ${name}.o; \
> done
> _muldi3
> ../../gcc-2.95.1/gcc/libgcc2.c:41: stdlib.h: No such file or directory
> .../../gcc-2.95.1/gcc/libgcc2.c:42: unistd.h: No such file or directory
> mmake[2]: *** [libgcc2.a] Error 1
> make[2]: Leaving directory `/home/alex/src/objdir/gcc'
> make[1]: *** [bootstrap] Error 2
> make[1]: Leaving directory `/home/alex/src/objdir/gcc'
> make: *** [bootstrap] Error 2

It is known problem.  fast fixincludes seems to be incompatible with DJGPP
header files. For native build (DJGPP) fast fixincludes does not work at
all (no working fork()). For building cross-compiler under Linux it breaks
header files.

Download source archive for DJGPP (gcc2951s.zip)
and use script I included for cross-compiling (I have tested that it works
on i586-pc-linux-gnu). I used hack to avoid running fast fixincludes
for cross-compiling.

> 
> I have successfully built and installed binutils-2.9.5.0.16 targeted for
> i586-pc-msdosdjgpp. 
> 
> Any ideas or patches? 
> 


Andris

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

* Building a cross-compiler for i586-pc-msdosdjgpp under gcc-2.95.1fails
  1999-10-24  6:02 Alex Buell
@ 1999-10-31 23:35 ` Alex Buell
  0 siblings, 0 replies; 10+ messages in thread
From: Alex Buell @ 1999-10-31 23:35 UTC (permalink / raw)
  To: Mailing List - GCC

Oops. I forgot to add, I used the following to configure the compiler:

 ../gcc-2.95.1/configure --prefix=/usr --target=i586-pc-msdosdjgpp
--enable-languages=c++,f77

Cheers, 
Alex 
-- 

Legalise cannabis today! Got PGP? Ask me for public key. 

http://www.tahallah.demon.co.uk - updated!

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

* Building a cross-compiler for i586-pc-msdosdjgpp under gcc-2.95.1fails
@ 1999-10-24  6:02 Alex Buell
  1999-10-31 23:35 ` Alex Buell
  0 siblings, 1 reply; 10+ messages in thread
From: Alex Buell @ 1999-10-24  6:02 UTC (permalink / raw)
  To: Mailing List - GCC

Oops. I forgot to add, I used the following to configure the compiler:

 ../gcc-2.95.1/configure --prefix=/usr --target=i586-pc-msdosdjgpp
--enable-languages=c++,f77

Cheers, 
Alex 
-- 

Legalise cannabis today! Got PGP? Ask me for public key. 

http://www.tahallah.demon.co.uk - updated!

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

end of thread, other threads:[~1999-10-31 23:35 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1999-10-24  6:01 Building a cross-compiler for i586-pc-msdosdjgpp under gcc-2.95.1fails Alex Buell
1999-10-25  1:33 ` Building a cross-compiler for i586-pc-msdosdjgpp under gcc-2.95.1 fails Andris Pavenis
1999-10-25 14:37   ` Building a cross-compiler for i586-pc-msdosdjgpp under gcc-2.95.1fails Alex Buell
1999-10-26  6:11     ` Building a cross-compiler for i586-pc-msdosdjgpp under gcc-2.95.1 fails Andris Pavenis
1999-10-31 23:35       ` Andris Pavenis
1999-10-31 23:35     ` Building a cross-compiler for i586-pc-msdosdjgpp under gcc-2.95.1fails Alex Buell
1999-10-31 23:35   ` Building a cross-compiler for i586-pc-msdosdjgpp under gcc-2.95.1 fails Andris Pavenis
1999-10-31 23:35 ` Building a cross-compiler for i586-pc-msdosdjgpp under gcc-2.95.1fails Alex Buell
1999-10-24  6:02 Alex Buell
1999-10-31 23:35 ` Alex Buell

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).