aboutsummaryrefslogtreecommitdiff
path: root/environment.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2013-09-28 16:16:18 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2013-09-28 16:16:18 +0300
commitc168d2c73a1eb467e1551be7d4279a8250f90f27 (patch)
tree145966e35b86ea4c6ce00bcb92b712e7c3f27abb /environment.py
parent10a4f0c93bef7be0c9908ff1be9d3ce038cbef6f (diff)
downloadmeson-c168d2c73a1eb467e1551be7d4279a8250f90f27.zip
meson-c168d2c73a1eb467e1551be7d4279a8250f90f27.tar.gz
meson-c168d2c73a1eb467e1551be7d4279a8250f90f27.tar.bz2
Removed gcc debug stl because it is too easy to shoot yourself in the foot with.
Diffstat (limited to 'environment.py')
-rw-r--r--environment.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/environment.py b/environment.py
index e6bd8c6..e6d21af 100644
--- a/environment.py
+++ b/environment.py
@@ -558,7 +558,7 @@ class GnuCPPCompiler(CPPCompiler):
std_warn_flags = ['-Wall', '-Winvalid-pch']
std_opt_flags = ['-O2']
# may need to separate the latter to extra_debug_flags or something
- std_debug_flags = ['-g', '-D_GLIBCXX_DEBUG']
+ std_debug_flags = ['-g']
def __init__(self, exelist, version, is_cross, exe_wrap):
CPPCompiler.__init__(self, exelist, version, is_cross, exe_wrap)