-
Notifications
You must be signed in to change notification settings - Fork 2
/
demo-ia64.sh
executable file
·30 lines (26 loc) · 1.27 KB
/
demo-ia64.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/bin/sh
# This script has one line for each known working toolchain
# for this architecture. Uncomment the one you want.
# Generated by generate-demo.pl from buildlogs/all.dats.txt
set -ex
TARBALLS_DIR=$HOME/downloads
RESULT_TOP=/opt/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 ia64.dat gcc-3.2.3-glibc-2.3.2.dat` sh all.sh --notest
#eval `cat ia64.dat gcc-3.2.3-glibc-2.3.2-tls.dat` sh all.sh --notest
#eval `cat ia64.dat gcc-3.3.6-glibc-2.3.2.dat` sh all.sh --notest
#eval `cat ia64.dat gcc-3.3.6-glibc-2.3.5.dat` sh all.sh --notest
#eval `cat ia64.dat gcc-3.3.6-glibc-2.3.5-tls.dat` sh all.sh --notest
#eval `cat ia64.dat gcc-3.3.6-glibc-2.3.6.dat` sh all.sh --notest
#eval `cat ia64.dat gcc-3.3.6-glibc-2.3.6-tls.dat` sh all.sh --notest
#eval `cat ia64.dat gcc-3.4.5-glibc-2.3.2.dat` sh all.sh --notest
#eval `cat ia64.dat gcc-3.4.5-glibc-2.3.5.dat` sh all.sh --notest
#eval `cat ia64.dat gcc-3.4.5-glibc-2.3.5-tls.dat` sh all.sh --notest
#eval `cat ia64.dat gcc-3.4.5-glibc-2.3.6.dat` sh all.sh --notest
eval `cat ia64.dat gcc-3.4.5-glibc-2.3.6-tls.dat` sh all.sh --notest
echo Done.