diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-01-23 20:08:16 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-01-23 20:08:16 +0000 |
commit | d9fb9726613aba37553fcdb85d1ed0726f94b0e8 (patch) | |
tree | 2982aaf6fd2538b6c022f1f4a3b20c2099906ff7 /tools/ccc/ccclib/Tools.py | |
parent | c472d79e3aa3a81825f0e0c358dfd0317d6060ed (diff) |
ccc: Finish definition of long argument translations.
- However, these last ones do not actually work; the issue is that
they translate to batches of options and need to be reparsed. For
now we just give an unsupported error on them.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@62872 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/ccc/ccclib/Tools.py')
-rw-r--r-- | tools/ccc/ccclib/Tools.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/ccc/ccclib/Tools.py b/tools/ccc/ccclib/Tools.py index b719b86442..8b3ee744bb 100644 --- a/tools/ccc/ccclib/Tools.py +++ b/tools/ccc/ccclib/Tools.py @@ -996,7 +996,7 @@ class Darwin_X86_LinkTool(Tool): arglist.addAllArgs(cmd_args, arglist.parser.uGroup) arglist.addAllArgs(cmd_args, arglist.parser.AOption) arglist.addLastArg(cmd_args, arglist.parser.eOption) - arglist.addAllArgs(cmd_args, arglist.parser.mOption) + arglist.addAllArgs(cmd_args, arglist.parser.mSeparate) arglist.addAllArgs(cmd_args, arglist.parser.rOption) cmd_args.extend(arglist.render(output)) |