diff options
author | Freyr666 <sky_rider_93@mail.ru> | 2019-01-24 17:51:02 +0300 |
---|---|---|
committer | Freyr666 <sky_rider_93@mail.ru> | 2019-01-24 17:51:02 +0300 |
commit | 8042a72ad10523d312a86a0689e6e812072bfd4b (patch) | |
tree | 0825c233f5f871198609b9701e900ce68dfce913 /lib/compilers/ocaml.js | |
parent | bb9105bf252dddae9a55c86b564c7384e59ff86e (diff) | |
download | compiler-explorer-8042a72ad10523d312a86a0689e6e812072bfd4b.tar.gz compiler-explorer-8042a72ad10523d312a86a0689e6e812072bfd4b.zip |
OCaml: add compiler flag preventing binary creation
Diffstat (limited to 'lib/compilers/ocaml.js')
-rw-r--r-- | lib/compilers/ocaml.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/compilers/ocaml.js b/lib/compilers/ocaml.js index eb53db37b..9c1f12555 100644 --- a/lib/compilers/ocaml.js +++ b/lib/compilers/ocaml.js @@ -29,7 +29,7 @@ const BaseCompiler = require('../base-compiler'), class OCamlCompiler extends BaseCompiler { optionsForFilter() { - return ['-S', '-g']; + return ['-S', '-g', '-c']; } getOutputFilename(dirPath) { |