mirror of
https://github.com/ldc-developers/ldc.git
synced 2025-05-04 17:11:44 +03:00
Implement -gline-tables-only (PR #1861)
As per ldc-developers/ldc#1844 .
This commit is contained in:
parent
39a5aaecdb
commit
3b63effd3f
6 changed files with 157 additions and 23 deletions
|
@ -117,7 +117,8 @@ static cl::opt<bool, true> ignoreUnsupportedPragmas(
|
|||
static cl::opt<ubyte, true> debugInfo(
|
||||
cl::desc("Generating debug information:"), cl::ZeroOrMore,
|
||||
clEnumValues(clEnumValN(1, "g", "Generate debug information"),
|
||||
clEnumValN(2, "gc", "Same as -g, but pretend to be C")),
|
||||
clEnumValN(2, "gc", "Same as -g, but pretend to be C"),
|
||||
clEnumValN(3, "gline-tables-only", "Generate line-tables-only")),
|
||||
cl::location(global.params.symdebug), cl::init(0));
|
||||
|
||||
static cl::opt<unsigned, true>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue