Patch #2015 2007-05-20 02:31

heromyth

To create a lib using lib.exe in DMD tools??
Download
2015-To_create_a_li.patch (800 bytes)
Category
Plugin::Bugfix
Status
Accepted
Close date
2007-07-22 11:29
Assigned to
biplab
Index: plugins/compilergcc/compilerDMD.cpp
===================================================================
--- plugins/compilergcc/compilerDMD.cpp    (revision 3956)
+++ plugins/compilergcc/compilerDMD.cpp    (working copy)
@@ -94,7 +94,7 @@
 
     m_Commands[(int)ctCompileObjectCmd] = _T("$compiler $options $includes -c $file -of$object");
     m_Commands[(int)ctLinkDynamicCmd] = _T("$linker $exe_output $link_options $link_objects $libs $link_resobjects");
-    m_Commands[(int)ctLinkStaticCmd] = _T("$lib_linker $static_output $link_options $link_objects");
+    m_Commands[(int)ctLinkStaticCmd] = _T("$lib_linker $link_options $static_output $link_objects");
     m_Commands[(int)ctLinkNativeCmd] = m_Commands[(int)ctLinkConsoleExeCmd]; // unsupported currently
 
     m_Options.ClearOptions();
biplab 2007-07-22 11:29

Thanks for the patch.