| 1 | //==--- ClangOptionDocs.td - Option documentation -------------------------===// |
| 2 | // |
| 3 | // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | // See https://llvm.org/LICENSE.txt for license information. |
| 5 | // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
| 6 | // |
| 7 | //===----------------------------------------------------------------------===// |
| 8 | |
| 9 | def GlobalDocumentation { |
| 10 | code Intro =[{.. |
| 11 | ------------------------------------------------------------------- |
| 12 | NOTE: This file is automatically generated by running clang-tblgen |
| 13 | -gen-opt-docs. Do not edit this file by hand!! |
| 14 | ------------------------------------------------------------------- |
| 15 | |
| 16 | ===================================== |
| 17 | Clang command line argument reference |
| 18 | ===================================== |
| 19 | .. contents:: |
| 20 | :local: |
| 21 | |
| 22 | Introduction |
| 23 | ============ |
| 24 | |
| 25 | This page lists the command line arguments currently supported by the |
| 26 | GCC-compatible ``clang`` and ``clang++`` drivers. |
| 27 | |
| 28 | }]; |
| 29 | |
| 30 | string Program = "clang"; |
| 31 | list<string> ExcludedFlags = ["HelpHidden", "NoDriverOption", |
| 32 | "CLOption", "Unsupported", "Ignored"]; |
| 33 | } |
| 34 | |
| 35 | include "Options.td" |
| 36 | |