aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/compilers/cpp.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2021-03-09 18:17:36 +0000
committerDylan Baker <dylan@pnwbakers.com>2021-03-09 13:52:15 -0800
commitd76345b4beec48484e31110b225c3256d8ba264b (patch)
tree4921110841399cc65b972ba5757be47d44b66f57 /mesonbuild/compilers/cpp.py
parent6f9d6858ce7875ea9225c5c113c487dc01b96b15 (diff)
downloadmeson-d76345b4beec48484e31110b225c3256d8ba264b.zip
meson-d76345b4beec48484e31110b225c3256d8ba264b.tar.gz
meson-d76345b4beec48484e31110b225c3256d8ba264b.tar.bz2
Add address sanitizer support for Visual Studio.
Diffstat (limited to 'mesonbuild/compilers/cpp.py')
-rw-r--r--mesonbuild/compilers/cpp.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/mesonbuild/compilers/cpp.py b/mesonbuild/compilers/cpp.py
index 4d55ccd..d0e3fd2 100644
--- a/mesonbuild/compilers/cpp.py
+++ b/mesonbuild/compilers/cpp.py
@@ -663,7 +663,6 @@ class VisualStudioCPPCompiler(CPP11AsCPP14Mixin, VisualStudioLikeCPPCompilerMixi
CPPCompiler.__init__(self, exelist, version, for_machine, is_cross,
info, exe_wrapper, linker=linker, full_version=full_version)
MSVCCompiler.__init__(self, target)
- self.base_options = {OptionKey(o) for o in ['b_pch', 'b_vscrt', 'b_ndebug']} # FIXME add lto, pgo and the like
self.id = 'msvc'
def get_options(self) -> 'KeyedOptionDictType':