diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2021-02-16 16:51:51 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-16 16:51:51 -0800 |
commit | 7812ceec5fe6147bfe8a5a265b58db1282d2cabc (patch) | |
tree | 037936fbe637fd1fe0b3df8d9a04091b289a6d5a /mesonbuild/compilers/compilers.py | |
parent | f3727c62c6c8e05c4b05f5f547f7b757f69b65ea (diff) | |
parent | 3410465178b471d57d8591561a5c4f45015aa782 (diff) | |
download | meson-7812ceec5fe6147bfe8a5a265b58db1282d2cabc.zip meson-7812ceec5fe6147bfe8a5a265b58db1282d2cabc.tar.gz meson-7812ceec5fe6147bfe8a5a265b58db1282d2cabc.tar.bz2 |
Merge pull request #8355 from obilaniu/cudafixes
CUDA Compiler Fixes
Diffstat (limited to 'mesonbuild/compilers/compilers.py')
-rw-r--r-- | mesonbuild/compilers/compilers.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mesonbuild/compilers/compilers.py b/mesonbuild/compilers/compilers.py index 1872253..8171758 100644 --- a/mesonbuild/compilers/compilers.py +++ b/mesonbuild/compilers/compilers.py @@ -175,8 +175,8 @@ class CompileCheckMode(enum.Enum): cuda_buildtype_args = {'plain': [], - 'debug': [], - 'debugoptimized': [], + 'debug': ['-g', '-G'], + 'debugoptimized': ['-g', '-lineinfo'], 'release': [], 'minsize': [], 'custom': [], |