在旧系统中编译最新版本的包以供本地使用

发布于 2025-01-06 03:21:38 字数 476 浏览 0 评论 0原文

我需要知道是否有可能在一个古老的系统中编译最好和最新的软件包。为什么?好吧,我在我的公司受到限制:我需要在旧的 Debian 3.0 服务器上开发一个应用程序,并且我更愿意使用较新的软件来完成我的任务。不幸的是,我不允许升级或安装任何软件包。

具体来说,我想使用 xmlstarlet 轻松地解析 XML 文件。该服务器没有安装;如果我下载系统支持的较旧版本的 xmlstarlet,它太旧了,我只是失去了我需要的功能。它只有三个依赖项:libc6、libxml2 和 libxslt1.1(它们已安装,但对于较新版本的 xmlstarlet 来说太旧了)

所以问题是:有没有办法我可以下载这个包及其依赖项(我认为它们是很少且简单)并以某种方式编译它们以在本地工作(不一定在系统路径上,只需在工作目录中)而不以任何方式影响同名的遗留包?

这个系统既没有 PEAR,也没有 PHP5,也没有 xmllint,我想避免在 PHP4 中编码来解析这些 XML。我真的很想与 xmlstarlet 合作。

I need to know if it is possible to compile the best and newest package in an old, ancient system. Why? Well I'm limited at my company: I need to develop an application in an old Debian 3.0 server and I would prefer to use newer software to accomplish my task. Unfortunately, I'm not allowed to upgrade nor install any package.

Specifically, I want to parse XML files comfortably using xmlstarlet to do so. This server doesn't have it installed; if I download an older version of xmlstarlet supported by the system it's too old that I just lost the functionality I need. It just has three dependencies: libc6, libxml2 and libxslt1.1 (which are installed but are too ancient for a newer version of xmlstarlet)

So the question is: is there a way I can download this package and its dependencies (I think they are few and simple) and somehow compile them to work locally (not necessarily on the system's path, just in a working directory) without affecting in any way the legacy packages of the same name?

This system doesn't has PEAR either, nor PHP5, nor xmllint and I want to avoid coding in PHP4 to parse these XMLs. I really would like to work with xmlstarlet.

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

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

发布评论

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

评论(1

半枫 2025-01-13 03:21:38

如何指定非默认共享库路径的答案海湾合作委员会Linux?运行时出现“加载共享库时出错” 看起来应该可以正常工作。

或者你可以尝试静态链接:

./configure --enable-static-libs

The answer to How to specify non-default shared-library path in GCC Linux? Getting "error while loading shared libraries" when running looks like it should work fine.

Or you could try static linking:

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