forked from mirrors/gecko-dev
Now that docker images have been upgraded to Debian buster, we can install a native zstd binary and use tar's native support rather than relying on piping the output of tar to a python script that uses the python-zstandard module. At least we can do that for toolchain tasks that run on such docker images, which also means we can't on Mac and Windows. Differential Revision: https://phabricator.services.mozilla.com/D112894
18 lines
458 B
Bash
Executable file
18 lines
458 B
Bash
Executable file
#!/bin/bash
|
|
set -x -e -v
|
|
|
|
# This script is for building clang for cross Linux targets on a Linux host.
|
|
|
|
cd $MOZ_FETCHES_DIR
|
|
|
|
# We have a native linux64 toolchain in $MOZ_FETCHES_DIR/clang
|
|
# We have some linux compiler-rt in $MOZ_FETCHES_DIR/compiler-rt
|
|
clang_lib=$(echo clang/lib/clang/*/lib)
|
|
find compiler-rt/lib/linux -type f | while read f; do
|
|
cp $f $clang_lib/linux
|
|
done
|
|
|
|
tar -caf clang.tar.zst clang
|
|
|
|
mkdir -p $UPLOAD_DIR
|
|
mv clang.tar.zst $UPLOAD_DIR
|