- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
当我尝试链接 C++ 和 C 目标文件时出现链接器错误。它无法解析 c 目标文件中的符号。
这是我的控制台输出:
Undefined symbols for architecture x86_64:
"PF_OpenFile(char*)", referenced from:
snapshot::processItem(workItem) in snapshot.o
raid01::raid01(int) in raid01.o
raid01::execute_workItem(workItem) in raid01.o
"PF_AllocPage(int, int*, char**)", referenced from:
snapshot::processItem(workItem) in snapshot.o
raid01::raid01(int) in raid01.o
"PF_CloseFile(int)", referenced from:
snapshot::processItem(workItem) in snapshot.o
raid01::raid01(int) in raid01.o
raid01::execute_workItem(workItem) in raid01.o
"PF_UnfixPage(int, int, int)", referenced from:
snapshot::processItem(workItem) in snapshot.o
raid01::raid01(int) in raid01.o
raid01::execute_workItem(workItem) in raid01.o
"PF_CreateFile(char*)", referenced from:
snapshot::snapshot(char*) in snapshot.o
raid01::raid01(int) in raid01.o
"PF_GetThisPage(int, int, char**)", referenced from:
snapshot::processItem(workItem) in snapshot.o
raid01::execute_workItem(workItem) in raid01.o
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
这是 c 目标文件上 nm
的输出:
0000000000001730 s EH_frame0
0000000000001226 s L_.str
0000000000001242 s L_.str1
00000000000012a8 s L_.str10
00000000000012c5 s L_.str11
00000000000012ed s L_.str12
00000000000012f8 s L_.str13
000000000000131a s L_.str14
000000000000133b s L_.str15
000000000000135f s L_.str16
0000000000001384 s L_.str17
0000000000001398 s L_.str18
00000000000013aa s L_.str19
000000000000125d s L_.str2
00000000000013ba s L_.str20
00000000000013d2 s L_.str21
00000000000013de s L_.str22
00000000000013f0 s L_.str23
0000000000001405 s L_.str24
0000000000001430 s L_.str25
000000000000144b s L_.str26
000000000000127a s L_.str3
000000000000127d s L_.str4
0000000000001281 s L_.str5
0000000000001283 s L_.str6
0000000000001285 s L_.str7
000000000000128e s L_.str8
0000000000001298 s L_.str9
0000000000000c70 T _PF_AllocPage
0000000000001928 S _PF_AllocPage.eh
00000000000006a0 T _PF_CloseFile
0000000000001888 S _PF_CloseFile.eh
0000000000000260 T _PF_CreateFile
00000000000017c0 S _PF_CreateFile.eh
0000000000000370 T _PF_DestroyFile
00000000000017e8 S _PF_DestroyFile.eh
0000000000000e90 T _PF_DisposePage
0000000000001950 S _PF_DisposePage.eh
00000000000008e0 T _PF_GetFirstPage
00000000000018b0 S _PF_GetFirstPage.eh
0000000000000920 T _PF_GetNextPage
00000000000018d8 S _PF_GetNextPage.eh
0000000000000ae0 T _PF_GetThisPage
0000000000001900 S _PF_GetThisPage.eh
0000000000000200 T _PF_Init
0000000000001798 S _PF_Init.eh
0000000000000490 T _PF_OpenFile
0000000000001838 S _PF_OpenFile.eh
0000000000001120 T _PF_PrintError
00000000000019a0 S _PF_PrintError.eh
0000000000001050 T _PF_UnfixPage
0000000000001978 S _PF_UnfixPage.eh
U _PFbufAlloc
U _PFbufGet
U _PFbufReleaseFile
U _PFbufUnfix
U _PFbufUsed
00000000000019f0 S _PFerrno
0000000000001470 d _PFerrormsg
0000000000001a00 b _PFftab
00000000000011c0 t _PFftabFindFree
00000000000019c8 s _PFftabFindFree.eh
U _PFhashInit
0000000000000000 T _PFreadfcn
0000000000001748 S _PFreadfcn.eh
00000000000003f0 t _PFtabFindFname
0000000000001810 s _PFtabFindFname.eh
0000000000000100 T _PFwritefcn
0000000000001770 S _PFwritefcn.eh
U ___stderrp
U _close
U _exit
U _fprintf
U _free
U _lseek
U _malloc
U _open
U _perror
U _printf
U _read
0000000000000650 t _savestr
0000000000001860 s _savestr.eh
U _strcmp
U _strcpy
U _strlen
U _unlink
U _write
为什么相关符号的前缀是_
?这是导致问题的原因吗?
此外,C 文件是用 g++ 中的 -x c
编译的(不知道是否相关)。
最佳答案
听起来您需要使 C++ 例程与 C 链接兼容。请参阅:In C++ source, what is the effect of extern "C"?
关于c++ - 链接 c 和 c++ 目标文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27074616/
我创建了一个基于命令行可移植脚本的工业化不可知构建系统,可用于快速构建多个依赖项目,而不必依赖特定的 IDE 或构建工厂。它是不可知的,因为它不是基于单个构建引擎。我使用 cmake 创建了第一个版本
我最初使用 Java 目标开发了一个语法(用于 TestRig 支持),然后将其移植到 Python(从 git hub 语法存储库扩展了 Python3 语法,因此需要将操作移植到 Python
我有一个以 iPhone 和 watchOS 为目标的 Xcode 项目。 iPhone 目标使用加速度计,模拟器不支持。我可以只启动 iPhone 应用程序而不启动 watch 目标吗?我从: Ca
您好,我想创建一个批处理文件,用于在 .eml 文件(目标 A)中查找某些关键字,然后删除它们所在的行。之后,我需要批处理文件将"new"文件放入(目标 B)中的单独 .eml 文件中。文件也可以是
当尝试通过 IntelliJ 运行示例 CorDapp (GitHub CorDapp) 时,我收到以下错误: Cannot inline bytecode built with JVM target
我在尝试向我的 kotlin spring 项目添加一些依赖项时遇到问题。我使用 spring boot 初始化程序来运行一个基本项目。 我的问题:如果我取消对 jackson 或 Koin 依赖项的
这是有问题的网站: http://www.onepixelroom.com/londonrefurb 当我点击关于部分后面的多个圆圈时,我希望它更改上面文本中的引号。 到目前为止,我得到它来显示 文本
单击后,我将删除两个元素 $(this) 和 $("#foo")。 目前我的代码如下所示: $(this).remove(); $("#foo").remove(); 如何在不重复自己的情况下优化它?
我有一个小脚本,可将 Markdown 文件编译为 html,并将其与一些样式表和 javascript 一起插入到模板的主体中。我有一个 GNU makefile 来完成这个: output.htm
已关闭。此问题需要 debugging details 。目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and the
一些背景知识: 在android中我们开发了同样的应用,基本上我们先开发了Android应用,现在我们创建了它的IOS版本,所以这个应用有多个客户端。在 android 中,我们实际上是使用 Andr
我想知道是否可以使用 knockout 来更改html中的目标() 我的所有其他信息都在 JavaScript 中,所以这对我来说是一个大问题。这是我的 JavaScript: var library
这个问题在这里已经有了答案: Selecting and manipulating CSS pseudo-elements such as ::before and ::after using j
我在我的有向图中添加了一堆节点和顶点,使用设置 typedef boost::adjacency_list graph; 创建 Node有一个节点名称字符串,Edge它的分数有一个整数。我试图遍历所有
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 这个问题似乎与 help center 中定义的范围内的编程无关。 . 关闭 8 年前。 Improve
如何存储我在 NSUserDefaults 中创建的 Goal 类型的对象数组? ( swift ) 代码如下: func saveGoalList ( newGoalList : [Goal] ){
Array.prototype.indexOf 和 Date.now 已在 ES5 中引入。如果我编译存储在文件 test.ts 中的以下代码,为什么 Typescript 不能转译? Date.no
我正在阅读有关属性的内容,并了解到可以使用您的代码将它们应用于不同的目标实体 -(请参阅 Attribute Targets)。 因此,查看我项目中的 AssemblyInfo.cs 文件,我可以看到
给定一个 Makefile: all: build/a build/b build/c # need to change this to all: build/* build/a:
我有一个带有多框架目标的项目- netstandard2.0;net471 . 我想为 netframework 构建解决方案和 netstandard分别。 目前我使用这个 MSBuild 命令:
我是一名优秀的程序员,十分优秀!