comparison 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
comparison
equal deleted inserted replaced
276:21f85bac0b1a 277:90a8c798b0db
12 * Link an executable. 12 * Link an executable.
13 * @return 0 on success. 13 * @return 0 on success.
14 */ 14 */
15 int linkExecutable(); 15 int linkExecutable();
16 16
17 /**
18 * Delete the executable that was previously linked with linkExecutable.
19 */
20 void deleteExecutable();
21
22 /**
23 * Runs the executable that was previously linked with linkExecutable.
24 * @return the return status of the executable.
25 */
26 int runExectuable();
27
17 #endif // LLVMDC_GEN_LINKER_H 28 #endif // LLVMDC_GEN_LINKER_H