AIX 5.3 (ld-xlc) 等效选项 Linux (ld-gcc) -rpath
我的编译器:xlc版本10.1 环境:AIX5.3 链接器:ld
当我在 Linux 上工作时,使用 gcc (4.4.1),我使用以下选项
-Wl,-rpath
(-Wl 表示链接器选项),它将一个目录添加到运行时库搜索路径。
xlc 编译器的等效项是什么?
或者相当于链接器的 -rpath 。
谢谢。
My compiler:xlc version 10.1
Environment: AIX5.3
Linker: ld
When i work on Linux , with gcc (4.4.1) i use the following option
-Wl,-rpath
(-Wl for the linker options) it adds a directory to the runtime library search path.
What's the equivalent for xlc compiler ?
or what's the equivalent to -rpath for the linker.
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我的第一个答案是:该选项的 AIX 链接器选项是
-blibpath
。(如果对 Sun 编译器有任何帮助的话,它是
-R
。以防万一!)我现在已经对其进行了编辑以回应 OP 的评论: 是的。实际上,阅读 AIX 链接器手册 (
man ld
) 看起来-L
已经是正确的选项了!My first answer was: The AIX linker option for that one is
-blibpath
.(If it's any help, for the Sun compiler, it's
-R
. Just in case!)I now have edited it to respond to the OP's comment: Right you are. Actually, reading the AIX linker manual (
man ld
) it looks like-L
is the right option already!