From b22abd272b290057c10fb2fbd96069f538e9ede9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herv=C3=A9=20Poussineau?= Date: Wed, 5 Dec 2007 16:17:51 +0000 Subject: [PATCH] Don't add implicit dependencies for ntdll svn path=/trunk/; revision=31016 --- reactos/tools/rbuild/backend/mingw/modulehandler.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/reactos/tools/rbuild/backend/mingw/modulehandler.cpp b/reactos/tools/rbuild/backend/mingw/modulehandler.cpp index a630b41e4e2..ecc9803d247 100644 --- a/reactos/tools/rbuild/backend/mingw/modulehandler.cpp +++ b/reactos/tools/rbuild/backend/mingw/modulehandler.cpp @@ -2902,6 +2902,12 @@ MingwAddImplicitLibraries( Module &module ) return; } + if ( module.name == "ntdll" ) + { + // no implicit libraries + return; + } + if ( !module.isDefaultEntryPoint ) { if ( module.GetEntryPoint(false) == "0" )