C++模板dll =>未解决的外部因素

发布于 2024-10-24 00:16:33 字数 540 浏览 1 评论 0原文

我在共享库中有一个模板函数。我知道该函数将使用 int 或 double 参数调用。因此,我在源文件中实例化了模板的两个版本。

template void library::doSomething<int>(int const number);
template void library::doSomething<double>(double const number);

该解决方案适用于 Linux 上的 g++(获取 *.so),但是当我尝试使用 VS2010 在 Windows 上将相同的代码编译为 *.dll 时,我收到如下错误:

错误LNK2001:无法解析的外部符号doSomething

导出在 *.def 文件中提供,例如:

出口

做某事

我是否缺少某些内容或者此解决方案与 Windows“不兼容”?

谢谢。

彼得

I have a template function in a shared library. I know the function will be called with either int or double arguments. I therefore instantiate the two versions of the template in the source file.

template void library::doSomething<int>(int const number);
template void library::doSomething<double>(double const number);

This solution works with g++ on Linux (getting a *.so), but when I try to compile the same code into a *.dll on Windows using VS2010 I get an error like this:

error LNK2001: unresolved external symbol doSomething

Exports are provided in a *.def file like:

EXPORTS

doSomething

Am I missing something or is this solution "incompatible" with Windows?

Thanks.

Petr

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

送君千里 2024-10-31 00:16:34

您需要将实例化函数的损坏名称放入 DEF 文件中,而不是 C++ 名称。

您可以在 MSDN 文章使用 DEF 文件从 DLL 导出:

如果要在 C++ 文件中导出函数,则必须将修饰名称放入 .def 文件中,或者使用 extern "C" 通过标准 C 链接定义导出的函数。

如果需要将修饰名放入.def 文件中,可以使用DUMPBIN 工具或使用链接器/MAP 选项来获取它们。请注意,编译器生成的修饰名称是特定于编译器的。

如果将 Visual C++ 编译器生成的修饰名称放入 .def 文件中,则链接到 DLL 的应用程序也必须使用相同版本的 Visual C++ 构建,以便调用应用程序中的修饰名称与导出的应用程序相匹配。 DLL 的 .def 文件中的名称。

通常,使用 __declspec(dllexport) 更加简单,如果您可以使用它,您应该考虑这样做。

You need to put the mangled names of the instantiated functions into the DEF file, not the C++ names.

You can find out more in the MSDN article Exporting from a DLL Using DEF Files:

If you are exporting functions in a C++ file, you have to either place the decorated names in the .def file or define your exported functions with standard C linkage by using extern "C".

If you need to place the decorated names in the .def file, you can obtain them by using the DUMPBIN tool or by using the linker /MAP option. Note that the decorated names produced by the compiler are compiler specific.

If you place the decorated names produced by the Visual C++ compiler into a .def file, applications that link to your DLL must also be built using the same version of Visual C++ so that the decorated names in the calling application match the exported names in the DLL's .def file.

Usually, using __declspec(dllexport) is much more straightforward and if you can use it you should consider doing so.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文