aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/compilers
diff options
context:
space:
mode:
authorNathanael Gray <nathanael.gray@fphcare.co.nz>2021-11-16 17:08:38 +1300
committerJussi Pakkanen <jpakkane@gmail.com>2021-11-27 20:08:14 +0200
commitc2956269f558c59e6dcf166ada805afc9c2f5034 (patch)
treee73cd0d76472dce2fc330402c380e60b2721699c /mesonbuild/compilers
parent2bc3117408bf0c9f39c795c73eccd83fa1019dae (diff)
downloadmeson-c2956269f558c59e6dcf166ada805afc9c2f5034.zip
meson-c2956269f558c59e6dcf166ada805afc9c2f5034.tar.gz
meson-c2956269f558c59e6dcf166ada805afc9c2f5034.tar.bz2
Add -g for debug builds.
Diffstat (limited to 'mesonbuild/compilers')
-rw-r--r--mesonbuild/compilers/mixins/c2000.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/compilers/mixins/c2000.py b/mesonbuild/compilers/mixins/c2000.py
index 00c5e3a..ab0278e 100644
--- a/mesonbuild/compilers/mixins/c2000.py
+++ b/mesonbuild/compilers/mixins/c2000.py
@@ -49,7 +49,7 @@ c2000_optimization_args = {
c2000_debug_args = {
False: [],
- True: []
+ True: ['-g']
} # type: T.Dict[bool, T.List[str]]