diff --git a/lib/base-compiler.ts b/lib/base-compiler.ts index 9f5bc2cf7..6c88a4856 100644 --- a/lib/base-compiler.ts +++ b/lib/base-compiler.ts @@ -2867,7 +2867,7 @@ export class BaseCompiler { stderr: [], okToCache: false, code: cmakeStepResult.code, - asm: [{text: ''}], + asm: '', }; result.result.compilationOptions = this.getUsedEnvironmentVariableFlags(makeExecParams); compilationTimeHistogram.observe((performance.now() - start) / 1000); @@ -2890,7 +2890,7 @@ export class BaseCompiler { stderr: [], okToCache: false, code: makeStepResult.code, - asm: [{text: ''}], + asm: '', }; compilationTimeHistogram.observe((performance.now() - start) / 1000); return result;