aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/compilers/cpp.py
diff options
context:
space:
mode:
authorsompen <somashekar.penugonda@cirrus.com>2019-06-11 22:05:32 +0530
committerDylan Baker <dylan@pnwbakers.com>2019-06-11 11:38:07 -0700
commit201ecf52d105a2d4a815460f49dec6ad0383286a (patch)
treeb273897d057f33f686e9c2112d6d9c3408211165 /mesonbuild/compilers/cpp.py
parentb28e76f6bf6898a7de01f5dd103d5ad7c54bea45 (diff)
downloadmeson-201ecf52d105a2d4a815460f49dec6ad0383286a.zip
meson-201ecf52d105a2d4a815460f49dec6ad0383286a.tar.gz
meson-201ecf52d105a2d4a815460f49dec6ad0383286a.tar.bz2
compilers/cpp: Fix removal of name from Combo options for Armclang
Diffstat (limited to 'mesonbuild/compilers/cpp.py')
-rw-r--r--mesonbuild/compilers/cpp.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/mesonbuild/compilers/cpp.py b/mesonbuild/compilers/cpp.py
index e43d839..718dbdf 100644
--- a/mesonbuild/compilers/cpp.py
+++ b/mesonbuild/compilers/cpp.py
@@ -196,8 +196,7 @@ class ArmclangCPPCompiler(ArmclangCompiler, CPPCompiler):
def get_options(self):
opts = CPPCompiler.get_options(self)
- opts.update({'cpp_eh': coredata.UserComboOption('cpp_eh',
- 'C++ exception handling type.',
+ opts.update({'cpp_eh': coredata.UserComboOption('C++ exception handling type.',
['none', 'default', 'a', 's', 'sc'],
'default'),
'cpp_std': coredata.UserComboOption('C++ language standard to use',