首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >Clang++使链接器在模板类上失败(但它适用于g++)

Clang++使链接器在模板类上失败(但它适用于g++)
EN

Stack Overflow用户
提问于 2020-12-23 00:08:46
回答 1查看 210关注 0票数 3

我有一个与GCC很好地合作的程序,但是用Clang编译它反而会使链接器失败。

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

test.cpp

代码语言:javascript
复制
#include "Point.h"

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

Point.h

代码语言:javascript
复制
#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

代码语言:javascript
复制
#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,它提供了以下错误:

代码语言:javascript
复制
$ 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:

代码语言:javascript
复制
$ 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来说还不够好,但是我不知道它想要什么。

EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2020-12-23 00:17:52

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

来自实例化

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

票数 5
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/65417446

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档