Date: Fri, 18 Feb 94 12:32:18 -0500 From: U-E59264-Osman Buyukisik To: dj AT ctron DOT com Cc: garym AT argos DOT rose DOT utoronto DOT ca, djgpp AT sun DOT soe DOT clarkson DOT edu Subject: Re: Cross Compiling >>>>> "DJ" == DJ Delorie writes: >> How about the inverse problem: Is it possible to compile a unix >> GCC to cross-compile for the go32/MsDOS? DJ> Cygnus has actually done this, but I don't know how automatic DJ> it is. I also tried it on hp710/hpux8.07 and succeded in building gcc only not c++. The configure file needs to be expanded to include a case for i386-ibm-go32 , and also the binutils are set up for aout system not coff so I worked with go32 1.09, and libs and built 2.5.8. Here is the diff for configure : 538,543d537 < i[34]86-ibm-go32) # Intel 80386's running GO32/djgpp < cpu_type=i386 < xm_file=i386/xm-dos.h < xmake_file=i386/x-sysv3 < tm_file=i386/go32.h < ;; I dont know how hard it is to build it for 1.11 since it uses coff format. Osman