1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
(**************************************************************************)
(* *)
(* OCaml *)
(* *)
(* Jerome Vouillon, projet Cristal, INRIA Rocquencourt *)
(* OCaml port by John Malecki and Xavier Leroy *)
(* *)
(* Copyright 1996 Institut National de Recherche en Informatique et *)
(* en Automatique. *)
(* *)
(* All rights reserved. This file is distributed under the terms of *)
(* the GNU Lesser General Public License version 2.1, with the *)
(* special exception on linking described in the file LICENSE. *)
(* *)
(**************************************************************************)
(* Miscellaneous parameters *)
open Debugger_config
let program_name = ref ""
let socket_name = ref ""
let arguments = ref ""
let default_load_path =
ref [ Filename.current_dir_name; Config.standard_library ]
let breakpoint = ref true
let prompt = ref true
let time = ref true
let version = ref true
let add_path dir =
Load_path.add_dir ~hidden:false dir;
Envaux.reset_cache()
let add_path_for mdl dir =
let old = try Hashtbl.find load_path_for mdl with Not_found -> [] in
Hashtbl.replace load_path_for mdl (dir :: old)
(* Used by emacs ? *)
let emacs = ref false
let machine_readable = ref false
|