mirror of
https://github.com/zen-browser/desktop
synced 2026-05-01 11:57:32 +02:00
36 lines
970 B
Plaintext
36 lines
970 B
Plaintext
|
|
if test -d "$HOME/.mozbuild/clang/bin"; then
|
|
export CC="$HOME"/.mozbuild/clang/bin/clang
|
|
export CXX="$HOME"/.mozbuild/clang/bin/clang++
|
|
else
|
|
export CC=clang
|
|
export CXX=clang++
|
|
fi
|
|
|
|
if test "$ZEN_RELEASE"; then
|
|
export MOZ_PGO=1
|
|
ac_add_options MOZ_PGO=1
|
|
|
|
ac_add_options --disable-dmd
|
|
ac_add_options --enable-linker=lld
|
|
ac_add_options --disable-elf-hack
|
|
|
|
if [ -f /home/runner/.mozbuild/sccache/sccache ]; then
|
|
mk_add_options 'export RUSTC_WRAPPER=/home/runner/.mozbuild/sccache/sccache'
|
|
mk_add_options 'export CCACHE_CPP2=yes'
|
|
ac_add_options --with-ccache=/home/runner/.mozbuild/sccache/sccache
|
|
mk_add_options 'export SCCACHE_GHA_ENABLED=on'
|
|
fi
|
|
fi
|
|
|
|
if test "$SURFER_COMPAT" = "1"; then
|
|
# Build for linux-i686
|
|
ac_add_options --target=i686-pc-linux
|
|
else
|
|
# Build for linux-x86_64
|
|
|
|
# Dont' declare, let's build with default target
|
|
# ac_add_options --target=x86_64-pc-linux
|
|
|
|
fi
|