diff options
Diffstat (limited to 'lib/compilers/clang.ts')
-rw-r--r-- | lib/compilers/clang.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/compilers/clang.ts b/lib/compilers/clang.ts index 9b93e2419..f8ae4b6e5 100644 --- a/lib/compilers/clang.ts +++ b/lib/compilers/clang.ts @@ -70,6 +70,10 @@ export class ClangCompiler extends BaseCompiler { } } + override isCfgCompiler() { + return true; + } + async addTimeTraceToResult(result: CompilationResult, dirPath: string, outputFilename: string) { let timeTraceJson = ''; const outputExt = path.extname(outputFilename); |