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 *)
|
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. *)
|
1995-08-09 08:06:35 -07:00
|
|
|
(* *)
|
|
|
|
(***********************************************************************)
|
|
|
|
|
|
|
|
(* $Id$ *)
|
|
|
|
|
2000-03-09 01:12:28 -08:00
|
|
|
let version = "2.99+9"
|
1996-02-15 08:19:09 -08:00
|
|
|
|
|
|
|
let standard_library =
|
|
|
|
try
|
|
|
|
Sys.getenv "CAMLLIB"
|
|
|
|
with Not_found ->
|
|
|
|
"%%LIBDIR%%"
|
1995-05-04 03:15:53 -07:00
|
|
|
|
1998-04-14 07:48:34 -07:00
|
|
|
let standard_runtime = "%%BYTERUN%%"
|
1995-07-18 01:42:01 -07:00
|
|
|
let bytecomp_c_compiler = "%%BYTECC%%"
|
|
|
|
let native_c_compiler = "%%NATIVECC%%"
|
1997-03-17 05:01:04 -08:00
|
|
|
let native_partial_linker = "%%PARTIALLD%%"
|
1995-05-04 03:15:53 -07:00
|
|
|
let c_libraries = "%%CCLIBS%%"
|
1996-11-07 03:01:32 -08:00
|
|
|
let ranlib = "%%RANLIBCMD%%"
|
1995-05-04 03:15:53 -07:00
|
|
|
|
2000-03-05 11:18:50 -08:00
|
|
|
let exec_magic_number = "Caml1999X006"
|
1999-11-30 08:07:38 -08:00
|
|
|
and cmi_magic_number = "Caml1999I005"
|
1997-05-15 06:30:31 -07:00
|
|
|
and cmo_magic_number = "Caml1999O004"
|
2000-03-09 01:12:28 -08:00
|
|
|
and cma_magic_number = "Caml1999A005"
|
1998-04-30 05:13:01 -07:00
|
|
|
and cmx_magic_number = "Caml1999Y006"
|
2000-03-09 01:12:28 -08:00
|
|
|
and cmxa_magic_number = "Caml1999Z007"
|
1999-12-16 06:29:25 -08:00
|
|
|
and ast_impl_magic_number = "Caml1999M007"
|
|
|
|
and ast_intf_magic_number = "Caml1999N007"
|
1995-05-04 03:15:53 -07:00
|
|
|
|
|
|
|
let load_path = ref ([] : string list)
|
|
|
|
|
1998-05-27 07:10:14 -07:00
|
|
|
let interface_suffix = ref ".mli"
|
|
|
|
|
1995-07-28 05:24:04 -07:00
|
|
|
let max_tag = 248
|
1995-10-03 07:07:03 -07:00
|
|
|
let max_young_wosize = 256
|
1995-08-08 05:17:31 -07:00
|
|
|
|
|
|
|
let architecture = "%%ARCH%%"
|
1996-01-07 09:00:35 -08:00
|
|
|
let model = "%%MODEL%%"
|
1995-08-08 05:17:31 -07:00
|
|
|
let system = "%%SYSTEM%%"
|
1996-02-15 08:19:09 -08:00
|
|
|
|
|
|
|
let ext_obj = "%%EXT_OBJ%%"
|
|
|
|
let ext_asm = "%%EXT_ASM%%"
|
|
|
|
let ext_lib = "%%EXT_LIB%%"
|