c++ - clang 的 c++11 支持可靠吗?

标签 c++ c++11 compiler-errors cgal clang++

我在尝试混合 clang(Apple LLVM 版本 6.0 (clang-600.0.56)(基于 LLVM 3.5svn,目标:x86_64-apple-darwin14.0.0)、c++11 和 CGAL 时遇到了一个有趣的问题(通过 MacPorts)。

似乎我是否调用std::vector<>::reserve将决定我的程序是否会编译。

我已将问题缩减为一个最小的示例(与 CGAL 示例一样最小):

#include <vector>
#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>
#include <CGAL/AABB_tree.h>
#include <CGAL/AABB_traits.h>
#include <CGAL/AABB_triangle_primitive.h>

// CGAL::Epeck works fine, suggesting the problem is in CGAL::Epick
typedef CGAL::Epick Kernel;
typedef CGAL::Triangle_3<Kernel> Triangle_3; 
typedef typename std::vector<Triangle_3>::iterator Iterator;
typedef CGAL::AABB_triangle_primitive<Kernel, Iterator> Primitive;
typedef CGAL::AABB_traits<Kernel, Primitive> AABB_triangle_traits;
typedef CGAL::AABB_tree<AABB_triangle_traits> Tree;
typedef typename Tree::Point_and_primitive_id Point_and_primitive_id;
typedef CGAL::Point_3<Kernel>    Point_3;

template <typename BKernel>
void A()
{
  const CGAL::AABB_tree<
    CGAL::AABB_traits<BKernel, 
      CGAL::AABB_triangle_primitive<BKernel, 
        typename std::vector<CGAL::Triangle_3<BKernel> >::iterator
      >
    >
  > tree;
  Point_and_primitive_id pp = tree.closest_point_and_primitive(Point_3());
}

void B()
{
  std::vector<Triangle_3> T;
#ifdef MAGIC
  T.reserve(0);
#endif
  return A<Kernel>();
}

发行:

clang++ -std=c++11 -c example.cpp -I/opt/local/include

编译失败。给出如下错误:

    In file included from example.cpp:1:
    In file included from /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/vector:265:
    In file included from /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__bit_reference:15:
    In file included from /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/algorithm:626:
    In file included from /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/utility:157:
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__tuple:228:60: error: 
          no member named 'value' in 'std::__1::is_convertible<const CGAL::Point_3<CGAL::Epick> &,
          CGAL::Point_3<CGAL::Epick> >'
                                   is_convertible<_Tp0, _Up0>::value &&
                                   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~^

/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__tuple:242:14: note: 
          in instantiation of template class 'std::__1::__tuple_convertible_imp<true, std::__1::__tuple_types<const
          CGAL::Point_3<CGAL::Epick> &, const CGAL::Vector_3<CGAL::Epick> &>,
          std::__1::__tuple_types<CGAL::Point_3<CGAL::Epick>, CGAL::Vector_3<CGAL::Epick> > >' requested here
        : public __tuple_convertible_imp<tuple_size<typename remove_reference<_Tp>::type>::value ==

但是,如果我对 std::vector::reserve 进行这个神奇的调用,这会编译 , 发行:

clang++ -std=c++11 -c example.cpp -I/opt/local/include -DMAGIC

或者通过禁用 c++11

clang++ -c example.cpp -I/opt/local/include
  1. 这是 CGAL 或 clang 中的错误吗?
  2. 对于这种不稳定的编译器行为有什么解释?
  3. 是否有一种干净的方法来避免这种情况(希望不需要真正更改模板或函数原型(prototype)设置,因为我需要解决方案来适应我的大型项目)。

最佳答案

由于 Apple 的 GCC 已过时(2007 年的最新 GPL v2 版本,GCC 4.2.1)并且 C++11 功能不完整(因此提供了 libstdc++),您可以通过 MacPorts 安装更现代的 GCC 版本( sudo port install gcc48sudo port install gcc49),这将为您提供更现代的 libstdc++ 版本。我测试了你的代码:

/opt/local/bin/g++-mp-4.8 -std=c++11 -c example.cpp -I/opt/local/include

编译成功

如果您更喜欢这个解决方案并且想要一个更干净的编译器调用;您可以使用 gcc_select 和命令将 MacPorts 的 GCC 设置为默认值(在我的例子中是 gcc48):

sudo port select --set gcc mp-gcc48

只有一次。然后,你可以编译它

g++ -std=c++11 -c example.cpp -I/opt/local/include

在新的终端 session 中。

关于c++ - clang 的 c++11 支持可靠吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27748442/

相关文章:

c++ - 多线程定时器类

java - Android Native Activity 和图形环境

c++ - 没有 ExecutionPolicy 的 std::transform 或 std::generate 可以并行吗?

c++ - 非多态继承对性能/内存使用有影响吗?

c++ - 使用可变参数模板在 C++ 中定义列表类

c++ - 尝试使用 G++ 使用 openCV 进行编译后 G++ 返回错误

c++11 - 如何使用带有-std = c++ 11标志的g++进行编译?

c++ - 使用单个 memset 清零多个数组/假设允许内存布局?

android - 无法在 android opencv 2.3 中导入 ml.h

C++:避免​​优化输出变量