Mail Archives: djgpp/1995/06/15/10:13:15
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.
- Raw text -