Author: sserapion
Date: Fri Oct 30 18:19:56 2009
New Revision: 43851
URL:
http://svn.reactos.org/svn/reactos?rev=43851&view=rev
Log:
Work around broken linker by putting mingw support libs before module library
dependencies.
Modified:
branches/ros-amd64-bringup/reactos/tools/rbuild/backend/mingw/modulehandler.cpp
Modified: branches/ros-amd64-bringup/reactos/tools/rbuild/backend/mingw/modulehandler.cpp
URL:
http://svn.reactos.org/svn/reactos/branches/ros-amd64-bringup/reactos/tools…
==============================================================================
--- branches/ros-amd64-bringup/reactos/tools/rbuild/backend/mingw/modulehandler.cpp
[iso-8859-1] (original)
+++ branches/ros-amd64-bringup/reactos/tools/rbuild/backend/mingw/modulehandler.cpp
[iso-8859-1] Fri Oct 30 18:19:56 2009
@@ -1513,8 +1513,8 @@
linkerScriptArgument.c_str (),
objectsMacro.c_str (),
link_defaultlibs ? "$(PROJECT_LPPFLAGS) " : "",
+ GetLinkerMacro ().c_str (),
libsMacro.c_str (),
- GetLinkerMacro ().c_str (),
target_macro.c_str () );
}
else
@@ -1555,8 +1555,8 @@
backend->GetFullName ( temp_exp ).c_str (),
objectsMacro.c_str (),
link_defaultlibs ? "$(PROJECT_LPPFLAGS) " : "",
- libsMacro.c_str (),
GetLinkerMacro ().c_str (),
+ libsMacro.c_str (),
target_macro.c_str () );
fprintf ( fMakefile,