aboutsummaryrefslogtreecommitdiff
path: root/lib/compilers/llvm-mos.ts
diff options
context:
space:
mode:
Diffstat (limited to 'lib/compilers/llvm-mos.ts')
-rw-r--r--lib/compilers/llvm-mos.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/compilers/llvm-mos.ts b/lib/compilers/llvm-mos.ts
index 8fded073e..10f6f877f 100644
--- a/lib/compilers/llvm-mos.ts
+++ b/lib/compilers/llvm-mos.ts
@@ -27,7 +27,7 @@ import path from 'path';
import _ from 'underscore';
import {CompilationResult} from '../../types/compilation/compilation.interfaces';
-import {CompilerInfo} from '../../types/compiler.interfaces';
+import {PreliminaryCompilerInfo} from '../../types/compiler.interfaces';
import {ParseFiltersAndOutputOptions} from '../../types/features/filters.interfaces';
import {ArtifactType} from '../../types/tool.interfaces';
import * as utils from '../utils';
@@ -39,7 +39,7 @@ export class LLVMMOSCompiler extends ClangCompiler {
return 'llvmmos';
}
- constructor(compilerInfo: CompilerInfo, env) {
+ constructor(compilerInfo: PreliminaryCompilerInfo, env) {
super(compilerInfo, env);
this.externalparser = null;
this.toolchainPath = path.normalize(path.join(path.dirname(this.compiler.exe), '..'));