From: "Andrew Crabtree" Newsgroups: comp.os.msdos.djgpp Subject: Re: Rebuilding gcc -- cc1plus and gxx not made Date: 11 Sep 1997 16:35:12 GMT Organization: Hewlett Packard Lines: 17 Message-ID: <01bcbed0$d75506c0$45111d0f@ros51675cra> References: <199709100234 DOT TAA28521 AT adit DOT ap DOT net> <34173cba DOT 5872078 AT snews DOT zippo DOT com> NNTP-Posting-Host: ros51675cra.rose.hp.com To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Precedence: bulk Peter J. Farley III wrote in article <34173cba DOT 5872078 AT snews DOT zippo DOT com>... > Nate Eldredge wrote: > > >Also, gxx is not part of gcc per se, but one of the utils. All it does is > >something like: > >gcc $@ -lgpp -lstdcx -lm > >in shell script format. You don't need to rebuild gxx. > > Eli can correct me if I'm wrong on this, but gxx really *is* an exe in > DJGPP, and not just one of the utils. I'm not Eli but the above description of gxx is basically correct. It is not a shell script, but an exe. It simply duplicates its own arg list, appends the libraries, and then execs gcc. Andrew