- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
给定一个带有签名的编译函数 void some_func()
在一个静态库中,另一个具有相同的 void some_func()
目标文件中的签名期望当您将它们链接在一起时应该发生“多重定义”错误。
但这种情况并非如此。据我观察,链接器(使用 GCC 和 MSVC 工具链测试)选择驻留在目标文件中的实现而不会发出任何错误或警告。
鉴于以下 POC:
somelib.h
#ifndef _SOMELIB_H_
#define _SOMELIB_H_
void some_func();
#endif /* _SOMELIB_H_ */
#include "somelib.h"
#include <stdio.h>
void some_func()
{
printf("some_func in library\n");
}
#ifndef _TROUBLING_HEADER_H_
#define _TROUBLING_HEADER_H_
void some_func();
#endif /* _TROUBLING_HEADER_H_ */
#include "troublingheader.h"
#include <stdio.h>
void some_func()
{
printf("Troubling func\n");
}
#include <stdio.h>
#include "somelib.h"
int main()
{
some_func();
}
tmp/wat.exe: tmp/libsomelib.a tmp/main.c.o tmp/troublingsource.c.o
gcc -static -static-libgcc -Ltmp -otmp/wat.exe tmp/main.c.o tmp/troublingsource.c.o -lsomelib
tmp/main.c.o:
gcc -Wall -Wextra -c -g -O0 src/main.c -o tmp/main.c.o
tmp/troublingsource.c.o:
gcc -Wall -Wextra -c -g -O0 src/troublingsource.c -o tmp/troublingsource.c.o
tmp/somelib.o:
gcc -Wall -Wextra -c -g -O0 src/somelib.c -o tmp/somelib.c.o
tmp/libsomelib.a: tmp/somelib.o
ar rcs tmp/libsomelib.a tmp/somelib.c.o
最佳答案
在 GNU linker ld
的情况下,
由 GCC 调用,您所观察到的内容由以下几点解释。
"some_func in library\n"
"some_func in somelib.o"
troublingsource.o
本身和
somelib.o
来自静态库。
main.o
,
troublingsource.o
,
libsomelib.a
gcc -I. -c -o troublingsource.o troublingsource.c
gcc -I. -c -o somelib.o somelib.c
gcc -I. -c -o main.o main.c
ar rcs libsomelib.a somelib.o
gcc -o test main.o troublingsource.o -L. -lsomelib
./test
Troubling func
main.o
被无条件地添加到链接中。 main
发现定义于 main.o
some_func
发现引用但未在 main.o
中定义troublingsource.o
已无条件添加到链接 some_func
,以前引用但未定义,在 troublingsource.o
中定义. libsomelib.a
甚至没有被搜查。 someblib.o
本身和
troublingsource.o
来自静态库。
main.o
,
somelib.o
,
libtroublingsource.a
gcc -I. -c -o somelib.o somelib.c
gcc -I. -c -o troublingsource.o troublingsource.c
gcc -I. -c -o main.o main.c
ar rcs libtroublingsource.a troublingsource.o
gcc -o test main.o somelib.o -L. -ltroublingsource
./test
some_func in somelib.o
main.o
被无条件地添加到链接中。 main
发现定义于 main.o
some_func
发现引用但未在 main.o
中定义someblib.o
已无条件添加到链接 some_func
,以前引用但未定义,在 somelib.o
中定义. libtroublingsource.a
甚至没有被搜查。 someblib.o
和
troublingsource.o
来自单独的静态库。
main.o
,
libsomelib.a
,
libtroublingsource.a
gcc -I. -c -o somelib.o somelib.c
gcc -I. -c -o troublingsource.o troublingsource.c
gcc -I. -c -o main.o main.c
ar rcs libsomelib.a somelib.o
ar rcs libtroublingsource.a troublingsource.o
gcc -o test main.o -L. -lsomelib -ltroublingsource
./test
some_func in somelib.o
main.o
被无条件地添加到链接中。 main
发现定义于 main.o
some_func
发现引用但未在 main.o
中定义libsomeblib.a
已搜索提供 some_func
定义的目标文件some_func
的定义在成员 somelib.o
中找到的 libsomelib.a
somelib.o
提取自 libsomelib.a
并添加到链接中。 libtroublingsource.a
甚至没有被搜查。 someblib.o
本身和
troublingsource.o
本身。
main.o
,
somelib.o
,
troublingsource.o
gcc -I. -c -o somelib.o somelib.c
gcc -I. -c -o troublingsource.o troublingsource.c
gcc -I. -c -o main.o main.c
gcc -o test main.o somelib.o troublingsource.o
troublingsource.o: In function `some_func':
troublingsource.c:(.text+0x0): multiple definition of `some_func'
somelib.o:somelib.c:(.text+0x0): first defined here
collect2: error: ld returned 1 exit status
main.o
被无条件地添加到链接中。 main
发现定义于 main.o
some_func
发现引用但未在 main.o
中定义someblib.o
已无条件添加到链接 some_func
,以前引用但未定义,在 somelib.o
中定义troublingsource.o
已无条件添加到链接 some_func
, 已在 somelib.o
中定义, 发现在 troublingbsource.o
中再次定义. 错误 . someblib.o
来自静态库。
libsomelib.a
main.o
gcc -I. -c -o somelib.o somelib.c
gcc -I. -c -o main.o main.c
ar rcs libsomelib.a somelib.o
gcc -o test -L. -lsomelib main.o
main.o: In function `main':
main.c:(.text+0xa): undefined reference to `some_func'
collect2: error: ld returned 1 exit status
libsomelib.a
在将任何目标文件添加到libsomelib.a
甚至没有被搜索,main.o
被无条件地添加到链接中。 main
发现定义于 main.o
some_func
发现引用但未在 main.o
中定义some_func
最后是一个 undefined reference 。 错误 . 关于c - 当目标文件和静态库中存在相同的符号时,链接器不会发出多个定义错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37490157/
尝试使用集成到 QTCreator 的表单编辑器,但即使我将插件放入 QtCreator.app/Contents/MacOS/designer 也不会显示。不过,相同的 dylib 文件确实适用于独
在此代码示例中。 “this.method2();”之后会读到什么?在返回returnedValue之前会跳转到method2()吗? public int method1(int returnedV
我的项目有通过gradle配置的依赖项。我想添加以下依赖项: compile group: 'org.restlet.jse', name: 'org.restlet.ext.apispark', v
我将把我们基于 Windows 的客户管理软件移植到基于 Web 的软件。我发现 polymer 可能是一种选择。 但是,对于我们的使用,我们找不到 polymer 组件具有表格 View 、下拉菜单
我的项目文件夹 Project 中有一个文件夹,比如 ED 文件夹,当我在 Eclipse 中指定在哪里查找我写入的文件时 File file = new File("ED/text.txt"); e
这是奇怪的事情,这个有效: $('#box').css({"backgroundPosition": "0px 250px"}); 但这不起作用,它只是不改变位置: $('#box').animate
这个问题在这里已经有了答案: Why does OR 0 round numbers in Javascript? (3 个答案) 关闭 5 年前。 Mozilla JavaScript Guide
这个问题在这里已经有了答案: Is the function strcmpi in the C standard libary of ISO? (3 个答案) 关闭 8 年前。 我有一个问题,为什么
我目前使用的是共享主机方案,我不确定它使用的是哪个版本的 MySQL,但它似乎不支持 DATETIMEOFFSET 类型。 是否存在支持 DATETIMEOFFSET 的 MySQL 版本?或者有计划
研究 Seam 3,我发现 Seam Solder 允许将 @Named 注释应用于包 - 在这种情况下,该包中的所有 bean 都将自动命名,就好像它们符合条件一样@Named 他们自己。我没有看到
我知道 .append 偶尔会增加数组的容量并形成数组的新副本,但 .removeLast 会逆转这种情况并减少容量通过复制到一个新的更小的数组来改变数组? 最佳答案 否(或者至少如果是,则它是一个错
很难说出这里要问什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或夸夸其谈,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开,visit the help center . 关闭 1
noexcept 函数说明符是否旨在 boost 性能,因为生成的对象中可能没有记录异常的代码,因此应尽可能将其添加到函数声明和定义中?我首先想到了可调用对象的包装器,其中 noexcept 可能会产
我正在使用 Angularjs 1.3.7,刚刚发现 Promise.all 在成功响应后不会更新 angularjs View ,而 $q.all 会。由于 Promises 包含在 native
我最近发现了这段JavaScript代码: Math.random() * 0x1000000 10.12345 10.12345 >> 0 10 > 10.12345 >>> 0 10 我使用
我正在编写一个玩具(物理)矢量库,并且遇到了 GHC 坚持认为函数应该具有 Integer 的问题。是他们的类型。我希望向量乘以向量以及标量(仅使用 * ),虽然这可以通过仅使用 Vector 来实现
PHP 的 mail() 函数发送邮件正常,但 Swiftmailer 的 Swift_MailTransport 不起作用! 这有效: mail('user@example.com', 'test
我尝试通过 php 脚本转储我的数据,但没有命令行。所以我用 this script 创建了我的 .sql 文件然后我尝试使用我的脚本: $link = mysql_connect($host, $u
使用 python 2.6.4 中的 sqlite3 标准库,以下查询在 sqlite3 命令行上运行良好: select segmentid, node_t, start, number,title
我最近发现了这段JavaScript代码: Math.random() * 0x1000000 10.12345 10.12345 >> 0 10 > 10.12345 >>> 0 10 我使用
我是一名优秀的程序员,十分优秀!