作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
自 CMake 3.13 起,target_link_options存在添加“链接步骤的选项”。
在该页面的底部附近,它说:
To pass options to the linker tool, each compiler driver has its own syntax. The
LINKER:
prefix and,
separator can be used to specify, in a portable way, options to pass to the linker tool
有人可以举例说明如何将 target_link_options()
与 LINKER:
助手一起使用吗?
感谢您的帮助!
最佳答案
我们的想法是将所有链接器选项作为以“LINKER:”为前缀的逗号分隔项的字符串。假设我有这些与编译器调用 (gcc) 一起使用的标志集:
-Wl,--gc-sections,-Tbootloader.ld,-Map=bootloader.map
然后 cmake 部分应该是这样的。
...
add_executable(bootloader ${SRC})
target_link_options(bootloader PUBLIC "LINKER:--gc-sections,-Tbootloader.ld,-Map=bootloader.map")
...
关于c++ - CMake target_link_options LINKER 语法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58575816/
自 CMake 3.13 起,target_link_options存在添加“链接步骤的选项”。 在该页面的底部附近,它说: To pass options to the linker tool, e
我是一名优秀的程序员,十分优秀!