On Tue, 2 Nov 1999, Mason Ip wrote:
Just tried it but could not compile on 32-bit Sparc Solaris 7. I used GCC-2.95.1 src (from www.sunfreeware.com), merged gpc/p to gcc-2.95.1, and patched GCC with p/diffs/gcc-2.95.1.diff. Upon Âmake LANGUAGES=pascalÂ, it failed and complained of not knowing how to make target ÂpascalÂ. Note the failing dir was gcc-2.95.1/gcc/. I expected Âmake should cd to ../p and Âmake pascal there. Anyone know how to fix it?
make LANGUAGES=<xxx> is not supported anymore. You have to use the --enable-languages=<xxx> flag when you run configure. In you case:
./configure --enable-languages=pascal
Read the documentation in the install directory in the gcc-2.95.1 source.