diff --git a/clcache.py b/clcache.py index cd299de8..b675c82b 100644 --- a/clcache.py +++ b/clcache.py @@ -1493,8 +1493,9 @@ def processDirect(cache, objectFile, compiler, cmdLine, sourceFile): postProcessing = lambda compilerResult: postprocessNoManifestMiss( cache, objectFile, manifestSection, manifestHash, baseDir, sourceFile, compilerResult, stripIncludes) - compilerResult = invokeRealCompiler(compiler, cmdLine, captureOutput=True) - compilerResult = postProcessing(compilerResult) + compilerResult = invokeRealCompiler(compiler, cmdLine, captureOutput=True) + compilerResult = postProcessing(compilerResult) + printTraceStatement("Finished. Exit code {0:d}".format(compilerResult[0])) return compilerResult