tor-browser

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

mozconfig.no-compile (814B)


      1 ac_add_options --disable-compile-environment
      2 
      3 # In case mozconfig.cache was already included
      4 unset CCACHE
      5 unset SCCACHE_VERBOSE_STATS
      6 # In case it wasn't
      7 NO_CACHE=1
      8 
      9 # Override any toolchain defines we've inherited from other mozconfigs.
     10 unset CC
     11 unset CXX
     12 unset CPPFLAGS
     13 unset CFLAGS
     14 unset CXXFLAGS
     15 unset LDFLAGS
     16 unset HOST_CC
     17 unset HOST_CXX
     18 unset HOST_CPPFLAGS
     19 unset HOST_CFLAGS
     20 unset HOST_CXXFLAGS
     21 unset HOST_LDFLAGS
     22 unset LINKER
     23 unset RUSTFLAGS
     24 unset TOOLCHAIN_PREFIX
     25 unset BINDGEN_CFLAGS
     26 unset ENABLE_CLANG_PLUGIN
     27 unset MACOS_SDK_DIR
     28 unset WINSYSROOT
     29 unset MOZ_LTO
     30 
     31 unset MOZ_STDCXX_COMPAT
     32 unset MOZ_NO_PIE_COMPAT
     33 
     34 # Don't unset this on Linux artifact builds so the artifact builds correctly
     35 # package any Wasm sandboxed shared libraries.
     36 if test `uname -s` != Linux; then
     37   unset WASM_SANDBOXED_LIBRARIES
     38 fi