You may think of Perl as a language or as a executable, but it's also a library. This allows C code and Perl code to be interfaced.
The source interface to the library is backwards compatible, which means an XS module that can be compiled using Perl 5.8 should have no problem being compiled with Perl 5.10.
The binary interface to the library is backwards compatible between minor versions, which means an XS module that was compiled using Perl 5.8.8 doesn't need to be recompiled if you upgrade to Perl 5.8.9.
The binary interface to the library is NOT backwards compatible between major versions, which means an XS module that was compiled using Perl 5.8.x DOES need to be recompiled if you upgrade to Perl 5.10.x.
That's why you need to reinstall your modules. If you don't, if you use a module compiled using Perl 5.8 with Perl 5.10, you get "Can't find Perl58.dll".
In reply to Re: Wow! Painful upgrade to Perl 5.12
by ikegami
in thread Wow! Painful upgrade to Perl 5.12
by ack
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |