1996-11-07 03:04:12 -08:00
|
|
|
(***********************************************************************)
|
|
|
|
(* *)
|
|
|
|
(* Objective Caml *)
|
|
|
|
(* *)
|
|
|
|
(* Xavier Leroy, projet Cristal, INRIA Rocquencourt *)
|
|
|
|
(* *)
|
|
|
|
(* 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. *)
|
1996-11-07 03:04:12 -08:00
|
|
|
(* *)
|
|
|
|
(***********************************************************************)
|
|
|
|
|
|
|
|
(* $Id$ *)
|
|
|
|
|
|
|
|
(* Compiling C files and building C libraries *)
|
|
|
|
|
1997-05-15 06:30:31 -07:00
|
|
|
let command cmdline =
|
|
|
|
if !Clflags.verbose then begin
|
|
|
|
prerr_string "+ ";
|
|
|
|
prerr_string cmdline;
|
|
|
|
prerr_newline()
|
|
|
|
end;
|
|
|
|
Sys.command cmdline
|
|
|
|
|
1999-02-24 07:21:50 -08:00
|
|
|
let run_command cmdline = ignore(command cmdline)
|
1998-11-12 06:54:12 -08:00
|
|
|
|
1999-11-29 11:04:49 -08:00
|
|
|
let quote = Filename.quote;;
|
|
|
|
|
1998-11-06 07:39:43 -08:00
|
|
|
let compile_file name =
|
1999-11-29 11:04:49 -08:00
|
|
|
match Sys.os_type with
|
|
|
|
| "MacOS" ->
|
|
|
|
let qname = quote name in
|
|
|
|
let includes = Config.standard_library :: !Clflags.include_dirs in
|
|
|
|
let args =
|
|
|
|
Printf.sprintf " %s %s -i %s"
|
|
|
|
(String.concat " " (List.rev_map quote !Clflags.ccopts))
|
|
|
|
(String.concat "," (List.rev_map quote includes))
|
|
|
|
qname
|
|
|
|
in
|
|
|
|
run_command ("sc " ^ args ^ " -o " ^ qname ^ ".o");
|
|
|
|
command ("mrc " ^ args ^ " -o " ^ qname ^ ".x")
|
|
|
|
| _ ->
|
|
|
|
command
|
|
|
|
(Printf.sprintf
|
|
|
|
"%s -c %s %s -I%s %s"
|
|
|
|
!Clflags.c_compiler
|
|
|
|
(String.concat " " (List.rev !Clflags.ccopts))
|
|
|
|
(String.concat " "
|
|
|
|
(List.map (fun dir -> "-I" ^ dir)
|
|
|
|
(List.rev !Clflags.include_dirs)))
|
|
|
|
Config.standard_library
|
|
|
|
name)
|
|
|
|
;;
|
1997-06-23 07:36:30 -07:00
|
|
|
|
1996-11-07 03:04:12 -08:00
|
|
|
let create_archive archive file_list =
|
|
|
|
Misc.remove_file archive;
|
|
|
|
match Config.system with
|
|
|
|
"win32" ->
|
1997-05-15 06:30:31 -07:00
|
|
|
command(Printf.sprintf "lib /nologo /debugtype:cv /out:%s %s"
|
1996-11-07 03:04:12 -08:00
|
|
|
archive (String.concat " " file_list))
|
|
|
|
| _ ->
|
|
|
|
let r1 =
|
1997-05-15 06:30:31 -07:00
|
|
|
command(Printf.sprintf "ar rc %s %s"
|
1996-11-07 03:04:12 -08:00
|
|
|
archive (String.concat " " file_list)) in
|
|
|
|
if r1 <> 0 or String.length Config.ranlib = 0
|
|
|
|
then r1
|
1997-05-15 06:30:31 -07:00
|
|
|
else command(Config.ranlib ^ " " ^ archive)
|
1998-12-02 06:39:27 -08:00
|
|
|
|
|
|
|
let expand_libname name =
|
|
|
|
if String.length name < 2 || String.sub name 0 2 <> "-l"
|
|
|
|
then name
|
|
|
|
else begin
|
|
|
|
let libname =
|
|
|
|
"lib" ^ String.sub name 2 (String.length name - 2) ^ Config.ext_lib in
|
|
|
|
try
|
|
|
|
Misc.find_in_path !Config.load_path libname
|
|
|
|
with Not_found ->
|
|
|
|
libname
|
|
|
|
end
|