Folks;
I'm trying to install gcc-3.4.6 & install SWIG tool on Solaris 10 (Sparc), but when i try to run make for gcc i got this error below:
make: Fatal error: Command failed for target `all-gcc'
and when i try to run "make install" to install swig, i got this error:
*** Error code 2
The following command caused the error:
for lang in gcj typemaps
tcl perl5 python guile java mzscheme ruby php4 ocaml pike chicken csharp modula3 allegrocl clisp lua cffi uffi std; \
do \
echo "Installing language specific files for $lang"; \
dst=/usr/local/share/swig/1.3.29/$lang; \
/opt/packages/swig-1.3.29/Tools/config/install-sh -m 0755 -d $dst; \
(doti="`cd ./Lib/$lang && ls *.i 2>/dev/null`" || doti=""; \
dotswg="`cd ./Lib/$lang && ls *.swg 2>/dev/null`" || dotswg=""; \
if [ -f ./Lib/$lang/extra-install.list ]; then \
extra="`
sed '/^#/d' ./Lib/$lang/extra-install.list`"; \
fi; \
files="`echo $doti $dotswg $extra`"; \
if [ x"$files" = x ]; then \
echo "Installing nothing from Lib/$lang"; \
else for file in $doti $dotswg $extra; \
do \
echo "Installing $dst/$file"; \
/opt/packages/swig-1.3.29/Tools/config/install-sh -c -m 644 ./Lib/$lang/$file $dst/$file; \
done; \
fi) ; \
done
make: Fatal error: Command failed for target `install-lib'