aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/build.py
diff options
context:
space:
mode:
authorSomasekhar Penugonda <somashekar.penugonda@cirrus.com>2018-03-15 18:33:11 +0530
committerBedarkar, Malhar <malhar.bedarkar@cirrus.com>2018-03-27 17:04:26 -0500
commite62b8109ebfef437a380f2d8cedd1565095a5574 (patch)
tree2e353dba15707166c005125930dee6be90751193 /mesonbuild/build.py
parent831d1e4c2e7b0ce8dfd0b2471bf2dab499181d66 (diff)
downloadmeson-e62b8109ebfef437a380f2d8cedd1565095a5574.zip
meson-e62b8109ebfef437a380f2d8cedd1565095a5574.tar.gz
meson-e62b8109ebfef437a380f2d8cedd1565095a5574.tar.bz2
Updates to CPP support and update review changes
Diffstat (limited to 'mesonbuild/build.py')
-rw-r--r--mesonbuild/build.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/mesonbuild/build.py b/mesonbuild/build.py
index ea2edc3..1332f08 100644
--- a/mesonbuild/build.py
+++ b/mesonbuild/build.py
@@ -1178,7 +1178,8 @@ class Executable(BuildTarget):
for_cygwin(is_cross, environment) or 'cs' in self.compilers):
self.suffix = 'exe'
else:
- if 'c' in self.compilers and self.compilers['c'].get_id().startswith('arm'):
+ if ('c' in self.compilers and self.compilers['c'].get_id().startswith('arm') or
+ 'cpp' in self.compilers and self.compilers['cpp'].get_id().startswith('arm')):
self.suffix = 'axf'
else:
self.suffix = ''