summaryrefslogtreecommitdiffstats
path: root/source/slang/slang-options.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/slang/slang-options.cpp')
-rw-r--r--source/slang/slang-options.cpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/source/slang/slang-options.cpp b/source/slang/slang-options.cpp
index 0ada33697..c3f2ad055 100644
--- a/source/slang/slang-options.cpp
+++ b/source/slang/slang-options.cpp
@@ -566,7 +566,12 @@ void initCommandOptions(CommandOptions& options)
{OptionKind::EmitReflectionJSON,
"-reflection-json",
"-reflection-json <path>",
- "Emit reflection data in JSON format to a file."}};
+ "Emit reflection data in JSON format to a file."},
+ {OptionKind::UseMSVCStyleBitfieldPacking,
+ "-msvc-style-bitfield-packing",
+ nullptr,
+ "Pack bitfields according to MSVC rules (msb first, new field when underlying type size "
+ "changes) rather than gcc-style (lsb first)"}};
_addOptions(makeConstArrayView(generalOpts), options);
@@ -2264,6 +2269,7 @@ SlangResult OptionsParser::_parse(int argc, char const* const* argv)
case OptionKind::LoopInversion:
case OptionKind::UnscopedEnum:
case OptionKind::PreserveParameters:
+ case OptionKind::UseMSVCStyleBitfieldPacking:
linkage->m_optionSet.set(optionKind, true);
break;
case OptionKind::MatrixLayoutRow: