forked from OSchip/llvm-project
ccc-analyzer now properly eats the -install_name, -exported_symbols_list, -current_version, -compatibility_version, and -sectorder command line arguments.
llvm-svn: 51965
This commit is contained in:
parent
46267c839d
commit
6da61be501
|
@ -241,6 +241,15 @@ def main(args):
|
|||
if arg == '-o':
|
||||
output = args[i+1]
|
||||
i += 1
|
||||
|
||||
# Arguments we currently ignore with one option.
|
||||
if arg in ['-install_name', '-exported_symbols_list',
|
||||
'-current_version', '-compatibility_version']:
|
||||
i += 1
|
||||
|
||||
# Arguments we currently ignore with three options.
|
||||
if arg in ['-sectorder']:
|
||||
i += 3
|
||||
|
||||
i += 1
|
||||
|
||||
|
|
Loading…
Reference in New Issue