summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorBruno de Oliveira Abinader <bruno@mapbox.com>2016-05-24 19:26:27 +0300
committerBruno de Oliveira Abinader <bruno@mapbox.com>2016-05-24 19:26:27 +0300
commit60bce7014bcad14823a6007b3441bb99f610a34e (patch)
tree55eaff4f96a351f2de756ac4cb677ecb6449668e /scripts
parent1f8de2be5ce39d878d4fd9e3d77ea55c7dacd619 (diff)
downloadqtlocation-mapboxgl-60bce7014bcad14823a6007b3441bb99f610a34e.tar.gz
[build] Restrict C++11 ABI check script for Linux
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/check-cxx11abi.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/check-cxx11abi.sh b/scripts/check-cxx11abi.sh
index ba64df1e79..512919371d 100755
--- a/scripts/check-cxx11abi.sh
+++ b/scripts/check-cxx11abi.sh
@@ -3,6 +3,11 @@
set -e
set -o pipefail
+if [ ! `uname -s` = 'Linux' ]; then
+ echo ""
+ exit 0
+fi
+
# check-cxx11abi.dat is a binary just so we can use the loader
# to take care of finding the libstdc++ which can be tricky.
LIBSTDCPP=$(ldd $(dirname $0)/check-cxx11abi.dat |grep libstdc++ |cut -d' ' -f3)