Avoid a linker warning: MSVC 7 doesn't support /pdb:None, the debug

info will always be in a .pdb file.
This commit is contained in:
Thomas Heller 2004-11-10 09:01:41 +00:00
parent 0cf87be326
commit 41f7038a3e
1 changed files with 8 additions and 3 deletions

View File

@ -237,9 +237,14 @@ class MSVCCompiler (CCompiler) :
'/Z7', '/D_DEBUG']
self.ldflags_shared = ['/DLL', '/nologo', '/INCREMENTAL:NO']
self.ldflags_shared_debug = [
'/DLL', '/nologo', '/INCREMENTAL:no', '/pdb:None', '/DEBUG'
]
if self.__version >= 7:
self.ldflags_shared_debug = [
'/DLL', '/nologo', '/INCREMENTAL:no', '/DEBUG'
]
else:
self.ldflags_shared_debug = [
'/DLL', '/nologo', '/INCREMENTAL:no', '/pdb:None', '/DEBUG'
]
self.ldflags_static = [ '/nologo']