NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
Compiler and linker? (Score:2)
The configuration shows it was compiled by xlc, which I presume is AIX's proprietary C compiler. Are you using xlc to compile the modules? (Are you intending to use it, and are you verifying that Makefile.PL is indeed picking it up? Might need to CC=xlc Makefile.PL or modify your PATH.)
Forgive me if this is stuff you already know. It might be something you've never heard of or thought of before, or it might be trivial old hat stuff to you. :)
If you try to compile modules with a compiler other than t
J. David works really hard, has a passion for writing good software, and knows many of the world's best Perl programmers
Re:Compiler and linker? (Score:1)
Reply to This
Parent
Re:Compiler and linker? (Score:2)
My advice is never, ever, ever, ever try to add a module to your OS vendor's version of perl. Compiler incompatiblities is the number one reason, along with inconsistent configuration options, possible behind-the-scenes changes your vendor made, and very importantly the chance that some user-level component of the operating system (say, sysadmin tools or init scripts) depends on an installed module that has changed in an incompatible way.
It is near-trivial to install an independent perl for someone who i
J. David works really hard, has a passion for writing good software, and knows many of the world's best Perl programmers
Re:Compiler and linker? (Score:2)
Anyway, this is perl supplied by IBM and installed in some way by the local sysadmins. As this is a productions system they don't let me install another perl that I'd compile.
Both the compiler and the linker seem to be called XLC on this system
Re:Compiler and linker? (Score:1)
Bill
# I had a sig when sigs were cool
use Sig;
Re:Compiler and linker? (Score:2)
thanks for the warning, next time I am there I should look into this more closely