libtool自定义脚本是如何通过configure生成的?

发布于 2024-12-15 11:21:08 字数 384 浏览 3 评论 0原文

我对 libtool 的东西还很陌生。我有一个问题,构建我的项目需要 libtool 1.5,但我的系统(debian、squeeze)上的默认 libtool 是 2.2。 我所做的是从源代码安装了 libtool 1.5,并将其放入 /usr/local 中。我的 PATH 变量首先选择 /usr/local/bin 路径。

运行 autogen 时,我可以看到它“看到”libtool 1.5。但是,当我运行配置脚本时,版本 2.2 的 libtool 脚本出现在我的构建目录中。自从我使用包管理器卸载了 libtool 2.2 以来,我不知道它来自哪里。

你能建议如何解决这个问题吗? libtool 脚本是如何在我的构建文件夹中生成的?与 ltmain.sh 有何关系?

谢谢, 维亚切斯拉夫

I'm quite new to libtool stuff. I have a problem that building my project requires libtool 1.5, but the default libtool on my system (debian, squeeze) is 2.2.
What I did is I've installed libtool 1.5 from source, and put it into /usr/local. My PATH variable picks /usr/local/bin path first.

When running autogen, I can see that it "sees" libtool 1.5. However, when I run configure script, a libtool script of version 2.2 appears in my build directory. I have no idea where it comes from since I uninstalled libtool 2.2 using a package manager.

Can you please suggest how to solve the problem? How is the libtool script generated in my build folder? What is the relation to ltmain.sh?

Thanks,
Vyacheslav

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

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

发布评论

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

评论(1

天生の放荡 2024-12-22 11:21:08

一个简单的解决方案可能是:

$ ./configure LIBTOOL=/usr/local/bin/libtool ...

但是如果您使用的是古老的 libtool,您也可能正在使用古老的 autoconf,在这种情况下您必须执行以下操作:

$ LIBTOOL=/usr/local/bin/libtool ./configure ...

或者,如果您使用的是 csh 或其变体:

$ env LIBTOOL=/usr/local/bin/libtool ./configure ...

构建中的 libtool目录是从 ltmain.sh 生成的。文件 config.status(由 configure 生成)运行一个 sed 脚本,该脚本使用 ltmain.sh 作为生成 libtool 的输入。当您通过 autoreconf 运行 libtoolize 时,libtoolize 将 ltmain.sh 复制到源目录中。如果 autoreconf 确实在 /usr/local/bin 中看到 libtool 1.5,则源目录中的 ltmain.sh 应该是 /usr/local/share/libtool/ltmain.sh 的副本。

A simple solution may be:

$ ./configure LIBTOOL=/usr/local/bin/libtool ...

but if you are using an ancient libtool, you may be using ancient autoconf as well, in which case you will have to do:

$ LIBTOOL=/usr/local/bin/libtool ./configure ...

or, if you are using csh or a variant thereof:

$ env LIBTOOL=/usr/local/bin/libtool ./configure ...

The libtool in your build directory is generated from ltmain.sh. The file config.status (generated by configure) runs a sed script that uses ltmain.sh as the input to generate libtool. ltmain.sh is copied by libtoolize into the source directory when you run libtoolize via autoreconf. If autoreconf is indeed seeing the libtool 1.5 in /usr/local/bin, then the ltmain.sh in the source directory should be a copy of /usr/local/share/libtool/ltmain.sh.

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