diff options
author | Thomas Graichen <graichen@cvs.openbsd.org> | 1997-04-04 13:21:36 +0000 |
---|---|---|
committer | Thomas Graichen <graichen@cvs.openbsd.org> | 1997-04-04 13:21:36 +0000 |
commit | 50325cbab454647a313ba68279c844e2bc6143af (patch) | |
tree | 0e52e902317bb4442448c5c61ab6d2162111a240 /gnu/usr.bin/gcc/configure | |
parent | b2ad87cb6f8d3d16576e4e93251e0228f0672cdc (diff) |
sync g77 to version 0.5.20 - i hope i got everything right because there
is no patch from 0.5.19 to 0.5.20 - so i did it by diffing two gcc trees
looking carefully at the results
what does the new g77 give us:
* now it completely works on the alpha (64bit)
* faster
* less bugs :-)
Diffstat (limited to 'gnu/usr.bin/gcc/configure')
-rw-r--r-- | gnu/usr.bin/gcc/configure | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/gnu/usr.bin/gcc/configure b/gnu/usr.bin/gcc/configure index e072cbf286e..5a0a5b72a13 100644 --- a/gnu/usr.bin/gcc/configure +++ b/gnu/usr.bin/gcc/configure @@ -81,6 +81,7 @@ exec_prefix='$(prefix)' # # The default g++ include directory is $(libdir)/g++-include. gxx_include_dir='$(libdir)/g++-include' +#gxx_include_dir='$(exec_prefix)/include/g++' # Default --program-transform-name to nothing. program_transform_name= @@ -555,6 +556,13 @@ for machine in $canon_build $canon_host $canon_target; do tmake_file=t-libc-ok xmake_file=x-openbsd ;; + alpha-*-linux*) + tm_file=alpha/linux.h + tmake_file=alpha/t-linux + xmake_file=alpha/x-linux + fixincludes=Makefile.in + xm_file=alpha/xm-linux.h + ;; alpha-dec-osf[23456789]*) tm_file=alpha/osf2.h if [ x$stabs = xyes ] @@ -1001,7 +1009,7 @@ for machine in $canon_build $canon_host $canon_target; do i[345]86-*-linux*oldld*) # Intel 80386's running Linux cpu_type=i386 # with a.out format using pre BFD linkers xm_file=i386/xm-linux.h - xmake_file=x-linux + xmake_file=x-linux-aout tm_file=i386/linux-oldld.h fixincludes=Makefile.in #On Linux, the headers are ok already. broken_install=yes @@ -1010,7 +1018,7 @@ for machine in $canon_build $canon_host $canon_target; do i[345]86-*-linux*aout*) # Intel 80386's running Linux cpu_type=i386 # with a.out format xm_file=i386/xm-linux.h - xmake_file=x-linux + xmake_file=x-linux-aout tm_file=i386/linux-aout.h fixincludes=Makefile.in #On Linux, the headers are ok already. broken_install=yes @@ -1019,7 +1027,7 @@ for machine in $canon_build $canon_host $canon_target; do i[345]86-*-linux*) # Intel 80386's running Linux cpu_type=i386 # with ELF format xm_file=i386/xm-linux.h - xmake_file=x-linux + xmake_file=x-linux-aout tm_file=i386/linux.h fixincludes=Makefile.in #On Linux, the headers are ok already. broken_install=yes |