diff options
Diffstat (limited to 'llvm/tools/llvm-libtool-darwin/llvm-libtool-darwin.cpp')
-rw-r--r-- | llvm/tools/llvm-libtool-darwin/llvm-libtool-darwin.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/llvm/tools/llvm-libtool-darwin/llvm-libtool-darwin.cpp b/llvm/tools/llvm-libtool-darwin/llvm-libtool-darwin.cpp index ad4d6be..a38736e 100644 --- a/llvm/tools/llvm-libtool-darwin/llvm-libtool-darwin.cpp +++ b/llvm/tools/llvm-libtool-darwin/llvm-libtool-darwin.cpp @@ -46,9 +46,10 @@ static cl::list<std::string> InputFiles(cl::Positional, cl::ZeroOrMore, cl::cat(LibtoolCategory)); -static cl::opt<std::string> ArchType( - "arch_only", cl::desc("Specify architecture type for output library"), - cl::value_desc("arch_type"), cl::ZeroOrMore, cl::cat(LibtoolCategory)); +static cl::opt<std::string> + ArchType("arch_only", + cl::desc("Specify architecture type for output library"), + cl::value_desc("arch_type"), cl::cat(LibtoolCategory)); enum class Operation { None, Static }; |