[PATCH] Ensure the assembly manifest file generation is generated by linker. Even though MSDN documentation says /MANIFEST is implied by default, at least in one case (on my Win7 machine), it does not produce it unless I do include /MANIFEST option on the command line. --- msvc9compiler.py | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/msvc9compiler.py b/msvc9compiler.py index df3bb22..f2ff3a9 100644 --- a/msvc9compiler.py +++ b/msvc9compiler.py @@ -623,6 +623,7 @@ class MSVCCompiler(CCompiler) : temp_manifest = os.path.join( build_temp, os.path.basename(output_filename) + ".manifest") + ld_args.append('/MANIFEST') ld_args.append('/MANIFESTFILE:' + temp_manifest) if extra_preargs: -- 1.6.1.9.g97c34