R6034: An application (...\perl.exe) made an attempt to load the C-runtime library incorrectly. #### manifest : $(PERLRUN) "-MExtUtils::Manifest=mkmanifest" -e mkmanifest #### C:\Perl64\packages\Devel-Size-0.72>nmake manifest Microsoft (R) Program Maintenance Utility Version 9.00.21022.08 Copyright (C) Microsoft Corporation. All rights reserved. 'manifest' is up-to-date #### manifest : $(INST_DYNAMIC) $(INST_DYNAMIC).manifest mt -manifest $(INST_DYNAMIC).manifest -outputresource:$(INST_DYNAMIC);2 #### # --- MakeMaker linkext section: linkext :: $(LINKTYPE) manifest $(NOECHO) $(NOOP) #### perl Makefile.pl perl fixmakefile.pl <<<>>> nmake nmake test nmake install #### #! perl -sw use strict; open IN, '<', 'Makefile' or die "Makefile': $!"; open OUT, '>', 'Makefile.fixed' or die "Makefile.fixed $!"; select OUT; while( ) { if( m[^linkext] ) { s[$][ manifest] and print or die 'Failed to append to linkext'; } elsif( m[^manifest] ) { s[$][ \$(INST_DYNAMIC) \$(INST_DYNAMIC).manifest] and print or die 'Failed to append to manifest'; print "\tmt -manifest \$(INST_DYNAMIC).manifest -outputresource:\$(INST_DYNAMIC);2\n"; print '# ' . ; ## disable EU::MM mkmanifest crap last; } else { print; } } print while ; close IN or die "Closing original makefile failed: $!"; rename 'Makefile', 'Makefile.gen' or die "Rename original makefile failed: $!"; close OUT or die "Closing fixed makefile failed: $!"; rename 'Makefile.fixed', 'Makefile' or die "Rename fixed makefile failed: $!";