From 410a5db3d48e84f2157c2c4f4bc29056c0e174b9 Mon Sep 17 00:00:00 2001 From: Bernhard Schommer Date: Fri, 24 Jun 2016 13:57:27 +0200 Subject: Moved assembler and linker into own files. The function to call the assembler and the linker are now in own files like the preprocessor. Bug 19197 --- driver/Linker.mli | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 driver/Linker.mli (limited to 'driver/Linker.mli') diff --git a/driver/Linker.mli b/driver/Linker.mli new file mode 100644 index 00000000..3b92da05 --- /dev/null +++ b/driver/Linker.mli @@ -0,0 +1,21 @@ +(* *********************************************************************) +(* *) +(* The Compcert verified compiler *) +(* *) +(* Xavier Leroy, INRIA Paris-Rocquencourt *) +(* Bernhard Schommer, AbsInt Angewandte Informatik GmbH *) +(* *) +(* Copyright Institut National de Recherche en Informatique et en *) +(* Automatique. All rights reserved. This file is distributed *) +(* under the terms of the INRIA Non-Commercial License Agreement. *) +(* *) +(* *********************************************************************) + +val linker: string -> string list -> unit + (** Link files into executbale *) + +val linker_actions: (Commandline.pattern * Commandline.action) list + (** Commandline optins affecting the assembler *) + +val linker_help: string + (** Commandline help description *) -- cgit