aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormakise-homura <akemi_homura@kurisa.ch>2020-01-13 17:19:09 +0300
committerNirbheek Chauhan <nirbheek@centricular.com>2020-02-17 23:43:22 +0530
commitba5a43c62ff49bba25adbf395892bbf5f7743e3a (patch)
tree2deb0925228608cc2410195f44f3c82204af8b3a
parentafbd28eb7c2e38ed9ba7587c2af575196f1b2679 (diff)
downloadmeson-ba5a43c62ff49bba25adbf395892bbf5f7743e3a.zip
meson-ba5a43c62ff49bba25adbf395892bbf5f7743e3a.tar.gz
meson-ba5a43c62ff49bba25adbf395892bbf5f7743e3a.tar.bz2
Remove RTTI option from get_option_compile_args() for Elbrus compiler
-rw-r--r--mesonbuild/compilers/cpp.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/mesonbuild/compilers/cpp.py b/mesonbuild/compilers/cpp.py
index 2ed969a..443a9ee 100644
--- a/mesonbuild/compilers/cpp.py
+++ b/mesonbuild/compilers/cpp.py
@@ -351,6 +351,19 @@ class ElbrusCPPCompiler(GnuCPPCompiler, ElbrusCompiler):
extra_args=extra_args,
dependencies=dependencies)
+ # Elbrus C++ compiler does not support RTTI, so don't check for it.
+ def get_option_compile_args(self, options):
+ args = []
+ std = options['cpp_std']
+ if std.value != 'none':
+ args.append(self._find_best_cpp_std(std.value))
+
+ non_msvc_eh_options(options['cpp_eh'].value, args)
+
+ if options['cpp_debugstl'].value:
+ args.append('-D_GLIBCXX_DEBUG=1')
+ return args
+
class IntelCPPCompiler(IntelGnuLikeCompiler, CPPCompiler):
def __init__(self, exelist, version, for_machine: MachineChoice,