This is an automated email from the git hooks/post-receive script.
pierov pushed a change to branch main in repository builders/tor-browser-build.
from c9800a15 Bug 40674: Add Secondary Snowflake Bridgeline new 04302abf Bug 40666: Fix compiler depedencies for Firefox on Windows new e4c676b3 Bug 40667: Update Node.js to 12.22.12
The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference.
Summary of changes: projects/firefox/build | 10 ++++++---- projects/firefox/config | 4 +--- projects/node/config | 4 ++-- 3 files changed, 9 insertions(+), 9 deletions(-)
This is an automated email from the git hooks/post-receive script.
pierov pushed a commit to branch main in repository builders/tor-browser-build.
commit 04302abf0c8f65441cdf62e4f0eec91c23003feb Author: Pier Angelo Vendrame pierov@torproject.org AuthorDate: Wed Oct 26 22:02:37 2022 +0200
Bug 40666: Fix compiler depedencies for Firefox on Windows
Removed mingw-w64 as a depdency from Firefox, since we take libssp directly from mingw-w64-clang (the default compiler for Windows now).
Also, take clang as a depdendency for Firefox only on Linux, since macOS and Windows contain it in their compiler packages. --- projects/firefox/build | 10 ++++++---- projects/firefox/config | 4 +--- 2 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/projects/firefox/build b/projects/firefox/build index b06272f0..4d554f20 100644 --- a/projects/firefox/build +++ b/projects/firefox/build @@ -16,10 +16,9 @@ tar -C /var/tmp/dist -xf [% c('input_files_by_name/cbindgen') %] tar -C /var/tmp/dist -xf [% c('input_files_by_name/nasm') %] tar -C /var/tmp/dist -xf [% c('input_files_by_name/node') %] export PATH="/var/tmp/dist/rust/bin:/var/tmp/dist/cbindgen:/var/tmp/dist/nasm/bin:/var/tmp/dist/node/bin:$PATH" -tar -C /var/tmp/dist -xf [% c('input_files_by_name/clang') %] -export LLVM_CONFIG="/var/tmp/dist/clang/bin/llvm-config"
[% IF c("var/linux") %] + tar -C /var/tmp/dist -xf [% c('input_files_by_name/clang') %] tar -C /var/tmp/dist -xf [% c('input_files_by_name/python') %] export PATH="/var/tmp/dist/python/bin:$PATH" tar -C /var/tmp/dist -xf $rootdir/[% c('input_files_by_name/binutils') %] @@ -42,10 +41,13 @@ export LLVM_CONFIG="/var/tmp/dist/clang/bin/llvm-config" # Copy it over. # https://searchfox.org/mozilla-central/source/build/build-clang/build-clang.p..., # include it directly in our clang - rtdir=/var/tmp/dist/clang/lib/clang/[% pc("clang", "version") %]/lib/wasi [% IF c("var/osx") -%] rtdir=/var/tmp/dist/macosx-toolchain/clang/lib/clang/[% pc("clang", "version") %]/lib/wasi - [% END-%] + [% ELSIF c("var/windows") -%] + rtdir=/var/tmp/dist/mingw-w64-clang/lib/clang/[% pc("clang", "version") %]/lib/wasi + [% ELSE -%] + rtdir=/var/tmp/dist/clang/lib/clang/[% pc("clang", "version") %]/lib/wasi + [% END -%] mkdir -p $rtdir cp /var/tmp/dist/wasi-sysroot/lib/clang/11.0.0/lib/wasi/libclang_rt.builtins-wasm32.a $rtdir tar -C /var/tmp/dist -xf [% c('input_files_by_name/lucetc') %] diff --git a/projects/firefox/config b/projects/firefox/config index 56b33e5f..38aef044 100644 --- a/projects/firefox/config +++ b/projects/firefox/config @@ -162,14 +162,12 @@ input_files: enable: '[% c("var/linux") %]' - project: clang name: clang + enable: '[% c("var/linux") %]' - project: fxc2 name: fxc2 enable: '[% c("var/windows") %]' target_prepend: - torbrowser-windows-x86_64 - - name: mingw-w64 - project: mingw-w64 - enable: '[% c("var/windows") %]' - filename: abicheck.cc enable: '[% c("var/linux") %]' - filename: start-firefox
This is an automated email from the git hooks/post-receive script.
pierov pushed a commit to branch main in repository builders/tor-browser-build.
commit e4c676b3850200b63ecca1732566ffbdf9479ec9 Author: Pier Angelo Vendrame pierov@torproject.org AuthorDate: Thu Oct 27 12:50:56 2022 +0200
Bug 40667: Update Node.js to 12.22.12 --- projects/node/config | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/projects/node/config b/projects/node/config index 4fe0f05c..e771abc1 100644 --- a/projects/node/config +++ b/projects/node/config @@ -4,8 +4,8 @@ filename: '[% project %]-[% c("version") %]-[% c("var/build_id") %].tar.gz' container: use_container: 1 var: - node_version: 12.22.1 - node_hash: dd650df7773a6ed3e390320ba51ef33cba6499f0e9397709ea3d1debdcbcb989 + node_version: 12.22.12 + node_hash: bc42b7f8495b9bfc7f7850dd180bb02a5bdf139cc232b8c6f02a6967e20714f2
targets: windows:
tbb-commits@lists.torproject.org