summaryrefslogtreecommitdiffstats
path: root/taskcluster/scripts/misc/repack-clang.sh
blob: 4a1b3ed01e9abe087e11b99b117ce63c9f733268 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/bin/bash
set -x -e -v

shopt -s nullglob

# This script is for repacking clang for cross targets on a Linux host.

cd $MOZ_FETCHES_DIR

# We have a clang toolchain in $MOZ_FETCHES_DIR/clang
# We have some compiler-rts in $MOZ_FETCHES_DIR/compiler-rt*
# We have some libunwinds in $MOZ_FETCHES_DIR/libunwind*
# We copy everything from the compiler-rts into clang/lib/clang/$version/
# and everything from the libunwinds into clang/
clang_ver_dir=$(echo clang/lib/clang/*/include)
clang_ver_dir=${clang_ver_dir%/include}
[ -n "$clang_ver_dir" ] && for c in compiler-rt* libunwind*; do
  case $c in
  compiler-rt*)
    clang_dir=$clang_ver_dir
    ;;
  libunwind*)
    clang_dir=clang
    ;;
  esac
  find $c -mindepth 1 -type d | while read d; do
    mkdir -p "$clang_dir/${d#$c/}"
    find $d -mindepth 1 -maxdepth 1 -not -type d | while read f; do
      target_file="$clang_dir/${f#$c/}"
      case $d in
      compiler-rt-*/lib/darwin)
        if [ -f "$target_file" ]; then
          # Unify overlapping files for darwin/
          $MOZ_FETCHES_DIR/cctools/bin/lipo -create "$f" "$target_file" -output "$target_file.new"
          mv "$target_file.new" "$target_file"
          continue
        fi
        ;;
      esac
      if [ -f "$target_file" ] && ! diff -q "$f" "$target_file" 2>/dev/null; then
        echo "Cannot copy $f because it is already in ${target_file%/*}" >&2 && exit 1
      fi
      cp "$f" "$target_file"
    done
  done
done

if [ -n "$UPLOAD_DIR" ]; then
  tar caf clang.tar.zst clang
  mkdir -p $UPLOAD_DIR
  mv clang.tar.zst $UPLOAD_DIR
fi