diff options
author | Konstantin Käfer <mail@kkaefer.com> | 2017-06-23 15:50:13 -0700 |
---|---|---|
committer | Konstantin Käfer <mail@kkaefer.com> | 2017-07-13 15:11:12 +0200 |
commit | b0dcc25584e7d064e9311321233fe843a000467e (patch) | |
tree | 6e4f94741a3f5e049d37cdccbe212e0a48eee49d /scripts/check-cxx11abi.sh | |
parent | ee32df46874f3a922574cafb692c38e24fe7ad8b (diff) | |
download | qtlocation-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-x | scripts/check-cxx11abi.sh | 4 |
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 |