Hubert Tong | 076308a | 2020-04-06 16:56:13 -0400 | [diff] [blame^] | 1 | //===-- MachODump.h ---------------------------------------------*- C++ -*-===// |
| 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 | #ifndef LLVM_TOOLS_LLVM_OBJDUMP_MACHODUMP_H |
| 10 | #define LLVM_TOOLS_LLVM_OBJDUMP_MACHODUMP_H |
| 11 | |
| 12 | #include "llvm/Support/CommandLine.h" |
| 13 | |
| 14 | namespace llvm { |
| 15 | namespace objdump { |
| 16 | |
| 17 | // MachO specific options |
| 18 | extern cl::OptionCategory MachOCat; |
| 19 | extern cl::opt<bool> Bind; |
| 20 | extern cl::opt<bool> DataInCode; |
| 21 | extern cl::opt<bool> DylibsUsed; |
| 22 | extern cl::opt<bool> DylibId; |
| 23 | extern cl::opt<bool> ExportsTrie; |
| 24 | extern cl::opt<bool> FirstPrivateHeader; |
| 25 | extern cl::opt<bool> IndirectSymbols; |
| 26 | extern cl::opt<bool> InfoPlist; |
| 27 | extern cl::opt<bool> LazyBind; |
| 28 | extern cl::opt<bool> LinkOptHints; |
| 29 | extern cl::opt<bool> ObjcMetaData; |
| 30 | extern cl::opt<bool> Rebase; |
| 31 | extern cl::opt<bool> UniversalHeaders; |
| 32 | extern cl::opt<bool> WeakBind; |
| 33 | |
| 34 | } // namespace objdump |
| 35 | } // namespace llvm |
| 36 | |
| 37 | #endif |