Some other things I found out, when trying to compile Socket6 (whether using CPAN or manually running the module make and compile) be sure that the compiler that was used to install Perl is on the path. If the make cannot find the same compiler the make will choke, this happened to me on a couple of Solaris boxes and on AIX. To find out what compiler was used for Perl run:

perl -V

Yes, that is an upper case V, you should see something like:

Compiler: cc='cc', ccflags ='-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -xarch=v8 -D_TS_ERRNO',

If that does not match what the Makefile has there will be problems, the solution that was necessary for me on Solaris and AIX is that we needed to adjust the paths in my shell to avoid use of gcc which was not used for the perl compiles but was getting picked up in my environment. In addition, on AIX it will sometimes be configured to have something like cc_r as the base compiler, which is a link to xlc, and the way they are called can be hairy. There is more information on this here - Embedded Perl on AIX

Sorry to mix stuff here, but I was working on multiple platforms and I ended up wanting to keep this all together.


In reply to Re^3: Running PPM on Win 2k3 64b by gokuraku
in thread Running PPM on Win 2k3 64b by gokuraku

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.