summaryrefslogtreecommitdiffstats
path: root/build/macosx/local-mozconfig.common
diff options
context:
space:
mode:
Diffstat (limited to 'build/macosx/local-mozconfig.common')
-rw-r--r--build/macosx/local-mozconfig.common28
1 files changed, 28 insertions, 0 deletions
diff --git a/build/macosx/local-mozconfig.common b/build/macosx/local-mozconfig.common
new file mode 100644
index 0000000000..8103d4a927
--- /dev/null
+++ b/build/macosx/local-mozconfig.common
@@ -0,0 +1,28 @@
+# 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 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
+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