It is normal to pass many object files to SymbolSort. The current workaround to avoid long command line with many object files is to concatenate dumpbin outputs into single file before running SymbolSort. This approach has two issues:
It forces user to copy all symbol data, potentially creating a huge file.
While it works for dumpbin outputs, it is not clear how to apply it e.g. to many PDB files.
I'm trying to analyze 200 projects at once, running SymbolSort from Python, and I have troubles with point 2.
Rationale
It is normal to pass many object files to SymbolSort. The current workaround to avoid long command line with many object files is to concatenate dumpbin outputs into single file before running SymbolSort. This approach has two issues:
I'm trying to analyze 200 projects at once, running SymbolSort from Python, and I have troubles with point 2.