Date: Mon, 26 Jul 93 17:22:49 -0400 From: DJ Delorie To: MFINE AT delphi DOT com Cc: djgpp AT sun DOT soe DOT clarkson DOT edu Subject: Re: Cross support setup issues? > I'd like to find a place to discuss issues related to maintaining one set > of source code and compiling for various UNIX targets, as well as DOS and > OS/2. I've got gcc and djgpp and am trying to figure out the best way to > set up a reasonable development system. > Does anyone know of a bboard or mailing-list which directly attacks these issues? The GCC sources themselves are set up for this. All you need to do is copy the built Makefile to an empty directory, manually add a VPATH statement to it, copy the correct build-specific files (the ones that update builds in configure.bat) to the directory, and make. Note that the paths built into gcc for cross compiling assume that you are putting stuff in /usr/local/..., unless you change that in the Makefile. Caveat: It's not quite as simple as it sounds, but it is pretty straightforward. DJ