blob: b4e1d8bf6d83d97364384678c1bb6c4c95106cec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/bash
set -x -e -v
# This script is for building binutils for Linux.
cd $GECKO_PATH
PATH=$MOZ_FETCHES_DIR/gcc/bin:$PATH
build/unix/build-binutils/build-binutils.sh $MOZ_FETCHES_DIR
# Put a tarball in the artifacts dir
mkdir -p $UPLOAD_DIR
cp $MOZ_FETCHES_DIR/binutils.tar.* $UPLOAD_DIR
|