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]

egcs-ss-19990907 : bug in gcc/configure ?


Trying to build the 19990907 snapshot on a Linux machine
(i486-pc-linux-gnu), "configure" fails with an error at line 3588 in
gcc/configure.
I think the following section of configure:

        hppa*-*-lites*)
                tm_file="${tm_file} elfos.h pa/elf.h"
                target_cpu_default="MASK_PA_11"
                use_collect2=yes
                ;;
                tm_file="${tm_file} pa/pa-mpeix.h"
                xm_file=pa/xm-pampeix.h
                xmake_file=pa/x-pa-mpeix
                echo "You must use gas. Assuming it is already
installed."
                install_headers_dir=install-headers-tar
                fixincludes=Makefile.in
                use_collect2=yes
                ;;
        hppa*-*-mpeix*)
                tm_file="${tm_file} pa/pa-mpeix.h"
                xm_file=pa/xm-pampeix.h
                xmake_file=pa/x-pa-mpeix
                echo "You must use gas. Assuming it is already
installed."
                install_headers_dir=install-headers-tar
                fixincludes=Makefile.in
                use_collect2=yes
                ;;

should simply be

        hppa*-*-lites*)
                tm_file="${tm_file} elfos.h pa/elf.h"
                target_cpu_default="MASK_PA_11"
                use_collect2=yes
                ;;
        hppa*-*-mpeix*)
                tm_file="${tm_file} pa/pa-mpeix.h"
                xm_file=pa/xm-pampeix.h
                xmake_file=pa/x-pa-mpeix
                echo "You must use gas. Assuming it is already
installed."
                install_headers_dir=install-headers-tar
                fixincludes=Makefile.in
                use_collect2=yes
                ;;

As I'm not familiar with the gcc source code and the installation
scripts, I don't know whether my diagnoses is correct. In any case, the
change allows configure to execute.

Marcel Cox



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