Use _utop.ml to avoid creating a separate dir for utop rules

This commit is contained in:
Rudi Grinberg 2018-02-21 18:25:08 +07:00
parent 6235cb6b99
commit 9ec894eda0
2 changed files with 9 additions and 11 deletions

View File

@ -3,8 +3,8 @@ open Jbuild
open Build.O
open! No_io
let exe_name = "utop"
let main_module_name = String.capitalize_ascii exe_name
let exe_name = "_utop"
let main_module_name = "Utop"
let main_module_filename = exe_name ^ ".ml"
let pp_ml fmt include_dirs =
@ -36,10 +36,8 @@ let add_module_rules sctx ~dir lib_requires =
>>> Build.write_file_dyn path in
Super_context.add_rule sctx utop_ml
let utop_exe_dir ~dir = Path.relative dir ".utop"
let utop_exe dir =
Path.relative (utop_exe_dir ~dir) exe_name
Path.relative dir exe_name
(* Use the [.exe] version. As the utop executable is declared with
[(modes (byte))], the [.exe] correspond the bytecode linked in
custom mode. We do that so that it works without hassle when
@ -62,11 +60,10 @@ let setup sctx ~dir ~(libs : Library.t list) ~scope =
}
; intf = None
; obj_name = "" } in
let utop_exe_dir = utop_exe_dir ~dir in
let _obj_dir, libs =
Exe.build_and_link sctx
~loc
~dir:utop_exe_dir
~dir
~program:{ name = exe_name ; main_module_name }
~modules
~scope
@ -76,6 +73,7 @@ let setup sctx ~dir ~(libs : Library.t list) ~scope =
(List.map ~f:(fun (lib : Library.t) ->
Lib_dep.direct lib.name) libs)
)
~flags:(Ocaml_flags.append_common (Ocaml_flags.default ()) ["-w"; "-24"])
~link_flags:(Build.return ["-linkall"; "-warn-error"; "-31"])
in
add_module_rules sctx ~dir:utop_exe_dir libs
add_module_rules sctx ~dir libs

View File

@ -1,8 +1,8 @@
$ $JBUILDER utop -j1 --display short --root . forutop -- init_forutop.ml
ocamldep forutop/.utop/utop.ml.d
ocamldep forutop/_utop.ml.d
ocamldep forutop/forutop.ml.d
ocamlc forutop/.forutop.objs/forutop.{cmi,cmo,cmt}
ocamlc forutop/.utop/.utop.eobjs/utop.{cmi,cmo,cmt}
ocamlc forutop/._utop.eobjs/_utop.{cmi,cmo,cmt}
ocamlc forutop/forutop.cma
ocamlc forutop/.utop/utop.exe
ocamlc forutop/_utop.exe
hello in utop