Skip to content

Commit 8f4b8e9

Browse files
committed
Another ooops.
1 parent 749caf3 commit 8f4b8e9

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

wllvm/extraction.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,7 @@ def buildArchive(pArgs, bitCodeFiles):
424424
pArgs.outputFile = pArgs.inputFile
425425
pArgs.outputFile += '.' + moduleExtension
426426

427-
_logger.info('Writing output to %s', pArgs.outputFile)
427+
_logger.warning('Writing output to %s', pArgs.outputFile)
428428

429429
return linkFiles(pArgs, bitCodeFiles)
430430

@@ -440,7 +440,7 @@ def buildArchive(pArgs, bitCodeFiles):
440440
else:
441441
pArgs.outputFile = pArgs.inputFile + bcaExtension
442442

443-
_logger.info('Writing output to %s', pArgs.outputFile)
443+
_logger.warning('Writing output to %s', pArgs.outputFile)
444444

445445
return archiveFiles(pArgs, bitCodeFiles)
446446

wllvm/version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,11 @@
6060
6161
1.1.5 - 3/14/2018 fixes suggested by Alexander Bakst
6262
63-
1.1.6 - 4/24/2018 fixes suggested by building the Linux kernel and trying to harmonize with gllvm.
63+
1.2.0 - 4/24/2018 fixes suggested by building the Linux kernel and trying to harmonize with gllvm.
6464
4/28/2018 can handle thin archives, can sort bitcode input to llvm-{ar, link} and manifest via the -s switch.
6565
5/1/2018 can handle archives correctly (deal with multiple files with the same name in the archive).
6666
6767
"""
6868

69-
wllvm_version = '1.1.6'
69+
wllvm_version = '1.2.0'
7070
wllvm_date = 'May 1st 2018'

0 commit comments

Comments
 (0)