作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想配置一个自动工具化的项目来调用一个非标准的
链接器( gold
linker ),
使用 Linux Mint 16/Ubuntu 13.10 的库存自动工具
我相信我会通过以下方式实现这一目标:
libtoolize
-ing 项目 ./configure LD=/path/to/my/linker ... etc.
libtoolize
已经成功。后
./configure; make
我现在看到
libtool
正在做
/bin/bash ./libtool --tag=CXX --mode=link g++ -g -O2 -o helloworld helloworld.o
LD=/path/to/my/linker
至
configure
没什么区别。实验上,
./configure LD=/does/not/exist
checking if the linker (/does/not/exist -m elf_x86_64) is GNU ld... no
checking whether the g++ linker (/does/not/exist -m elf_x86_64) supports shared libraries... yes
g++
和以前一样。
最佳答案
But passing LD=/path/to/my/linker to configure makes no difference
LD
几乎从不,也不应该用于链接任何用户空间程序。正确的链接是通过使用适当的编译器驱动程序(
gcc
、
g++
等)来执行的。
What is the right way to configure a non-standard linker?
/some/path/ld
你想要
gcc
使用该
ld
, 通
-B/some/path
标记到 gcc。
./configure CC='gcc -B/some/path' CXX='g++ -B/some/path' ...
关于linker - 如何为自动工具构建配置非标准链接器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21352487/
我是一名优秀的程序员,十分优秀!