libtool自定义脚本是如何通过configure生成的?
我对 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一个简单的解决方案可能是:
但是如果您使用的是古老的 libtool,您也可能正在使用古老的 autoconf,在这种情况下您必须执行以下操作:
或者,如果您使用的是 csh 或其变体:
构建中的 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:
but if you are using an ancient libtool, you may be using ancient autoconf as well, in which case you will have to do:
or, if you are using csh or a variant thereof:
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.