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 ffb1354 commit a562227Copy full SHA for a562227
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', pArgs.outputFile])
+ linkCmd.extend(['-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