[PATCH] D82923: introducing llvm-libtool
Shoaib Meenai via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Jul 1 12:27:01 PDT 2020
smeenai added a comment.
Looking at libtool's options further, the only concern I have is with:
- Treat all remaining arguments as names of files (or archives) and not as options.
In other words, if you include a single `-` by itself on your command line, all remaining arguments are parsed as input names. cl::opt supports similar functionality, but using `--` instead of `-`. I don't know if the TableGen parsing can support that either though, so I don't know if it would be possible for us to keep the exact same command line interface (with respect to this flag) anyway.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D82923/new/
https://reviews.llvm.org/D82923
More information about the llvm-commits
mailing list