in reply to Re^7: Installing (lotsa) modules
in thread Installing (lotsa) modules
Well, it is possible, in theory, if you cross-compile the modules on Windows for the target Linux. But it is very unlikely, and a lot of work, compared to trying to build a Perl similar to the unidentified Linux machine in a VM.
To do that, I would run perl -V (or perl -MConfig -MData::Dumper -e 'print Dumper \%Config', or the mod_perl equivalent), to get at the configure line (config_args), and then potentially look at the integer and float sizes (ivsize, nvsize).
use 5.012; use Config; say $Config{config_args}; say $Config{nvsize}; say $Config{ivsize};
Building a Perl with parameters identical to these (or even one where the whole of Config_heavy.pl matches the one on the unidentified Linux VM) is likely to yield compatible modules you can just upload.
Ideally, I will be merely
tar xjf perl-5.32.1.tar.xz
sh Configure ...
make test make install
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^9: Installing (lotsa) modules
by Bod (Parson) on Mar 27, 2021 at 11:26 UTC | |
by Corion (Patriarch) on Mar 27, 2021 at 22:14 UTC | |
by Bod (Parson) on Mar 27, 2021 at 23:38 UTC |