diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2013-09-28 16:16:18 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2013-09-28 16:16:18 +0300 |
commit | c168d2c73a1eb467e1551be7d4279a8250f90f27 (patch) | |
tree | 145966e35b86ea4c6ce00bcb92b712e7c3f27abb /environment.py | |
parent | 10a4f0c93bef7be0c9908ff1be9d3ce038cbef6f (diff) | |
download | meson-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.py | 2 |
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) |