diff options
author | Jacques Garrigue <garrigue at math.nagoya-u.ac.jp> | 2013-12-20 06:55:26 +0000 |
---|---|---|
committer | Jacques Garrigue <garrigue at math.nagoya-u.ac.jp> | 2013-12-20 06:55:26 +0000 |
commit | d90b126bd428999d767ef4db4c5d3b05eb27c345 (patch) | |
tree | 237a045f93257e65ea8b9276d18e79973b5775f7 /driver/optmain.ml | |
parent | c20af454f38f13d7dd3b417e293335fcc82e479f (diff) | |
download | ocaml-module-alias.tar.gz |
Add -trans-mod option for transparent module dependencies.module-alias
Without that option, dependencies are strict, both for
typing and linking.
git-svn-id: http://caml.inria.fr/svn/ocaml/branches/module-alias@14382 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'driver/optmain.ml')
-rw-r--r-- | driver/optmain.ml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/driver/optmain.ml b/driver/optmain.ml index 84e07183bb..d04ad76b19 100644 --- a/driver/optmain.ml +++ b/driver/optmain.ml @@ -110,6 +110,7 @@ module Options = Main_args.Make_optcomp_options (struct let _runtime_variant s = runtime_variant := s let _short_paths = clear real_paths let _strict_sequence = set strict_sequence + let _trans_mod = set transparent_modules let _shared () = shared := true; dlcode := true let _S = set keep_asm_file let _thread = set use_threads |