forked from lix-project/lix
c7af89c797
On operating systems where /bin/sh is not Bash, some scripts are invalid
because of bashisms, and building Lix fails with errors like this:
`render-manpage.sh: 3: set: Illegal option -o pipefail`
This modifies all scripts that use a `/bin/sh` shebang to `/usr/bin/env
bash`, including currently POSIX-compliant ones, to prevent any future
confusion.
Change-Id: Ia074cc6db42d40fc59a63726f6194ea0149ea5e0
21 lines
731 B
Bash
Executable file
21 lines
731 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# Generates a report of build time based on a meson build using -ftime-trace in
|
|
# Clang.
|
|
if [ $# -lt 1 ]; then
|
|
echo "usage: $0 BUILD-DIR [filename]" >&2
|
|
exit 1
|
|
fi
|
|
|
|
scriptdir=$(cd "$(dirname -- "$0")" || exit ; pwd -P)
|
|
filename=${2:-$scriptdir/../buildtime.bin}
|
|
|
|
if [ "$(meson introspect "$1" --buildoptions | jq -r '.[] | select(.name == "profile-build") | .value')" != enabled ]; then
|
|
echo 'This build was not done with profile-build enabled, so cannot generate a report' >&2
|
|
# shellcheck disable=SC2016
|
|
echo 'Run `meson configure build -Dprofile-build=enabled` then rebuild, first' >&2
|
|
exit 1
|
|
fi
|
|
|
|
ClangBuildAnalyzer --all "$1" "$filename" && ClangBuildAnalyzer --analyze "$filename"
|