diff dmd/link.c @ 160:b77664331d06 trunk

[svn r176] Fixed a bug with class constructors.
author lindquist
date Sun, 04 May 2008 04:35:27 +0200
parents 5acec6b2eef8
children 21f85bac0b1a
line wrap: on
line diff
--- a/dmd/link.c	Thu May 01 15:15:28 2008 +0200
+++ b/dmd/link.c	Sun May 04 04:35:27 2008 +0200
@@ -32,6 +32,8 @@
 
 #include	"mem.h"
 
+#include "gen/logger.h"
+
 int executecmd(char *cmd, char *args, int useenv);
 int executearg0(char *cmd, char *args);
 
@@ -41,6 +43,8 @@
 
 int runLINK()
 {
+    Logger::println("*** Linking executable ***");
+
 #if _WIN32
     assert(0 && "linking not done for win32");
 
@@ -321,7 +325,7 @@
 	printf("--- errorlevel %d\n", status);
     return status;
 #else
-    printf ("Linking is not yet supported for this version of LLVMDMD.\n");
+    printf ("Linking is not yet supported for this version of LLVMDC.\n");
     return -1;
 #endif
 }