如何将 Strawberry Perl 配置为从 c:\strawberry 以外的其他位置运行?

发布于 2024-08-14 21:33:45 字数 398 浏览 9 评论 0原文

我知道 Strawberry Perl 可移植版适用于 Perl 5.10.0,但到目前为止,还没有适用于 Perl 5.10.1 的版本。因此,我目前正在做一些实验工作,让 Strawberry Perl 从网络位置运行,只是为了看看我能做什么。我已经能够伪造其中的一些内容,足以让一些 Perl 和一些工具运行,但我无法弄清楚如何将vendor\lib 文件夹从 c:\strawberry.< /code> 我很确定我的伪造努力将毫无意义,除非我更多地了解这些路径是如何设置的。

进一步阅读:

更改 Perl 配置设置 (PerlMonks)

I know that Strawberry Perl portable is out there for Perl 5.10.0, but so far, there is not one for Perl 5.10.1. As a result, I'm currently doing some experimental work in getting Strawberry Perl to run from a networked location, just to see what I can get working. I've been able to fake some of it, enough to get some Perl and some tools running, but I've not been able to figure out how to move the vendor\lib folder away from c:\strawberry. I'm pretty sure my faking efforts will be for naught unless I know more about how these paths are set up.

Further reading:

Changing Perl Config Settings (PerlMonks)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

赴月观长安 2024-08-21 21:33:45

注意:我真的不知道。

无论如何,这里有一些猜测:

查看 Perl::Dist::Strawberry

# Set the different paths
$machine->add_dimension('drive');
$machine->add_option('drive',
    image_dir => 'C:\strawberry',
);

所以,我想这将是从源代码构建整个发行版并安装在特定位置的方法。

可执行文件和 dll 中都没有字符串 strawberry,所以我的猜测是破解 Config.pmConfig_heavy.pl 会可能会把事情做好。

Note: I have no idea, really.

Here is some speculation anyway:

Looking at Perl::Dist::Strawberry:

# Set the different paths
$machine->add_dimension('drive');
$machine->add_option('drive',
    image_dir => 'C:\strawberry',
);

So, I imagine that would be the way to build whole distributions from source to be installed in a specific location.

Neither the executables, nor the dlls have the string strawberry in them, so my guess is hacking away at Config.pm and Config_heavy.pl would probably get things done.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文