xref: /freebsd/contrib/llvm-project/llvm/tools/llvm-objcopy/InstallNameToolOpts.td (revision 6f63e88c0166ed3e5f2805a9e667c7d24d304cf1)
1//===-- InstallNameToolOpts.td - llvm-install-name-tool options  --------*-===//
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// This file describes the command line options of llvm-install-name.
10//
11//===----------------------------------------------------------------------===//
12
13include "llvm/Option/OptParser.td"
14
15def help : Flag<["--"], "help">;
16def h : Flag<["-"], "h">, Alias<help>;
17
18def add_rpath : Option<["-", "--"], "add_rpath", KIND_SEPARATE>,
19                HelpText<"Add new rpath">;
20
21def version : Flag<["--"], "version">,
22              HelpText<"Print the version and exit.">;
23