Patch #1003 2006-04-17 11:47
afb
GDC compiler for Mac OS X (gdcmac)- Download
- 1003-GDC_compiler_f.patch (752 bytes)
Index: src/plugins/compilergcc/compilergcc.cpp
===================================================================
--- src/plugins/compilergcc/compilergcc.cpp (revision 2411)
+++ src/plugins/compilergcc/compilergcc.cpp (arbetskopia)
@@ -61,6 +61,9 @@
#include "compilerDMD.h"
#include "compilerGNUARM.h"
#endif
+#ifdef __WXMAC__
+ #include "compilerGDC.h"
+#endif
#include "compilerICC.h"
#include "compilerSDCC.h"
@@ -244,6 +247,9 @@
CompilerFactory::RegisterCompiler(new CompilerDMD);
CompilerFactory::RegisterCompiler(new CompilerGNUARM);
#endif
+#ifdef __WXMAC__
+ CompilerFactory::RegisterCompiler(new CompilerGDC);
+#endif
// register (if any) user-copies of built-in compilers
CompilerFactory::RegisterUserCompilers();
History
afb 2006-05-07 18:23
somehow missed the "code" part of the patch...
mandrav 2006-05-09 08:35
Patch applied, thanks.