gecko-dev/build/macosx/local-mozconfig.common
Mike Hommey c173540215 Bug 1573435 - Use toolchain fetches for all remaining toolchain uses. r=nalexander
The remaining uses all need adjustements to in-tree mozconfigs, so they
all need to be done at once.

However, to make things slightly more intelligible, we do this in two
steps. This is step 1: we modify the use_toolchain transform to take care of
the transformation, while keeping the task definitions intact, so that
we only deal with mozconfig and build script adjustements here.

Differential Revision: https://phabricator.services.mozilla.com/D41890
2019-08-15 11:21:52 +09:00

33 lines
1.0 KiB
Plaintext

# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
. "$topsrcdir/build/mozconfig.common"
if [ -d "$MOZ_FETCHES_DIR/clang" ]; then
# mozilla-central based build
export CC=$MOZ_FETCHES_DIR/clang/bin/clang
export CXX=$MOZ_FETCHES_DIR/clang/bin/clang++
export LLVMCONFIG=$MOZ_FETCHES_DIR/clang/bin/llvm-config
export DSYMUTIL=$MOZ_FETCHES_DIR/clang/bin/llvm-dsymutil
# Use an updated linker.
ldflags="-B$MOZ_FETCHES_DIR/cctools/bin"
export AR=$MOZ_FETCHES_DIR/cctools/bin/ar
export RANLIB=$MOZ_FETCHES_DIR/cctools/bin/ranlib
fi
# Ensure the updated linker doesn't generate things our older build tools
# don't understand.
ldflags="$ldflags -Wl,-no_data_in_code_info"
export LDFLAGS="$ldflags"
# If not set use the system default clang
if [ -z "$CC" ]; then
export CC=clang
fi
# If not set use the system default clang++
if [ -z "$CXX" ]; then
export CXX=clang++
fi