HostConfigFlagsList.h 1.1 KB

123456789101112131415
  1. //-------------------------------------------------------------------------------------------------------
  2. // Copyright (C) Microsoft. All rights reserved.
  3. // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
  4. //-------------------------------------------------------------------------------------------------------
  5. #ifdef FLAG
  6. FLAG(BSTR, dbgbaseline, "Baseline file to compare debugger output", NULL)
  7. FLAG(bool, DebugLaunch, "Create the test debugger and execute test in the debug mode", false)
  8. FLAG(BSTR, GenerateLibraryByteCodeHeader, "Generate bytecode header file from library code", NULL)
  9. FLAG(int, InspectMaxStringLength, "Max string length to dump in locals inspection", 16)
  10. FLAG(BSTR, Serialized, "If source is UTF8, deserializes from bytecode file", NULL)
  11. FLAG(bool, OOPJIT, "Run JIT in a separate process", false)
  12. FLAG(bool, EnsureCloseJITServer, "JIT process will be force closed when ch is terminated", true)
  13. #undef FLAG
  14. #endif