29 lines
1.2 KiB
Bash
Executable File
29 lines
1.2 KiB
Bash
Executable File
#!/bin/bash -eu
|
|
#
|
|
# Builds cumulative cross-reference extraction file (.kzip) for all the
|
|
# modules defined and buildable in this repository.
|
|
# Usage:
|
|
# cd <repository top> && OUT_DIR=<output dir> prebuilts/build-tools-kzip.sh
|
|
# Generates $OUT_DIR/all.zkip
|
|
|
|
declare -r corpus=android.googlesource.com/platform/superproject
|
|
mkdir -p "${OUT_DIR:?Specify output directory}/soong"
|
|
|
|
# Build for x86, ignore missing references.
|
|
printf '{"Allow_missing_dependencies": true, "HostArch":"x86_64" }\n' >"${OUT_DIR}/soong/soong.variables"
|
|
|
|
# Some of targets will fail because of the missing references, but there
|
|
# will be sufficient number of successfully compiled modules.
|
|
XREF_CORPUS="${corpus}" build/soong/soong_ui.bash --make-mode --skip-make -k xref_java xref_cxx || echo Ignoring errors
|
|
|
|
# Package it all into a single .kzip, ignoring duplicates.
|
|
allkzip=$(realpath "${OUT_DIR}/all.kzip")
|
|
rm -f "${allkzip}"
|
|
tempdir=$(mktemp -d)
|
|
for zip in $(find "${OUT_DIR}" -name '*.kzip'); do
|
|
unzip -qn "${zip}" -d "${tempdir}"
|
|
done
|
|
(cd "${tempdir}" && zip -9rmq "${allkzip}" . && rmdir "${tempdir}")
|
|
printf "Created %s with %d compilation units\n" "${allkzip}" $(zipinfo "${allkzip}" 'root/units/?*' | wc -l)
|
|
|