(***********************************************************************) (* *) (* Objective Caml *) (* *) (* Xavier Leroy, projet Cristal, INRIA Rocquencourt *) (* *) (* Copyright 1996 Institut National de Recherche en Informatique et *) (* en Automatique. All rights reserved. This file is distributed *) (* under the terms of the Q Public License version 1.0. *) (* *) (***********************************************************************) (* $Id: config.mlp,v 1.1.1.1 2002/01/16 09:01:30 cookcu Exp $ *) let version = "3.04" let standard_library = try Sys.getenv "NMLLIB" with Not_found -> "/usr/local/lib/nml" let standard_runtime = "/usr/local/bin/ncamlrun" let bytecomp_c_compiler = "gcc -fno-defer-pop -Wall -Wno-unused" let bytecomp_c_linker = "gcc " let bytecomp_c_libraries = "-ldl -lcurses " let native_c_compiler = "gcc -Wall -Wno-unused" let native_c_linker = "gcc " let native_c_libraries = "" let native_partial_linker = "ld -r " let ranlib = "ranlib" let exec_magic_number = "Caml1999X007" and cmi_magic_number = "Caml1999I008" and cmo_magic_number = "Caml1999O004" and cma_magic_number = "Caml1999A006" and cmx_magic_number = "Caml1999Y006" and cmxa_magic_number = "Caml1999Z008" and ast_impl_magic_number = "Caml1999M008" and ast_intf_magic_number = "Caml1999N007" let load_path = ref ([] : string list) let interface_suffix = ref ".mli" let max_tag = 248 let max_young_wosize = 256 let stack_threshold = 256 (* see byterun/config.h *) let architecture = "none" let model = "default" let system = "unknown" let ext_obj = ".o" let ext_asm = ".s" let ext_lib = ".a" let ext_dll = ".so"