【问题标题】:Clang++ makes linker fail on template classes (but it works with g++)Clang++ 使链接器在模板类上失败(但它适用于 g++)
【发布时间】:2020-12-23 00:08:46
【问题描述】:

我有一个可以很好地与 GCC 配合使用的程序,但使用 Clang 编译它会导致链接器失败。

我认为我的问题是模板类,所以我实现了这个小例子。

test.cpp:

#include "Point.h"

int main()
{
    Point<int> p1;
    Point<int> p2{ 3, 6 };
}

Point.h:

#ifndef POINT_H
#define POINT_H

template<typename T>
class Point {
    T x, y;
  public:
    Point();
    Point(T, T);
};

template class Point<int>;
template class Point<float>;

#endif

Point.cpp:

#include "Point.h"

template<typename T>
Point<T>::Point()
    : x{0}, y{0}
{}

template<typename T>
Point<T>::Point(T t_x, T t_y)
    : x{t_x}, y{t_y}
{}

当我使用g++ Point.cpp test.cpp 构建它时,它可以正常工作。

但是使用 Clang,它会给出以下错误:

$ clang++ Point.cpp test.cpp
/usr/bin/ld: /tmp/test-8ab886.o: in function `main':
test.cpp:(.text+0x1a): undefined reference to `Point<int>::Point()'
/usr/bin/ld: test.cpp:(.text+0x2d): undefined reference to `Point<int>::Point(int, int)'
clang-11: error: linker command failed with exit code 1 (use -v to see invocation)

或者,使用 lld:

$ clang++ -fuse-ld=lld Point.cpp test.cpp
ld.lld: error: undefined symbol: Point<int>::Point()
>>> referenced by test.cpp
>>>               /tmp/test-f95759.o:(main)

ld.lld: error: undefined symbol: Point<int>::Point(int, int)
>>> referenced by test.cpp
>>>               /tmp/test-f95759.o:(main)
clang-11: error: linker command failed with exit code 1 (use -v to see invocation)

我猜我在 Point.h 中的显式实例化对于 Clang 来说不够好,但我不知道它想要什么。

【问题讨论】:

标签: c++ linker-errors clang++ explicit-instantiation


【解决方案1】:

您的显式实例化应该在定义可见的地方,所以在 Points.cpp 的末尾

来自class_template#Explicit_instantiation

显式实例化定义强制实例化它们所引用的类、结构或联合。它可以出现在模板定义之后的程序中的任何位置,并且对于给定的参数列表,只允许在整个程序中出现一次,不需要诊断。

【讨论】:

  • 当然,但为什么 gcc 会生成定义?
  • @cigien:TU 的结尾是一个有效的实例化点,因此它应该对 Points.cpp 成功而对 test.cpp 失败,因此可能会破坏 ODR。
  • 啊,所以这个程序在技术上不需要诊断?
  • @cigien:主要是模板的情况。这是我对 cpp 参考引用的理解。
  • 是的,这似乎是一个合理的解释。
猜你喜欢
  • 2012-01-26
  • 2014-07-08
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2015-10-12
相关资源
最近更新 更多