summaryrefslogtreecommitdiff
path: root/scripts/check-cxx11abi.sh
diff options
context:
space:
mode:
authorKonstantin Käfer <mail@kkaefer.com>2017-06-23 15:50:13 -0700
committerKonstantin Käfer <mail@kkaefer.com>2017-07-13 15:11:12 +0200
commitb0dcc25584e7d064e9311321233fe843a000467e (patch)
tree6e4f94741a3f5e049d37cdccbe212e0a48eee49d /scripts/check-cxx11abi.sh
parentee32df46874f3a922574cafb692c38e24fe7ad8b (diff)
downloadqtlocation-mapboxgl-b0dcc25584e7d064e9311321233fe843a000467e.tar.gz
[build] upgrade to v4 CircleCI images that have logbt/mesa/gdb/apitrace installed
Diffstat (limited to 'scripts/check-cxx11abi.sh')
-rwxr-xr-xscripts/check-cxx11abi.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/check-cxx11abi.sh b/scripts/check-cxx11abi.sh
index c543e52cb6..c6fd9258c5 100755
--- a/scripts/check-cxx11abi.sh
+++ b/scripts/check-cxx11abi.sh
@@ -3,7 +3,9 @@
set -e
set -o pipefail
-if [ ! `uname -s` = 'Linux' ]; then
+if ! [ `uname -s` = 'Linux' ] || \
+ ! command -v readelf > /dev/null || \
+ ! command -v c++filt > /dev/null; then
echo -n "OFF"
exit 0
fi