blob: d92816b00c900549e364aed37e228329b0a02607 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
if test `uname -s` = Linux; then
. $topsrcdir/build/macosx/cross-mozconfig.common
fi
if [ -n "$TASKCLUSTER_PGO_PROFILE_USE" -a -z "$USE_ARTIFACT" ]; then
# Work around https://github.com/llvm/llvm-project/issues/57734
export LDFLAGS=-Wl,-mllvm,--opaque-pointers
# Keep using ld64 on PGO/LTO builds because of performance regressions when using lld.
ac_add_options --enable-linker=ld64
fi
|