blob: 252b0f417af8634836c7baeaa721fe8a1cf11bcb [file] [log] [blame]
Hubert Tong076308a2020-04-06 16:56:13 -04001//===-- 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
14namespace llvm {
15namespace objdump {
16
17// MachO specific options
18extern cl::OptionCategory MachOCat;
19extern cl::opt<bool> Bind;
20extern cl::opt<bool> DataInCode;
21extern cl::opt<bool> DylibsUsed;
22extern cl::opt<bool> DylibId;
23extern cl::opt<bool> ExportsTrie;
24extern cl::opt<bool> FirstPrivateHeader;
25extern cl::opt<bool> IndirectSymbols;
26extern cl::opt<bool> InfoPlist;
27extern cl::opt<bool> LazyBind;
28extern cl::opt<bool> LinkOptHints;
29extern cl::opt<bool> ObjcMetaData;
30extern cl::opt<bool> Rebase;
31extern cl::opt<bool> UniversalHeaders;
32extern cl::opt<bool> WeakBind;
33
34} // namespace objdump
35} // namespace llvm
36
37#endif