[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index][Thread Index][Top&Search][Original]
Re: IO::Socket::INET compilation (fwd)
Francesco Messineo <frank@ideare.com> writes:
>---------- Forwarded message ----------
>Date: Thu, 13 Jan 2000 11:21:37 +0000
>From: Graham Barr <gbarr@pobox.com>
>To: Francesco Messineo <frank@ideare.com>
>Subject: Re: IO::Socket::INET compilation
>
>I would report this to the perl5-porters mailing list. It sounds
>like a bug in the compiler to me.
>
>Graham.
>
>On Thu, Jan 13, 2000 at 12:44:26PM +0100, Francesco Messineo wrote:
>> Hello,
>> I'm trying to compile some perl scripts that use IO::Socket::INET.
>> The version of perl I'm using is 5.00554 (this version is the only
>> that gives me good results when compiling scripts so far).
The compiler is still fairly fluid, and 5.00554 is "quite old".
In any case the B::* modules need help identifying which methods
to save - $foo->method is a run-time lookup so there is no hint
in the optree as to which class(es) $foo might be. So you need
to give -u flags to the compiler to say "keep this package even
though it seems not to be used". The water is further muddied
in that compiler code is "aware" that it uses IO::* itself, so
it has a tendency to exclude the IO::* space.
--
Nick Ing-Simmons
- Follow-Ups from:
-
Francesco Messineo <frank@ideare.com>
- References to:
-
Francesco Messineo <frank@ideare.com>
[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index][Thread Index][Top&Search][Original]