chore: Update version to 1.0.0-a.0 and enable linker option only when not cross compiling

This commit is contained in:
mauro 🤙
2024-07-12 08:40:39 +00:00
parent c804ef7149
commit 089ff67a17
3 changed files with 9 additions and 8 deletions

View File

@@ -1,10 +1,3 @@
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
# Browser branding
ac_add_options --enable-update-channel=release

View File

@@ -11,6 +11,14 @@ if ! test "$ZEN_CROSS_COMPILING"; then
export RUSTFLAGS="$RUSTFLAGS -Ctarget-cpu=x86-64"
fi
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
ac_add_options --enable-linker=lld
ac_add_options --enable-alsa
ac_add_options --enable-pulseaudio

View File

@@ -27,7 +27,7 @@
"brandShortName": "Zen Browser",
"brandFullName": "Zen Browser",
"release": {
"displayVersion": "1.0.0-a.1",
"displayVersion": "1.0.0-a.0",
"github": {
"repo": "zen-browser/desktop"
},