gpt4 book ai didi

c++ - 为什么这个 C++ 程序在 MacOS 上编译而不是在 Ubuntu 上编译?

转载 作者:行者123 更新时间:2023-12-01 14:53:27 25 4
gpt4 key购买 nike

我在 Ubuntu 和 MacOS 机器上使用 Clang 版本 10:

ubuntu $ clang++ --version
clang version 10.0.0-++20200227124856+593a0dda7a6-1~exp1~20200227115450.103
Target: x86_64-pc-linux-gnu
Thread model: posix
InstalledDir: /usr/bin
osx $ clang++ --version
Apple LLVM version 10.0.1 (clang-1001.0.46.4)
Target: x86_64-apple-darwin18.7.0
Thread model: posix
InstalledDir: /Library/Developer/CommandLineTools/usr/bin

以下简单程序无法在 Ubuntu (16.04) 上编译,但可以在 MacOS 10.14 上编译:
// test.cpp

#include <atomic>
struct foo {

bool bar;
int baz;
foo(bool bar, int baz) : bar(bar), baz(baz) {
}
};

int main(int argc, char* argv[]) {
std::atomic<foo> test_struct({false, 0});
test_struct.load();

return 0;
}

我正在编译
clang++ -std=c++14 test.cpp -o test

Ubuntu上的错误是
In file included from test.cpp:1:
/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/atomic:234:13: error: no matching constructor for initialization of 'foo'
_Tp tmp;
^
test.cpp:13:11: note: in instantiation of member function 'std::atomic<foo>::load' requested here
test_struct.load();
^
test.cpp:2:8: note: candidate constructor (the implicit copy constructor) not viable: requires 1 argument, but 0 were provided
struct foo {
^
test.cpp:2:8: note: candidate constructor (the implicit move constructor) not viable: requires 1 argument, but 0 were provided
test.cpp:6:3: note: candidate constructor not viable: requires 2 arguments, but 0 were provided
foo(bool bar, bool baz) :
^
1 error generated.


我在这里遇到了一些未定义的行为吗?或者我需要采取什么措施才能使这两种情况完全相等?

编辑 我可以通过向类型添加默认构造函数来编译它。但是我无法从 std::atomic s documentation 解析此要求我很困惑为什么默认构造函数似乎是在 MacOS 上生成而不是在 Ubuntu 上生成的。

最佳答案

答案是在 Linux 系统上,clang与 GNU C++ 标准库实现的链接 libstc++ ,在这种情况下太旧(版本 5.4. 或类似版本)并且不适用于所选的语言标准( c++14 )。

有两种解决方案:

  • 不知何故安装更新的libstdc++ ,它可能在也可能不在 Ubuntu 版本的 APT 软件包存储库中(在我的情况下没有更新版本)
  • 制作 clang使用 LLVM 实现 libc++ .确保安装了最新版本(包 libc++-dev )并通过 -stdlib=libc++在编译期间。
  • 关于c++ - 为什么这个 C++ 程序在 MacOS 上编译而不是在 Ubuntu 上编译?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60447991/

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