gpt4 book ai didi

c++ - 在库中使用未定义的外部变量会在 macOS 中产生链接器错误

转载 作者:太空宇宙 更新时间:2023-11-04 13:10:18 24 4
gpt4 key购买 nike

我正在创建一个动态库。

foo.h

extern unsigned int myoperator;
int operate(int a, int b);

foo.cpp

#include "foo.h"
int operate(int a, int b){
switch(myoperator){
case 0:
return a+b;
case 1:
return a-b;
default:
return a*b;
}
}

libfoo 在 linux gcc C++14 上构建得非常好,但是它在 macOS clang C++14 中抛出链接器错误。错误是

Undefined symbols for architecture x86_64:
"_myoperator", referenced from:
operate(int, int) in foo.o
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)

与我在谷歌上找到的问题最接近的链接是 https://developer.apple.com/library/content/documentation/DeveloperTools/Conceptual/DynamicLibraries/100-Articles/DynamicLibraryDesignGuidelines.html

我不确定答案是否在里面。

最佳答案

如果 'myoperator' 变量的“真实”定义在属于同一项目 foo 的另一个文件中,我认为将行代码放在一起会更好

extern unsigned int myoperator;

在你的cpp文件中

关于c++ - 在库中使用未定义的外部变量会在 macOS 中产生链接器错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40263648/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com