diff options
Diffstat (limited to 'lib/compilers/ocaml.ts')
-rw-r--r-- | lib/compilers/ocaml.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/compilers/ocaml.ts b/lib/compilers/ocaml.ts index 6635760ed..13803ba5b 100644 --- a/lib/compilers/ocaml.ts +++ b/lib/compilers/ocaml.ts @@ -22,7 +22,7 @@ // ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE // POSSIBILITY OF SUCH DAMAGE. -import {CompilerInfo} from '../../types/compiler.interfaces'; +import {PreliminaryCompilerInfo} from '../../types/compiler.interfaces'; import {ParseFiltersAndOutputOptions} from '../../types/features/filters.interfaces'; import {BaseCompiler} from '../base-compiler'; @@ -33,7 +33,7 @@ export class OCamlCompiler extends BaseCompiler { return 'ocaml'; } - constructor(compilerInfo: CompilerInfo, env) { + constructor(compilerInfo: PreliminaryCompilerInfo, env) { super(compilerInfo, env); // override output base because ocaml's -S -o has different semantics. // namely, it outputs a full binary exe to the supposed asm dump. |