flags.def 676 B

12345678910111213141516171819
  1. // Part of the Carbon Language project, under the Apache License v2.0 with LLVM
  2. // Exceptions. See /LICENSE for license information.
  3. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. // Note: X-macro header. Do not use include guards.
  5. #ifndef CARBON_SUBCOMMAND
  6. // TODO: We should expand `HelpText` to be a short help name, a synopsis, and a
  7. // long-form description.
  8. #define CARBON_SUBCOMMAND(Name, Spelling, HelpText)
  9. #endif
  10. CARBON_SUBCOMMAND(Help, "help",
  11. "Display help information about the driver options.")
  12. CARBON_SUBCOMMAND(
  13. Dump, "dump",
  14. "Dumps intermediate compilation state for the input source file.")
  15. #undef CARBON_SUBCOMMAND