-remove nostdlib from KernelModeDlls to fix linking of bzip2

svn path=/trunk/; revision=22965
This commit is contained in:
Christoph von Wittich 2006-07-09 00:56:23 +00:00
parent df8822f30d
commit c6931157dd

View file

@ -278,7 +278,7 @@ public:
virtual HostType DefaultHost() { return HostFalse; }
virtual void Process ();
std::string TypeSpecificCFlags() { return "-D_SEH_NO_NATIVE_NLG"; }
std::string TypeSpecificLinkerFlags() { return "-nostartfiles -nostdlib"; }
std::string TypeSpecificLinkerFlags() { return "-nostartfiles"; }
private:
void GenerateKernelModeDLLModuleTarget ();
};
@ -291,7 +291,7 @@ public:
virtual HostType DefaultHost() { return HostFalse; }
virtual void Process ();
std::string TypeSpecificCFlags() { return "-D__NTDRIVER__ -D_SEH_NO_NATIVE_NLG"; }
std::string TypeSpecificLinkerFlags() { return "-nostartfiles -nostdlib"; }
std::string TypeSpecificLinkerFlags() { return "-nostartfiles"; }
private:
void GenerateKernelModeDriverModuleTarget ();
};