ray/ci/env/install-strace.sh

27 lines
761 B
Bash
Raw Normal View History

2020-02-26 12:28:13 -08:00
#!/usr/bin/env bash
set -euxo pipefail
2020-02-26 12:28:13 -08:00
install_strace() {
case "${OSTYPE}" in
linux*)
2020-05-05 10:47:49 -07:00
if ! strace -qq -k -e trace=exit /bin/true 2> /dev/null; then
(
set +x
echo "This Linux distribution doesn't appear to support strace -k." \
"Attempting to build & install a recent version..." 1>&2
git -c advice.detachedHead=false clone -q --depth=1 -b v5.5 \
"https://github.com/strace/strace"
cd strace
./bootstrap
CPPFLAGS="-w ${CPPFLAGS-}" ./configure --quiet --with-libunwind --enable-mpers=no
make -s -j"$(getconf _NPROCESSORS_ONLN || echo 1)"
sudo make -s install
2020-05-05 10:47:49 -07:00
)
fi > /dev/null;;
*) false;;
esac
}
install_strace "$@"