1995-08-09 08:06:35 -07:00
|
|
|
(***********************************************************************)
|
|
|
|
(* *)
|
1996-04-30 07:53:58 -07:00
|
|
|
(* Objective Caml *)
|
1995-08-09 08:06:35 -07:00
|
|
|
(* *)
|
|
|
|
(* Xavier Leroy, projet Cristal, INRIA Rocquencourt *)
|
|
|
|
(* *)
|
1996-04-30 07:53:58 -07:00
|
|
|
(* Copyright 1996 Institut National de Recherche en Informatique et *)
|
1995-08-09 08:06:35 -07:00
|
|
|
(* Automatique. Distributed only by permission. *)
|
|
|
|
(* *)
|
|
|
|
(***********************************************************************)
|
|
|
|
|
|
|
|
(* $Id$ *)
|
|
|
|
|
1995-05-04 03:15:53 -07:00
|
|
|
(* System configuration *)
|
|
|
|
|
|
|
|
val version: string
|
|
|
|
(* The current version number of the system *)
|
|
|
|
|
|
|
|
val standard_library: string
|
|
|
|
(* The directory containing the standard libraries *)
|
1995-07-18 01:42:01 -07:00
|
|
|
val bytecomp_c_compiler: string
|
|
|
|
(* The C compiler to use for the custom runtime mode of the
|
|
|
|
bytecode compiler *)
|
|
|
|
val native_c_compiler: string
|
|
|
|
(* The C compiler to use for the native code compiler *)
|
1995-05-04 03:15:53 -07:00
|
|
|
val c_libraries: string
|
|
|
|
(* The C libraries to link with custom runtimes *)
|
|
|
|
|
|
|
|
val load_path: string list ref
|
|
|
|
(* Directories in the search path for .cmi and .cmo files *)
|
|
|
|
|
|
|
|
val exec_magic_number: string
|
|
|
|
(* Magic number for bytecode executable files *)
|
|
|
|
val cmi_magic_number: string
|
|
|
|
(* Magic number for compiled interface files *)
|
|
|
|
val cmo_magic_number: string
|
|
|
|
(* Magic number for object bytecode files *)
|
|
|
|
val cma_magic_number: string
|
|
|
|
(* Magic number for archive files *)
|
1995-07-02 09:50:39 -07:00
|
|
|
val cmx_magic_number: string
|
|
|
|
(* Magic number for compilation unit descriptions *)
|
|
|
|
val cmxa_magic_number: string
|
|
|
|
(* Magic number for libraries of compilation unit descriptions *)
|
1996-04-23 04:37:55 -07:00
|
|
|
val ast_intf_magic_number: string
|
|
|
|
(* Magic number for file holding an interface syntax tree *)
|
|
|
|
val ast_impl_magic_number: string
|
|
|
|
(* Magic number for file holding an implementation syntax tree *)
|
1995-05-22 08:43:44 -07:00
|
|
|
|
|
|
|
val max_tag: int
|
|
|
|
(* Biggest tag that can be stored in the header of a block. *)
|
1995-10-03 07:07:03 -07:00
|
|
|
val max_young_wosize: int
|
|
|
|
(* Maximal size of arrays that are directly allocated in the
|
|
|
|
minor heap *)
|
1995-08-08 05:17:31 -07:00
|
|
|
val architecture: string
|
|
|
|
(* Name of processor type for the native-code compiler *)
|
1996-01-07 09:00:35 -08:00
|
|
|
val model: string
|
|
|
|
(* Name of processor submodel for the native-code compiler *)
|
1995-08-08 05:17:31 -07:00
|
|
|
val system: string
|
|
|
|
(* Name of operating system for the native-code compiler *)
|
1996-02-15 08:19:09 -08:00
|
|
|
|
|
|
|
val ext_obj: string
|
|
|
|
(* Extension for object files, e.g. [.o] under Unix. *)
|
|
|
|
val ext_asm: string
|
|
|
|
(* Extension for assembler files, e.g. [.s] under Unix. *)
|
|
|
|
val ext_lib: string
|
|
|
|
(* Extension for library files, e.g. [.a] under Unix. *)
|