We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a562227 commit bee2583Copy full SHA for bee2583
wllvm/extraction.py
@@ -152,7 +152,7 @@ def extract_section_linux(inputFile):
152
def linkFiles(pArgs, fileNames):
153
linkCmd = [pArgs.llvmLinker, '-v'] if pArgs.verboseFlag else [pArgs.llvmLinker]
154
155
- linkCmd.extend(['-o={0}'.format(pArgs.outputFile]))
+ linkCmd.append('-o={0}'.format(pArgs.outputFile))
156
157
linkCmd.extend([x for x in fileNames if x != ''])
158
_logger.info('Writing output to %s', pArgs.outputFile)
0 commit comments