From 201ecf52d105a2d4a815460f49dec6ad0383286a Mon Sep 17 00:00:00 2001 From: sompen Date: Tue, 11 Jun 2019 22:05:32 +0530 Subject: [PATCH] compilers/cpp: Fix removal of name from Combo options for Armclang --- mesonbuild/compilers/cpp.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/mesonbuild/compilers/cpp.py b/mesonbuild/compilers/cpp.py index e43d839dd..718dbdf3c 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',