summaryrefslogtreecommitdiffstats
path: root/taskcluster/scripts/misc/build-gcc-linux.sh
blob: 7621ec4aaae3cefe498b8859adacfd61ef7429ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash
set -e

# This script is for building GCC for Linux.

WORKSPACE=$HOME/workspace
HOME_DIR=$WORKSPACE/build
UPLOAD_DIR=$WORKSPACE/artifacts

cd $HOME_DIR/src

build/unix/build-gcc/build-gcc.sh $HOME_DIR

# Put a tarball in the artifacts dir
mkdir -p $UPLOAD_DIR
cp $HOME_DIR/gcc.tar.* $UPLOAD_DIR