Skip to content

Commit

Permalink
Add default debug flags for two configurations to NVCC.
Browse files Browse the repository at this point in the history
  • Loading branch information
obilaniu committed Feb 15, 2021
1 parent 7a34498 commit b7b4250
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mesonbuild/compilers/compilers.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,8 +175,8 @@ class CompileCheckMode(enum.Enum):


cuda_buildtype_args = {'plain': [],
'debug': [],
'debugoptimized': [],
'debug': ['-g', '-G'],
'debugoptimized': ['-g', '-lineinfo'],
'release': [],
'minsize': [],
'custom': [],
Expand Down

0 comments on commit b7b4250

Please sign in to comment.