[FCP] calculate clang commit hash correctly [6/N]

Reviewed By: ngorogiannis

Differential Revision: D23315607

fbshipit-source-id: d5074c528
master
Martin Trojer 4 years ago committed by Facebook GitHub Bot
parent 7a0427c2d7
commit 18ac47210a

@ -35,10 +35,16 @@ usage () {
echo " -c,--only-check-install check if recompiling clang is needed" echo " -c,--only-check-install check if recompiling clang is needed"
echo " -h,--help show this message" echo " -h,--help show this message"
echo " -n,--ninja use ninja for building" echo " -n,--ninja use ninja for building"
echo " -p,--clang-hash print the installed clang hash"
echo " -r,--only-record-install do not install clang but pretend we did" echo " -r,--only-record-install do not install clang but pretend we did"
echo " -s,--sequential-link only use one process for linking (ninja only)" echo " -s,--sequential-link only use one process for linking (ninja only)"
} }
clang_hash () {
HASH=$($SHASUM "${SCRIPT_DIR}/setup.sh" "${SCRIPT_DIR}/src/prepare_clang_src.sh" | $SHASUM)
printf "%s" "$HASH" | cut -d ' ' -f 1
}
check_installed () { check_installed () {
pushd "$SCRIPT_DIR" > /dev/null pushd "$SCRIPT_DIR" > /dev/null
$SHASUM -c "$CLANG_INSTALLED_VERSION_FILE" >& /dev/null $SHASUM -c "$CLANG_INSTALLED_VERSION_FILE" >& /dev/null
@ -49,18 +55,24 @@ check_installed () {
record_installed () { record_installed () {
pushd "$SCRIPT_DIR" > /dev/null pushd "$SCRIPT_DIR" > /dev/null
$SHASUM "$SCRIPT_RELATIVE_PATH" > "$CLANG_INSTALLED_VERSION_FILE" $SHASUM setup.sh src/prepare_clang_src.sh > "$CLANG_INSTALLED_VERSION_FILE"
popd > /dev/null popd > /dev/null
} }
ONLY_CHECK= ONLY_CHECK=
ONLY_RECORD= ONLY_RECORD=
PRINT_CLANG_HASH=
USE_NINJA= USE_NINJA=
SEQUENTIAL_LINK= SEQUENTIAL_LINK=
while [[ $# -gt 0 ]]; do while [[ $# -gt 0 ]]; do
opt_key="$1" opt_key="$1"
case $opt_key in case $opt_key in
-p|--clang-hash)
PRINT_CLANG_HASH=yes
shift
continue
;;
-c|--only-check-install) -c|--only-check-install)
ONLY_CHECK=yes ONLY_CHECK=yes
shift shift
@ -92,6 +104,11 @@ while [[ $# -gt 0 ]]; do
shift shift
done done
if [ "$PRINT_CLANG_HASH" = "yes" ]; then
clang_hash
exit 0
fi
if [ "$ONLY_RECORD" = "yes" ]; then if [ "$ONLY_RECORD" = "yes" ]; then
record_installed record_installed
exit 0 exit 0

Loading…
Cancel
Save