diff gen/linker.h @ 277:90a8c798b0db trunk

[svn r298] Eliminated the dmd/link.c source file entirely in favor of a llvm::sys based approach to the same functionality.
author lindquist
date Fri, 20 Jun 2008 22:09:04 +0200
parents 21f85bac0b1a
children 70c370e97944
line wrap: on
line diff
--- a/gen/linker.h	Fri Jun 20 17:45:13 2008 +0200
+++ b/gen/linker.h	Fri Jun 20 22:09:04 2008 +0200
@@ -14,4 +14,15 @@
  */
 int linkExecutable();
 
+/**
+ * Delete the executable that was previously linked with linkExecutable.
+ */
+void deleteExecutable();
+
+/**
+ * Runs the executable that was previously linked with linkExecutable.
+ * @return the return status of the executable.
+ */
+int runExectuable();
+
 #endif // LLVMDC_GEN_LINKER_H