This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
[patch] alpha-dec-osf configuration
- To: egcs at cygnus dot com
- Subject: [patch] alpha-dec-osf configuration
- From: Bruno Haible <haible at ilog dot fr>
- Date: Mon, 9 Mar 1998 19:01:35 +0100 (MET)
- Cc: Richard Henderson <rth at cygnus dot com>
Hi,
Configuring egcs-980302 with
../configure --target=alpha-dec-osf
leads to a linker error when building cc1:
toplev.o: In function `compile_file':
/packages/gnu/egcs-980302/build-alpha/gcc/../../gcc/toplev.c:2454: undefined reference to `ASM_FILE_START'
Since the name "alpha-dec-osf" is a canonical one (it appears as output of
config.sub) ...
$ ./config.sub alpha-dec-osf
alpha-dec-osf
... it should be gcc's configure.in which ought to be fixed.
*** egcs-980302/gcc/configure.in.bak Wed Mar 4 02:46:08 1998
--- egcs-980302/gcc/configure.in Sat Mar 7 12:04:09 1998
***************
*** 366,371 ****
--- 366,374 ----
# Some versions of OSF4 (specifically X4.0-9 296.7) have
# a broken tar, so we use cpio instead.
install_headers_dir=install-headers-cpio
+ ;;
+ *-*-osf*)
+ tm_file="${tm_file} alpha/osf.h"
;;
esac
case $machine in
Bruno