Home | History | Annotate | Line # | Download | only in contrib
download_prerequisites revision 1.1
      1  1.1  mrg #! /bin/sh
      2  1.1  mrg 
      3  1.1  mrg # Download some prerequisites needed by gcc.
      4  1.1  mrg # Run this from the top level of the gcc source tree and the gcc
      5  1.1  mrg # build will do the right thing.
      6  1.1  mrg #
      7  1.1  mrg # (C) 2010 Free Software Foundation
      8  1.1  mrg #
      9  1.1  mrg # This program is free software: you can redistribute it and/or modify
     10  1.1  mrg # it under the terms of the GNU General Public License as published by
     11  1.1  mrg # the Free Software Foundation, either version 3 of the License, or
     12  1.1  mrg # (at your option) any later version.
     13  1.1  mrg # 
     14  1.1  mrg # This program is distributed in the hope that it will be useful, but
     15  1.1  mrg # WITHOUT ANY WARRANTY; without even the implied warranty of
     16  1.1  mrg # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
     17  1.1  mrg # General Public License for more details.
     18  1.1  mrg # 
     19  1.1  mrg # You should have received a copy of the GNU General Public License
     20  1.1  mrg # along with this program. If not, see http://www.gnu.org/licenses/.
     21  1.1  mrg 
     22  1.1  mrg MPFR=mpfr-2.4.2
     23  1.1  mrg GMP=gmp-4.3.2
     24  1.1  mrg MPC=mpc-0.8.1
     25  1.1  mrg 
     26  1.1  mrg wget ftp://gcc.gnu.org/pub/gcc/infrastructure/$MPFR.tar.bz2 || exit 1
     27  1.1  mrg tar xjf $MPFR.tar.bz2 || exit 1
     28  1.1  mrg ln -sf $MPFR mpfr || exit 1
     29  1.1  mrg 
     30  1.1  mrg wget ftp://gcc.gnu.org/pub/gcc/infrastructure/$GMP.tar.bz2 || exit 1
     31  1.1  mrg tar xjf $GMP.tar.bz2  || exit 1
     32  1.1  mrg ln -sf $GMP gmp || exit 1
     33  1.1  mrg 
     34  1.1  mrg wget ftp://gcc.gnu.org/pub/gcc/infrastructure/$MPC.tar.gz || exit 1
     35  1.1  mrg tar xzf $MPC.tar.gz || exit 1
     36  1.1  mrg ln -sf $MPC mpc || exit 1
     37  1.1  mrg 
     38  1.1  mrg rm $MPFR.tar.bz2 $GMP.tar.bz2 $MPC.tar.gz || exit 1
     39