forked from mirrors/gecko-dev
Now that all GCC and related source tarballs extract to paths independent of their version number, the scripts are all very look-alike, so they can be consolidated. Differential Revision: https://phabricator.services.mozilla.com/D40749
23 lines
422 B
Bash
Executable file
23 lines
422 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
|
|
# This script is for building GCC for Linux.
|
|
|
|
root_dir=$MOZ_FETCHES_DIR
|
|
data_dir=$GECKO_PATH/build/unix/build-gcc
|
|
|
|
. $data_dir/build-gcc.sh
|
|
|
|
pushd $root_dir/gcc-source
|
|
ln -sf ../gmp-source gmp
|
|
ln -sf ../isl-source isl
|
|
ln -sf ../mpc-source mpc
|
|
ln -sf ../mpfr-source mpfr
|
|
popd
|
|
|
|
build_binutils
|
|
build_gcc
|
|
|
|
# Put a tarball in the artifacts dir
|
|
mkdir -p $UPLOAD_DIR
|
|
cp $MOZ_FETCHES_DIR/gcc.tar.* $UPLOAD_DIR
|