Trying to unify the behavior of wllvm and gllvm when compiling the linux kernel.

This commit is contained in:
Ian A. Mason 2018-04-24 14:50:58 -07:00
parent 18b65a053a
commit 72ed099005

View File

@ -243,7 +243,7 @@ func execCompile(compilerExecName string, pr parserResult, wg *sync.WaitGroup, o
defer (*wg).Done()
success, _ := execCmd(compilerExecName, pr.InputList, "")
if !success {
LogError("Failed to compile using given arguments [%v]\n", pr.InputList)
LogError("Failed to compile using given arguments: %v\n", pr.InputList)
*ok = false
}
}