mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-26 07:34:06 +00:00
Add support to enable -lfoo to be processed correctly
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1390 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
75deac6b12
commit
de3b862a18
@ -54,7 +54,9 @@ static inline std::auto_ptr<Module> LoadFile(const string &FN) {
|
||||
}
|
||||
|
||||
int main(int argc, char **argv) {
|
||||
cl::ParseCommandLineOptions(argc, argv, " llvm linker\n");
|
||||
cl::ParseCommandLineOptions(argc, argv, " llvm linker\n",
|
||||
cl::EnableSingleLetterArgValue |
|
||||
cl::DisableSingleLetterArgGrouping);
|
||||
assert(InputFilenames.size() > 0 && "OneOrMore is not working");
|
||||
|
||||
unsigned BaseArg = 0;
|
||||
|
@ -54,7 +54,9 @@ static inline std::auto_ptr<Module> LoadFile(const string &FN) {
|
||||
}
|
||||
|
||||
int main(int argc, char **argv) {
|
||||
cl::ParseCommandLineOptions(argc, argv, " llvm linker\n");
|
||||
cl::ParseCommandLineOptions(argc, argv, " llvm linker\n",
|
||||
cl::EnableSingleLetterArgValue |
|
||||
cl::DisableSingleLetterArgGrouping);
|
||||
assert(InputFilenames.size() > 0 && "OneOrMore is not working");
|
||||
|
||||
unsigned BaseArg = 0;
|
||||
|
Loading…
x
Reference in New Issue
Block a user