#!/bin/sh 
# This script has one line for each known working toolchain 
# for this architecture.  Uncomment the one you want.
# Generated manually; do not forget to update 
# patches/glibc-2.3.2/glibc-2.3.3-allow-gcc-4.0-configure.patch
# from 4.[01] to 4.[0123] for newer GCC

set -ex
TARBALLS_DIR=$HOME/src/crosstool/downloads
RESULT_TOP=$HOME/src/crosstool
export TARBALLS_DIR RESULT_TOP
GCC_LANGUAGES="c,c++"
export GCC_LANGUAGES

# Really, you should do the mkdir before running this,
# and chown /opt/crosstool to yourself so you don't need to run as root.
mkdir -p $RESULT_TOP

#eval `cat powerpc-8349.dat gcc-3.2.3-glibc-2.2.5.dat` sh all.sh --notest 
#eval `cat powerpc-8349.dat gcc-3.2.3-glibc-2.3.2.dat` sh all.sh --notest 
#eval `cat powerpc-8349.dat gcc-3.3.6-glibc-2.2.5.dat` sh all.sh --notest 
#eval `cat powerpc-8349.dat gcc-3.3.6-glibc-2.3.2.dat` sh all.sh --notest 
#eval `cat powerpc-8349.dat gcc-3.3.6-glibc-2.3.5.dat` sh all.sh --notest 
#eval `cat powerpc-8349.dat gcc-3.3.6-glibc-2.3.6.dat` sh all.sh --notest 
#eval `cat powerpc-8349.dat gcc-3.4.5-glibc-2.2.5.dat` sh all.sh --notest 
#eval `cat powerpc-8349.dat gcc-3.4.5-glibc-2.3.2.dat` sh all.sh --notest 
#eval `cat powerpc-8349.dat gcc-3.4.5-glibc-2.3.5.dat` sh all.sh --notest 
#eval `cat powerpc-8349.dat gcc-3.4.5-glibc-2.3.6.dat` sh all.sh --notest 
#eval `cat powerpc-8349.dat gcc-4.0.2-glibc-2.3.2.dat` sh all.sh --notest 
#eval `cat powerpc-8349.dat gcc-4.0.2-glibc-2.3.5.dat` sh all.sh --notest 
#eval `cat powerpc-8349.dat gcc-4.0.2-glibc-2.3.6.dat` sh all.sh --notest 
#eval `cat powerpc-8349.dat gcc-4.1.0-glibc-2.3.2.dat` sh all.sh --notest 
#eval `cat powerpc-8349.dat gcc-4.1.0-glibc-2.3.5.dat` sh all.sh --notest 
eval `cat powerpc-8349.dat gcc-3.4.3-glibc-2.3.2.dat` sh all.sh --notest 


