Lines Matching refs:gcc
3 # Simple script to build GCC natively including its prerequisites.
5 # Depending on your needs you maybe able to speed up the GCC build:
16 BUILD_DIR=/tmp/build-gcc
36 wget ftp://ftp.gnu.org/gnu/gcc/gcc-$GCC_VERSION/gcc-$GCC_VERSION.tar.bz2
38 # Build GCC
39 echo "...building GCC"
40 rm -rf gcc-$GCC_VERSION
41 tar xf gcc-$GCC_VERSION.tar.bz2
42 cd gcc-$GCC_VERSION
48 ../gcc-$GCC_VERSION/configure --prefix=$INSTALL_DIR --disable-bootstrap \
49 $MULTILIB --enable-languages=$LANGUAGES 2>&1 > gcc-config.log
50 make -s 2>&1 > gcc-make.log
51 make -s install 2>&1 > gcc-install.log
52 mv gcc-config.log gcc-make.log gcc-install.log ..