Linux 和 macOS 都很好,但 Windows 版本会引发链接器错误LNK2019

Linux and macOS are fine, but Windows build throws linker error LNK2019

提问人:Megidd 提问时间:4/29/2019 最后编辑:Megidd 更新时间:4/30/2019 访问量:369

问:

我正在从另一个共享库中调用共享库中的类方法。应用程序在 Linux 和 macOS 上构建良好,但在 Windows 上我收到:

exportlib.obj:错误LNK2019:未解析的外部符号“__declspec(dllimport) public: class std::vector > __cdecl Algorithmslib::k_means(class std::vector > const &,unsigned __int64,unsigned __int64)” (__imp_?k_means@Algorithmslib@@QEAA?AV?$vector@VPoint@@V?$allocator@VPoint@@@std@@@std@@AEBV23@_K1@Z) 在函数“private: void __cdecl Exportlib::setSuppPoints(void)”(?setSuppPoints@Exportlib@@AEAAXXZ)中引用 debug\exportlib.dll:致命错误LNK1120:1 个无法解析的外部

我没有办法导致错误(仅在 Windows 上!


具有导出类的共享库:

// Project file for exported shared library
// algorithmslib.pro

DEFINES += ALGORITHMSLIB_LIBRARY

根据定义导出或导入:

// algorithmslib_global.h

#if defined(ALGORITHMSLIB_LIBRARY)
#  define ALGORITHMSLIBSHARED_EXPORT Q_DECL_EXPORT
#else
#  define ALGORITHMSLIBSHARED_EXPORT Q_DECL_IMPORT
#endif

类声明:

// algorithmslib.h

#include "algorithmslib_global.h"

class ALGORITHMSLIBSHARED_EXPORT Algorithmslib : public QObject
{
    Q_OBJECT

public:
    Algorithmslib();
    std::vector<Point> k_means(const std::vector<Point>& data,
                               size_t k,
                               size_t number_of_iterations);
};

从另一个共享库中调用导出类的方法:k_means

// This is a second shared library which calls the exported class of the 1st shared library
// exportlib.cpp

#include "algorithmslib.h"

void Exportlib::setSuppPoints()
{
    Algorithmslib algorithmEngine;
    std::vector<Point> means = algorithmEngine.k_means(data, k, number_of_iterations);
}

我正在使用 Desktop_Qt_5_12_1_MSVC2017_64bit-Debug 套件进行编译:

Compilers


我将共享库重命名为非常独特的名称,但抛出相同的链接器错误。因此,这个问题不是我的情况

C++ Qt 器链接 器错误

评论

0赞 vahancho 4/29/2019
函数是否定义?k_means
0赞 AF_cpp 4/29/2019
你如何构建你的应用程序?构建命令行会很有趣。如果它建立在 linux/mac 上,它也应该在 Windows 上构建。您使用的是 Visual Studio 吗?
0赞 Megidd 4/29/2019
@vahancho 是的,是在源代码中实现的,这就是为什么在 Linux 和 macOS 上构建可以:)k_means
0赞 Megidd 4/29/2019
@AF_cpp我正在使用Qt Creator。我已经删除了构建目录并多次重复构建过程,但没有运气:(
0赞 vahancho 4/29/2019
@user3405291,当您调用只有声明而没有定义的函数时,某些链接器不会抱怨。在这种情况下,您只能在运行时检测到问题。

答:

1赞 Megidd 4/30/2019 #1

第一个共享库

我有一个内部第一个共享库:struct

// algorithmslib.h

struct Point {
    float x{0}, y{0}, z{0};
};

第二个共享库

我在我的第二个共享库中使用上述内容,如下所示:struct

页眉:

// exportlib.h

class Point; // Note that I was using "class" here 
             // but the declaration inside algorithmslib.h is "struct"

size_t computeNumberOfClusters(const std::vector<Point> &data);

源:

//exportlib.cpp

#include "algorithmslib.h"

std::vector<Point> data(number_of_points); // Point structure is declared in algorithmslib.h

size_t k = computeNumberOfClusters(data);
size_t number_of_iterations = 300;
Algorithmslib algorithmEngine;

std::vector<Point> means = algorithmEngine.k_means(data, k, number_of_iterations);

修复

我将第二个共享库的标题从 更改为 ,并解决了 Windows 上的链接器错误:class Point;struct Point;

// exportlib.h

struct Point; // declared in algorithmslib.h as "struct" NOT "class"

评论

0赞 Megidd 5/1/2019
我想知道为什么 Linux (gcc-g++) 和 macOS (clang++) 不关心和不匹配!classstruct