summaryrefslogtreecommitdiffstats
path: root/build/unix/mozconfig.unix
blob: 3927dd907bfb99663c436d92fa10a151e6318ea8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
. "$topsrcdir/build/mozconfig.common"

if [ -n "$FORCE_GCC" ]; then
    CC="$MOZ_FETCHES_DIR/gcc/bin/gcc"
    CXX="$MOZ_FETCHES_DIR/gcc/bin/g++"

    # We want to make sure we use binutils and other binaries in the tooltool
    # package.
    mk_add_options "export PATH=$MOZ_FETCHES_DIR/gcc/bin:$PATH"
else
    # For some builds we don't want to have Clang based static-analysis activated
    if [ -z "$DISABLE_CLANG_PLUGIN" ]; then
        export ENABLE_CLANG_PLUGIN=1
    fi

    case "$PERFHERDER_EXTRA_OPTIONS" in
    base-toolchains*)
      # Clang versions < 7.0 don't support the -fcrash-diagnostics-dir flag.
      ;;
    *)
      export CFLAGS="$CFLAGS -fcrash-diagnostics-dir=${UPLOAD_PATH}"
      export CXXFLAGS="$CXXFLAGS -fcrash-diagnostics-dir=${UPLOAD_PATH}"
      ;;
    esac

    if [ -z "$USE_ARTIFACT" ]; then
        if [ -n "$TASKCLUSTER_PGO_PROFILE_USE" ]; then
            export MOZ_LTO=cross
            ac_add_options --enable-profile-use=cross
            ac_add_options --with-pgo-jarlog=${MOZ_FETCHES_DIR}/en-US.log
            ac_add_options --with-pgo-profile-path=${MOZ_FETCHES_DIR}/merged.profdata
        fi
    fi

    mk_add_options "export PATH=$MOZ_FETCHES_DIR/binutils/bin:$PATH"
fi

. "$topsrcdir/build/unix/mozconfig.stdcxx"