This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

strange error during make install of 4.6.3


I was surprised to see this pop up during make install :

.
.
.
rm -f /opt/bw/share/info/gcc.info
if [ -f doc/gcc.info ]; then \
  for f in doc/gcc.info*; do \
    realfile=`echo $f | sed -e 's|.*/\([^/]*\)$|\1|'`; \
    /opt/bw/src/gcc-4.6.3/install-sh -c -m 644 $f /opt/bw/share/info/$realfile; \
    chmod a-x /opt/bw/share/info/$realfile; \
  done; \
else true; fi
if /bin/bash -c 'install-info --version' >/dev/null 2>&1; then \
  if [ -f /opt/bw/share/info/gcc.info ]; then \
    install-info --dir-file=/opt/bw/share/info/dir /opt/bw/share/info/gcc.info; \
  else true; fi; \
else true; fi;
if [ x = xinfo ]; then \
        /opt/bw/src/gcc-4.6.3/missing makeinfo --split-size=5000000
--split-size=5000000 --no-split -I . -I ../../gcc-4.6.3/gcc/doc \
                -I ../../gcc-4.6.3/gcc/doc/include -o doc/cppinternals.info
../../gcc-4.6.3/gcc/doc/cppinternals.texi; \
fi
rm -f /opt/bw/share/info/cppinternals.info
if [ -f doc/cppinternals.info ]; then \
  for f in doc/cppinternals.info*; do \
    realfile=`echo $f | sed -e 's|.*/\([^/]*\)$|\1|'`; \
    /opt/bw/src/gcc-4.6.3/install-sh -c -m 644 $f /opt/bw/share/info/$realfile; \
    chmod a-x /opt/bw/share/info/$realfile; \
  done; \
else true; fi
if /bin/bash -c 'install-info --version' >/dev/null 2>&1; then \
  if [ -f /opt/bw/share/info/cppinternals.info ]; then \
    install-info --dir-file=/opt/bw/share/info/dir
/opt/bw/share/info/cppinternals.info; \
  else true; fi; \
else true; fi;
if [ x = xinfo ]; then \
        /opt/bw/src/gcc-4.6.3/missing makeinfo --split-size=5000000
--split-size=5000000 --no-split -I ../../gcc-4.6.3/gcc/doc \
                -I ../../gcc-4.6.3/gcc/doc/include -o doc/gccinstall.info
../../gcc-4.6.3/gcc/doc/install.texi; \
fi
rm -f /opt/bw/share/info/gccinstall.info
if [ -f doc/gccinstall.info ]; then \
  for f in doc/gccinstall.info*; do \
    realfile=`echo $f | sed -e 's|.*/\([^/]*\)$|\1|'`; \
    /opt/bw/src/gcc-4.6.3/install-sh -c -m 644 $f /opt/bw/share/info/$realfile; \
    chmod a-x /opt/bw/share/info/$realfile; \
  done; \
else true; fi
if /bin/bash -c 'install-info --version' >/dev/null 2>&1; then \
  if [ -f /opt/bw/share/info/gccinstall.info ]; then \
    install-info --dir-file=/opt/bw/share/info/dir
/opt/bw/share/info/gccinstall.info; \
  else true; fi; \
else true; fi;
build/genhooks \
                ../../gcc-4.6.3/gcc/doc/tm.texi.in > tmp-tm.texi
case `echo X|tr X '\101'` in \
  A) tr -d '\015' < tmp-tm.texi > tmp2-tm.texi ;; \
  *) tr -d '\r' < tmp-tm.texi > tmp2-tm.texi ;; \
esac
mv tmp2-tm.texi tmp-tm.texi
/bin/bash ../../gcc-4.6.3/gcc/../move-if-change tmp-tm.texi tm.texi
if [ x = xinfo ]; then \
        /opt/bw/src/gcc-4.6.3/missing makeinfo --split-size=5000000
--split-size=5000000 --no-split -I . -I ../../gcc-4.6.3/gcc/doc \
                -I ../../gcc-4.6.3/gcc/doc/include -o doc/gccint.info
../../gcc-4.6.3/gcc/doc/gccint.texi; \
fi
rm -f /opt/bw/share/info/gccint.info
if [ -f doc/gccint.info ]; then \
  for f in doc/gccint.info*; do \
    realfile=`echo $f | sed -e 's|.*/\([^/]*\)$|\1|'`; \
    /opt/bw/src/gcc-4.6.3/install-sh -c -m 644 $f /opt/bw/share/info/$realfile; \
    chmod a-x /opt/bw/share/info/$realfile; \
  done; \
else true; fi
if /bin/bash -c 'install-info --version' >/dev/null 2>&1; then \
  if [ -f /opt/bw/share/info/gccint.info ]; then \
    install-info --dir-file=/opt/bw/share/info/dir
/opt/bw/share/info/gccint.info; \
  else true; fi; \
else true; fi;
gmake ada/doctools/xgnatugn
gmake[3]: Entering directory `/opt/bw/src/gcc-4.6.3-SunOS5.8-i386/gcc'
mkdir -p ada/doctools
cp -p ../../gcc-4.6.3/gcc/ada/xgnatugn.adb ada/doctools
cd ada/doctools && gnatmake -q xgnatugn
gnatmake: "xgnatugn.ali" incompatible ALI file, please recompile
gnatmake: "xgnatugn.adb" compilation error
gmake[3]: *** [ada/doctools/xgnatugn] Error 4
gmake[3]: Leaving directory `/opt/bw/src/gcc-4.6.3-SunOS5.8-i386/gcc'
gmake[2]: *** [doc/projects.texi] Error 2
gmake[2]: Leaving directory `/opt/bw/src/gcc-4.6.3-SunOS5.8-i386/gcc'
gmake[1]: *** [install-gcc] Error 2
gmake[1]: Leaving directory `/opt/bw/src/gcc-4.6.3-SunOS5.8-i386'
gmake: *** [install] Error 2
$


Weird. Never saw that on sparc nor anywhere else.

There is a pre-existing GCC 4.5.3 as that was the compiler used
in stage 1 of the bootstrap.

Any thoughts anyone ?

dc


-- 
--
http://pgp.mit.edu:11371/pks/lookup?op=vindex&search=0x1D936C72FA35B44B
+-------------------------+-----------------------------------+
| Dennis Clarke           | Solaris and Linux and Open Source |
| dclarke@blastwave.org   | Respect for open standards.       |
+-------------------------+-----------------------------------+


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]