Russell:
As a guess, instead of make try make bootstrap
make all-recursive Making all in intl Making all in lib Making all in makeinfo Bootstrapping the compiler make: don't know how to make bootstrap. Stop *** Error code 2
Tom
On Mon, 15 Apr 2002, Tom Schneider wrote:
Russell:
As a guess, instead of make try make bootstrap
make all-recursive Making all in intl Making all in lib Making all in makeinfo Bootstrapping the compiler make: don't know how to make bootstrap. Stop *** Error code 2
I just now downloaded gcc-core and checked the info in the install directory. It does call for "make bootstrap" so let's back up a bit.
From the {src} directory "rm -r " everything except the two tar.gz
files.
1. untar the gpc file: tar -vxzf gpc-20020410.tar.gz
2. I use the gpc-20020410 directory to build in so I'll know what release this build was. So move gcc into it: mv gpc-core-2.95.2.tar.gz gpc-20020410
3. Next, cd gpc-20020410
4. make a build dir: mkdir build
5. untar gcc: tar -vxzf gcc-core-2.95.2.tar.gz
6. We can now move p down two directories to where it belongs: mv p gcc-2.95.2/gcc
7. Now the setup is finished so we cd to the build dir: cd build
8. Ready to configure: I use the default dirs for the installation dirs, you may need to add yours. Note the relative path: ../gcc-2.95.2/configure --enable-languages=pascal
9. If that went ok you can now build it: make boostrap or, if you are short of disk space, make bootstrap-lean
Good luck, Russ