diff options
author | Haz <zyptoskid@yahoo.com> | 2021-08-11 23:02:21 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-11 23:02:21 +0200 |
commit | 4d3750bef3377447c35e93e52f77c52f882693b9 (patch) | |
tree | f609b8dc9e63aa59d6180045edc245f048391888 /lib/compilers/ocaml.js | |
parent | 39aac5341b1f36f3d27fbdbb5ba3b9828391e60d (diff) | |
download | compiler-explorer-4d3750bef3377447c35e93e52f77c52f882693b9.tar.gz compiler-explorer-4d3750bef3377447c35e93e52f77c52f882693b9.zip |
Override default compiler flags for OCaml (#2849)
Fixes github issue #2848
Diffstat (limited to 'lib/compilers/ocaml.js')
-rw-r--r-- | lib/compilers/ocaml.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/compilers/ocaml.js b/lib/compilers/ocaml.js index 91641954a..8bd3d9c09 100644 --- a/lib/compilers/ocaml.js +++ b/lib/compilers/ocaml.js @@ -29,6 +29,10 @@ import { BaseCompiler } from '../base-compiler'; export class OCamlCompiler extends BaseCompiler { static get key() { return 'ocaml'; } + getSharedLibraryPathsAsArguments() { + return []; + } + optionsForFilter() { return ['-S', '-g', '-c']; } |