【发布时间】:2014-04-28 20:33:29
【问题描述】:
我是 Perl 的新手。
需要帮助来找出 perl 从特定位置加载库的原因 (@INC)。
执行以下命令给了我:
$ perl -V
Summary of my perl5 (revision 5 version 10 subversion 1) configuration:
Platform:
osname=linux, osvers=2.6.9-68.9.elsmp, archname=x86_64-linux
uname='linux xxxxxx01 2.6.9-68.9.elsmp #1 smp tue jan 29 09:49:28 est 2008 x86_64 x86_64 x86_64 gnulinux '
**config_args='-de -Dprefix=/home/..../perl_5.10.1'**
hint=recommended, useposix=true, d_sigaction=define
useithreads=undef, usemultiplicity=undef
useperlio=define, d_sfio=undef, uselargefiles=define, usesocks=undef
use64bitint=define, use64bitall=define, uselongdouble=undef
usemymalloc=n, bincompat5005=undef
config_args 的具体指定时间和方式。
是在这台主机上安装 perl 期间吗?
感谢您的帮助。
【问题讨论】:
-
config_args包含传递给Configure的参数,该程序用于生成用于构建Perl 的make文件。
标签: perl perl-module