From: Jan-Benedict G. <jb...@us...> - 2005-04-27 22:57:00
|
Update of /cvsroot/linux-vax/toolchain/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21356 Modified Files: build_toolchain.sh Log Message: - Use the old /usr/bin/env trick to play nice. - Actually, C++ builds fine (though, I haven't even *attempted* to run it). Index: build_toolchain.sh =================================================================== RCS file: /cvsroot/linux-vax/toolchain/scripts/build_toolchain.sh,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- build_toolchain.sh 20 Apr 2005 18:48:44 -0000 1.3 +++ build_toolchain.sh 27 Apr 2005 22:56:50 -0000 1.4 @@ -1,4 +1,4 @@ -#!/bin/sh +#!/usr/bin/env bash set -e @@ -21,8 +21,8 @@ # # -Werror behavior # -#WERROR="--disable-werror" -WERROR="" +WERROR="--disable-werror" +# WERROR="" # # Flags for make. @@ -180,6 +180,7 @@ GCC1_EXTRA_LANGUAGES=",c++" ;; vax*linux) + GCC1_EXTRA_LANGUAGES=",c++" ;; vax*netbsd) ;; @@ -188,7 +189,7 @@ vax*openbsd) BUILD_LD=0 ;; - i386*linux*) + i*86-linux) ;; *) echo "Configuration \"${TARGET}\" unknown..." >&2 @@ -377,7 +378,6 @@ # Build GCC, Part 1 # pushd "${GCC1_BUILD}" - # Configure execute "${GCC_SRC}/configure" \ --disable-multilib \ |