At http://www.devside.net we have been building Perl 5.8.x for some time now with VS.NET 2002 (that links against msvcr70.lib and uses the msvcr70.dll that comes with .NET 1.0/1.0a)

We have a guide for building Perl under win32 with VC++...
(it is a very simple task)

http://www.devside.net/web/server/windows/perl
http://www.devside.net/web/server/windows

I’m not exactly sure what the problem here is, but to clarify a point...

MSVCRT.dll is the Microsoft C Runtime Library.
If you use MS VC++, your programs will only link and run with specific versions of this file; managed code or not.
(the version of MSVCRxx used by the compiler cannot be changed or specified by the user)

VS98 links only against msvcrt.lib (or maybe even an earlier version)
VS.NET 2002 links only against msvcr70.lib
VS.NET 2003 links only against msvcr71.lib

I would assume that the free MS VC++ 2003 toolkit would only link against MSVCR71.lib

msvcr70.dll is part of .NET 1.0(a)
msvcr71.dll is part of .NET 1.1

Please excuse me if I missed a point, it just seemed to me that there was a difficulty with building Perl under win32 with VC++ above 6.0 in this thread. If someone could clarify, I would be grateful.

In reply to Re: Building Perl with the free MSVC tools by Anonymous Monk
in thread Building Perl with the free MSVC tools by Corion

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.