C++ 库编程错误:ld:未找到架构 x86_64 的符号

问题描述 投票:0回答:1

我开始编写一个库,并决定进行测试,但我在问题标题中收到错误(Mac OSX,gcc-4.7.1):

tlib.cpp:

template <typename T>
T dobra(const T& valor){
  return valor*2;
}

tlib.h:

template <typename T>
T dobra(const T& valor);

test2.cpp:

#include "tlib.h"
#include <iostream>

using namespace std;

int main (int argc, char const *argv[])
{ 
  double b = dobra<double>(10);
  cout << b << endl;
  return 0;
}

编译

no25-89:CPROP canesin$ g++ -dynamiclib -Wall -std=c++11 tlib.cpp -o libdobra.so
no25-89:CPROP canesin$ g++ test2.cpp -Wall -std=c++11 -o test2 -L. -ldobra
Undefined symbols for architecture x86_64:
  "double dobra<double>(double const&)", referenced from:
      _main in cctLJGqf.o
ld: symbol(s) not found for architecture x86_64
collect2: error: ld returned 1 exit status
no25-89:CPROP canesin$ 
c++ gcc compilation
1个回答
2
投票

C++ 中的一个事实是,您必须在使用模板的每个编译单元中包含模板的完整实现,或者将自己限制为特定的实例。

实际上,这意味着您:

  1. 将 tlib.cpp 中的内容放入 tlib.h 中。 这是最常见的解决方案。
  2. 限制自己只使用(比如说)

    dobra<double>
    ,并将显式实例化放入 tlib.cpp 中:

    template double dobra<double>(const double& valor);

© www.soinside.com 2019 - 2024. All rights reserved.