Xref: news-dnh.mv.net comp.os.msdos.djgpp:383 Newsgroups: comp.os.msdos.djgpp Path: news-dnh.mv.net!dj From: dj (DJ Delorie) Subject: Re: [Q] Compiling GCC-2.6.3 Nntp-Posting-Host: delorie.com Sender: usenet AT jade DOT mv DOT net (System Administrator) Organization: DJ Delorie/DJGPP Support Date: Thu, 15 Jun 1995 12:34:47 GMT References: <1995Jun13 DOT 091319 DOT 9151 AT sp1> To: djgpp AT sun DOT soe DOT clarkson DOT edu Dj-Gateway: from newsgroup comp.os.msdos.djgpp In article <1995Jun13 DOT 091319 DOT 9151 AT sp1> gremeau AT mystix DOT enpc DOT fr (Patrice GREMEAU) writes: > I'm trying to recompile gcc. I've runned configur.bat then make. > After 2 hours... I get xgcc. But there is no indication of what to > do next. I've tryied 'make stage1' but there is something like a bug > in mv (mv *.o ...h ... stage1 => last argument must be a directory) > perhaps because the directory stage1 doesn't exist. What should i do > next ? After the first pass, I do this: mkdir stage1 copy xgcc stage1\gcc copy cc1 stage1\cc1 copy cccp stage1\cpp cd stage1 coff2exe * del gcc del cpp del cc1 cd .. del *.o Then, you can proceed with the make for stage2. After stage2, I repeat the above, but copy the .exe's into the bin directory. The build should also produce libgcc.a, which should get copied to the lib directory.