blob: 1a813dd77252a97fc02527bd64ec917a2dffce10 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#!/bin/bash
set -x -e -v
# This script is for building mar and mbsdiff
COMPRESS_EXT=zst
cd $GECKO_PATH
export MOZ_OBJDIR=obj-mar
echo ac_add_options --enable-project=tools/update-packaging > .mozconfig
echo ac_add_options --enable-linker=lld >> .mozconfig
TOOLCHAINS="clang"
for t in $TOOLCHAINS; do
PATH="$MOZ_FETCHES_DIR/$t/bin:$PATH"
done
./mach build -v
mkdir mar-tools
cp $MOZ_OBJDIR/dist/host/bin/{mar,mbsdiff} mar-tools/
tar -acf mar-tools.tar.$COMPRESS_EXT mar-tools/
mkdir -p $UPLOAD_DIR
cp mar-tools.tar.$COMPRESS_EXT $UPLOAD_DIR
|