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

Why does this C++ program compile on MacOS but not Ubuntu?

我在 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.

我 运行 是否陷入了一些未定义的行为?或者我需要采取什么措施让这两种情况完全相等?

Edit 我可以通过向该类型添加默认构造函数来进行编译。但是我无法从 std::atomics documentation 解析这个要求,我很困惑为什么默认构造函数似乎是在 MacOS 上生成而不是在 Ubuntu.

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

有两种解决方法:

  1. 以某种方式安装更新的 libstdc++,它可能在也可能不在 Ubuntu 版本的 APT 软件包存储库中(在我的情况下没有更新的版本)
  2. 使 clang 使用 LLVM 实现 libc++。确保安装了最新版本(软件包 libc++-dev)并在编译期间通过 -stdlib=libc++