summaryrefslogtreecommitdiffstats
path: root/source
diff options
context:
space:
mode:
authorjarcherNV <jarcher@nvidia.com>2025-06-26 20:06:37 -0700
committerGitHub <noreply@github.com>2025-06-27 03:06:37 +0000
commitc5295eae268f78c306c9401719bb4e06ba63ba16 (patch)
treeaa24bb581d9bd0f70006030c9c960dcf3adf2dfd /source
parentb10319c1c513de8dd7a1d7cf5a45265589978654 (diff)
Move separate-debug-info arg to target options (#7540)
* Move separate-debug-info arg to target options The separate-debug-info command line option is listed under debugging options, move this to the target options section which includes other similar flags like -g and -emit-spirv-directly. * regenerate command line reference --------- Co-authored-by: slangbot <186143334+slangbot@users.noreply.github.com>
Diffstat (limited to 'source')
-rw-r--r--source/slang/slang-options.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/slang/slang-options.cpp b/source/slang/slang-options.cpp
index 68f538508..28953b4ed 100644
--- a/source/slang/slang-options.cpp
+++ b/source/slang/slang-options.cpp
@@ -683,7 +683,11 @@ void initCommandOptions(CommandOptions& options)
{OptionKind::BindlessSpaceIndex,
"-bindless-space-index",
"-bindless-space-index <index>",
- "Specify the space index for the system defined global bindless resource array."}};
+ "Specify the space index for the system defined global bindless resource array."},
+ {OptionKind::EmitSeparateDebug,
+ "-separate-debug-info",
+ nullptr,
+ "Emit debug data to a separate file, and strip it from the main output file."}};
_addOptions(makeConstArrayView(targetOpts), options);
@@ -820,11 +824,7 @@ void initCommandOptions(CommandOptions& options)
"-verify-debug-serial-ir",
nullptr,
"Verify IR in the front-end."},
- {OptionKind::DumpModule, "-dump-module", nullptr, "Disassemble and print the module IR."},
- {OptionKind::EmitSeparateDebug,
- "-separate-debug-info",
- nullptr,
- "Emit debug data to a separate file, and strip it from the main output file."}};
+ {OptionKind::DumpModule, "-dump-module", nullptr, "Disassemble and print the module IR."}};
_addOptions(makeConstArrayView(debuggingOpts), options);
/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! Experimental !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */