ocaml/utils/config.mlp

38 lines
1.2 KiB
Plaintext
Raw Normal View History

(***********************************************************************)
(* *)
(* Caml Special Light *)
(* *)
(* Xavier Leroy, projet Cristal, INRIA Rocquencourt *)
(* *)
(* Copyright 1995 Institut National de Recherche en Informatique et *)
(* Automatique. Distributed only by permission. *)
(* *)
(***********************************************************************)
(* $Id$ *)
let standard_library = "%%LIBDIR%%"
let bytecomp_c_compiler = "%%BYTECC%%"
let native_c_compiler = "%%NATIVECC%%"
let c_libraries = "%%CCLIBS%%"
let version = "1.08"
let exec_magic_number = "Caml1999X001"
and cmi_magic_number = "Caml1999I001"
and cmo_magic_number = "Caml1999O001"
and cma_magic_number = "Caml1999A001"
and cmx_magic_number = "Caml1999X001"
and cmxa_magic_number = "Caml1999Z001"
let load_path = ref ([] : string list)
let max_tag = 248
let architecture = "%%ARCH%%"
let system = "%%SYSTEM%%"