1998-04-06 09:32:57 -07:00
|
|
|
(***********************************************************************)
|
|
|
|
(* *)
|
2011-07-27 07:17:02 -07:00
|
|
|
(* OCaml *)
|
1998-04-06 09:32:57 -07:00
|
|
|
(* *)
|
|
|
|
(* Damien Doligez, projet Para, INRIA Rocquencourt *)
|
|
|
|
(* *)
|
|
|
|
(* Copyright 1998 Institut National de Recherche en Informatique et *)
|
1999-11-17 10:59:06 -08:00
|
|
|
(* en Automatique. All rights reserved. This file is distributed *)
|
|
|
|
(* under the terms of the Q Public License version 1.0. *)
|
1998-04-06 09:32:57 -07:00
|
|
|
(* *)
|
|
|
|
(***********************************************************************)
|
|
|
|
|
2014-05-04 19:05:30 -07:00
|
|
|
module type Common_options = sig
|
2011-12-20 02:35:43 -08:00
|
|
|
val _absname : unit -> unit
|
2010-04-13 03:44:25 -07:00
|
|
|
val _I : string -> unit
|
|
|
|
val _labels : unit -> unit
|
2014-05-04 19:05:30 -07:00
|
|
|
val _no_alias_deps : unit -> unit
|
2010-04-13 03:44:25 -07:00
|
|
|
val _no_app_funct : unit -> unit
|
|
|
|
val _noassert : unit -> unit
|
|
|
|
val _nolabels : unit -> unit
|
|
|
|
val _nostdlib : unit -> unit
|
2013-01-25 01:12:31 -08:00
|
|
|
val _ppx : string -> unit
|
2010-04-13 03:44:25 -07:00
|
|
|
val _principal : unit -> unit
|
|
|
|
val _rectypes : unit -> unit
|
2014-04-29 04:56:17 -07:00
|
|
|
val _safe_string : unit -> unit
|
2013-09-04 08:12:37 -07:00
|
|
|
val _short_paths : unit -> unit
|
2010-04-13 03:44:25 -07:00
|
|
|
val _strict_sequence : unit -> unit
|
|
|
|
val _unsafe : unit -> unit
|
2014-04-29 04:56:17 -07:00
|
|
|
val _unsafe_string : unit -> unit
|
2010-04-13 03:44:25 -07:00
|
|
|
val _version : unit -> unit
|
2010-05-20 07:06:29 -07:00
|
|
|
val _vnum : unit -> unit
|
2010-04-13 03:44:25 -07:00
|
|
|
val _w : string -> unit
|
|
|
|
val _warn_error : string -> unit
|
2010-05-08 13:11:27 -07:00
|
|
|
val _warn_help : unit -> unit
|
2010-04-13 03:44:25 -07:00
|
|
|
|
2012-10-17 09:09:38 -07:00
|
|
|
val _dsource : unit -> unit
|
2010-04-13 03:44:25 -07:00
|
|
|
val _dparsetree : unit -> unit
|
2012-12-18 09:19:53 -08:00
|
|
|
val _dtypedtree : unit -> unit
|
2010-04-13 03:44:25 -07:00
|
|
|
val _drawlambda : unit -> unit
|
|
|
|
val _dlambda : unit -> unit
|
|
|
|
|
|
|
|
val anonymous : string -> unit
|
2014-05-04 19:05:30 -07:00
|
|
|
end
|
2010-04-13 03:44:25 -07:00
|
|
|
|
2014-05-04 19:05:30 -07:00
|
|
|
module type Compiler_options = sig
|
2010-04-13 03:44:25 -07:00
|
|
|
val _a : unit -> unit
|
|
|
|
val _annot : unit -> unit
|
2012-05-30 07:52:37 -07:00
|
|
|
val _binannot : unit -> unit
|
2010-04-13 03:44:25 -07:00
|
|
|
val _c : unit -> unit
|
|
|
|
val _cc : string -> unit
|
|
|
|
val _cclib : string -> unit
|
|
|
|
val _ccopt : string -> unit
|
|
|
|
val _config : unit -> unit
|
|
|
|
val _g : unit -> unit
|
|
|
|
val _i : unit -> unit
|
|
|
|
val _impl : string -> unit
|
|
|
|
val _intf : string -> unit
|
|
|
|
val _intf_suffix : string -> unit
|
2013-09-17 05:45:05 -07:00
|
|
|
val _keep_locs : unit -> unit
|
2010-04-13 03:44:25 -07:00
|
|
|
val _linkall : unit -> unit
|
|
|
|
val _noautolink : unit -> unit
|
|
|
|
val _o : string -> unit
|
|
|
|
val _output_obj : unit -> unit
|
|
|
|
val _pack : unit -> unit
|
|
|
|
val _pp : string -> unit
|
|
|
|
val _principal : unit -> unit
|
|
|
|
val _rectypes : unit -> unit
|
2011-03-17 09:18:05 -07:00
|
|
|
val _runtime_variant : string -> unit
|
2014-04-29 04:56:17 -07:00
|
|
|
val _safe_string : unit -> unit
|
2013-09-04 08:12:37 -07:00
|
|
|
val _short_paths : unit -> unit
|
2010-04-13 03:44:25 -07:00
|
|
|
val _thread : unit -> unit
|
|
|
|
val _v : unit -> unit
|
2013-09-04 08:12:37 -07:00
|
|
|
val _verbose : unit -> unit
|
2010-04-13 03:44:25 -07:00
|
|
|
val _where : unit -> unit
|
|
|
|
|
|
|
|
val _nopervasives : unit -> unit
|
2014-05-04 19:05:30 -07:00
|
|
|
end
|
|
|
|
;;
|
2010-04-13 03:44:25 -07:00
|
|
|
|
2014-05-04 19:05:30 -07:00
|
|
|
module type Bytecomp_options = sig
|
|
|
|
include Common_options
|
|
|
|
include Compiler_options
|
|
|
|
val _compat_32 : unit -> unit
|
|
|
|
val _custom : unit -> unit
|
|
|
|
val _dllib : string -> unit
|
|
|
|
val _dllpath : string -> unit
|
|
|
|
val _make_runtime : unit -> unit
|
|
|
|
val _vmthread : unit -> unit
|
|
|
|
val _use_runtime : string -> unit
|
|
|
|
|
|
|
|
val _dinstr : unit -> unit
|
|
|
|
|
|
|
|
val _use_prims : string -> unit
|
2010-04-13 03:44:25 -07:00
|
|
|
end;;
|
|
|
|
|
2014-05-04 19:05:30 -07:00
|
|
|
module type Bytetop_options = sig
|
|
|
|
include Common_options
|
2010-04-13 03:44:25 -07:00
|
|
|
val _init : string -> unit
|
2013-08-04 12:58:09 -07:00
|
|
|
val _noinit : unit -> unit
|
2010-04-13 03:44:25 -07:00
|
|
|
val _noprompt : unit -> unit
|
2012-01-27 04:48:15 -08:00
|
|
|
val _nopromptcont : unit -> unit
|
2011-12-30 08:28:16 -08:00
|
|
|
val _stdin : unit -> unit
|
2010-04-13 03:44:25 -07:00
|
|
|
|
2014-05-04 19:05:30 -07:00
|
|
|
val _dinstr : unit -> unit
|
|
|
|
end;;
|
|
|
|
|
|
|
|
module type Optcommon_options = sig
|
|
|
|
val _compact : unit -> unit
|
|
|
|
val _inline : int -> unit
|
|
|
|
|
2012-02-21 09:41:02 -08:00
|
|
|
val _dclambda : unit -> unit
|
2010-04-13 03:44:25 -07:00
|
|
|
val _dcmm : unit -> unit
|
|
|
|
val _dsel : unit -> unit
|
|
|
|
val _dcombine : unit -> unit
|
2014-04-26 03:40:22 -07:00
|
|
|
val _dcse : unit -> unit
|
2010-04-13 03:44:25 -07:00
|
|
|
val _dlive : unit -> unit
|
|
|
|
val _dspill : unit -> unit
|
|
|
|
val _dsplit : unit -> unit
|
|
|
|
val _dinterf : unit -> unit
|
|
|
|
val _dprefer : unit -> unit
|
|
|
|
val _dalloc : unit -> unit
|
|
|
|
val _dreload : unit -> unit
|
|
|
|
val _dscheduling : unit -> unit
|
|
|
|
val _dlinear : unit -> unit
|
|
|
|
val _dstartup : unit -> unit
|
2014-05-04 19:05:30 -07:00
|
|
|
end;;
|
2010-04-13 03:44:25 -07:00
|
|
|
|
2014-05-04 19:05:30 -07:00
|
|
|
module type Optcomp_options = sig
|
|
|
|
include Common_options
|
|
|
|
include Compiler_options
|
|
|
|
include Optcommon_options
|
|
|
|
val _for_pack : string -> unit
|
|
|
|
val _no_float_const_prop : unit -> unit
|
|
|
|
val _nodynlink : unit -> unit
|
|
|
|
val _p : unit -> unit
|
|
|
|
val _pp : string -> unit
|
|
|
|
val _S : unit -> unit
|
|
|
|
val _shared : unit -> unit
|
|
|
|
end;;
|
|
|
|
|
|
|
|
module type Opttop_options = sig
|
|
|
|
include Common_options
|
|
|
|
include Optcommon_options
|
|
|
|
val _init : string -> unit
|
|
|
|
val _noinit : unit -> unit
|
|
|
|
val _noprompt : unit -> unit
|
|
|
|
val _nopromptcont : unit -> unit
|
|
|
|
val _S : unit -> unit
|
|
|
|
val _stdin : unit -> unit
|
2010-04-13 03:44:25 -07:00
|
|
|
end;;
|
|
|
|
|
|
|
|
module type Arg_list = sig
|
|
|
|
val list : (string * Arg.spec * string) list
|
|
|
|
end;;
|
|
|
|
|
|
|
|
module Make_bytecomp_options (F : Bytecomp_options) : Arg_list;;
|
|
|
|
module Make_bytetop_options (F : Bytetop_options) : Arg_list;;
|
|
|
|
module Make_optcomp_options (F : Optcomp_options) : Arg_list;;
|
|
|
|
module Make_opttop_options (F : Opttop_options) : Arg_list;;
|