Skip to content

Commit bee2583

Browse files
committed
Now tested.
1 parent a562227 commit bee2583

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

wllvm/extraction.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ def extract_section_linux(inputFile):
152152
def linkFiles(pArgs, fileNames):
153153
linkCmd = [pArgs.llvmLinker, '-v'] if pArgs.verboseFlag else [pArgs.llvmLinker]
154154

155-
linkCmd.extend(['-o={0}'.format(pArgs.outputFile]))
155+
linkCmd.append('-o={0}'.format(pArgs.outputFile))
156156

157157
linkCmd.extend([x for x in fileNames if x != ''])
158158
_logger.info('Writing output to %s', pArgs.outputFile)

0 commit comments

Comments
 (0)