tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

cross-mozconfig.common (1289B)


      1 # This Source Code Form is subject to the terms of the Mozilla Public
      2 # License, v. 2.0. If a copy of the MPL was not distributed with this
      3 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
      4 
      5 . "$topsrcdir/build/mozconfig.common"
      6 
      7 # cctools for ld, ar, and other related tools ; dsymutil for rust.
      8 mk_add_options "export PATH=$MOZ_FETCHES_DIR/cctools/bin:$MOZ_FETCHES_DIR/binutils/bin:$MOZ_FETCHES_DIR/clang/bin:$PATH"
      9 
     10 # dsymutil needs a libstdc++ more recent than what's on the system.
     11 mk_add_options "export LD_LIBRARY_PATH=$MOZ_FETCHES_DIR/clang/lib"
     12 
     13 export CFLAGS="$CFLAGS -fcrash-diagnostics-dir=${UPLOAD_PATH}"
     14 export CXXFLAGS="$CXXFLAGS -fcrash-diagnostics-dir=${UPLOAD_PATH}"
     15 export MKFSHFS=$MOZ_FETCHES_DIR/hfsplus/newfs_hfs
     16 export DMG_TOOL=$MOZ_FETCHES_DIR/dmg/dmg
     17 export HFS_TOOL=$MOZ_FETCHES_DIR/dmg/hfsplus
     18 
     19 export HOST_CFLAGS="-g"
     20 export HOST_CXXFLAGS="-g"
     21 export HOST_LDFLAGS="-g"
     22 
     23 ac_add_options --target=x86_64-apple-darwin
     24 
     25 if [ "x$MOZ_PKG_SPECIAL" != "xasan" -a -z "$MOZ_AUTOMATION_ARTIFACT_BUILDS" ]; then
     26   # Enable static analysis checks by default on OSX cross builds.
     27   # Exception is ASan, where this breaks.
     28   # The option is not valid on artifact builds, so don't add it there either.
     29   ac_add_options --enable-clang-plugin
     30 fi
     31 
     32 unset MOZ_STDCXX_COMPAT