mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-04-03 13:02:57 +00:00

MozReview-Commit-ID: AEOShpN8ZMI --HG-- extra : rebase_source : fc8b99002c4944ae666b1a6922edc42d2b0805f4 extra : source : 86d07e6bd5b7197f249e5064ee600fe83b808fb1
17 lines
333 B
Bash
Executable File
17 lines
333 B
Bash
Executable File
#!/bin/bash
|
|
set -x -e -v
|
|
|
|
# This script is for building binutils for Linux.
|
|
|
|
WORKSPACE=$HOME/workspace
|
|
HOME_DIR=$WORKSPACE/build
|
|
UPLOAD_DIR=$WORKSPACE/artifacts
|
|
|
|
cd $HOME_DIR/src
|
|
|
|
build/unix/build-binutils/build-binutils.sh $HOME_DIR
|
|
|
|
# Put a tarball in the artifacts dir
|
|
mkdir -p $UPLOAD_DIR
|
|
cp $HOME_DIR/binutils.tar.* $UPLOAD_DIR
|