Don't add implicit dependencies for ntdll

svn path=/trunk/; revision=31016
This commit is contained in:
Hervé Poussineau 2007-12-05 16:17:51 +00:00
parent e3876e7f3c
commit b22abd272b

View file

@ -2902,6 +2902,12 @@ MingwAddImplicitLibraries( Module &module )
return;
}
if ( module.name == "ntdll" )
{
// no implicit libraries
return;
}
if ( !module.isDefaultEntryPoint )
{
if ( module.GetEntryPoint(false) == "0" )