module type Common_options = sig ... endmodule type Compiler_options = sig ... endmodule type Toplevel_options = sig ... endmodule type Bytecomp_options = sig ... endmodule type Bytetop_options = sig ... endmodule type Optcommon_options = sig ... endmodule type Optcomp_options = sig ... endmodule type Opttop_options = sig ... endmodule type Ocamldoc_options = sig ... endmodule type Arg_list = sig ... endmodule Make_bytecomp_options : functor (F : Bytecomp_options) -> Arg_listmodule Make_bytetop_options : functor (F : Bytetop_options) -> Arg_listmodule Make_optcomp_options : functor (F : Optcomp_options) -> Arg_listmodule Make_opttop_options : functor (F : Opttop_options) -> Arg_listmodule Make_ocamldoc_options : functor (F : Ocamldoc_options) -> Arg_listval options_with_command_line_syntax : (string * Stdlib.Arg.spec * string) list -> string list Stdlib.ref -> (string * Stdlib.Arg.spec * string) listoptions_with_command_line_syntax options rreturnsoptions2that behaves likeoptions, but additionally pushes command line argument onr(quoted byFilename.quotewhen necessary). This is meant for ocamlc,optp, which use this to forward most of their arguments to ocamlc,opt.