链接器错误构建 fibonnacci 示例与 boost::coroutine2 与 Boost 1.60 使用动态链接

Linker error building fibonnacci example with boost::coroutine2 with Boost 1.60 using Dynamic Linking

本文关键字:链接 Boost 动态 coroutine2 boost 错误 构建 fibonnacci      更新时间:2023-10-16

我在Visual Studio 2015中做了一个简单的项目,以重现我在Boost 1.60的较大代码库中遇到的问题

我尝试简单地编译并运行此处找到的示例:https://github.com/boostorg/coroutine2/blob/develop/example/fibonacci.cpp略有变化 - 使用动态库。

因此,我的完整代码如下:

#include <cstdlib>
#include <iostream>
#define BOOST_ALL_DYN_LINK //This is the only difference
#include <boost/coroutine2/all.hpp>
int main() {
    boost::coroutines2::coroutine< int >::pull_type source(
        [](boost::coroutines2::coroutine< int >::push_type & sink) {
        int first = 1, second = 1;
        sink(first);
        sink(second);
        for (int i = 0; i < 8; ++i) {
            int third = first + second;
            first = second;
            second = third;
            sink(third);
        }
    });
    for (auto i : source) {
        std::cout << i << " ";
    }
    std::cout << "nDone" << std::endl;
    return EXIT_SUCCESS;
}

但是,我收到链接器错误:

1>------ Build started: Project: coroutine2-test, Configuration: Debug Win32 ------
1>  Source.cpp
1>c:userslyndenboost_1_60_0boostcontextexecution_context.ipp(209): warning C4251: 'boost::context::execution_context::ptr_': class 'boost::intrusive_ptr<boost::context::detail::activation_record>' needs to have dll-interface to be used by clients of class 'boost::context::execution_context'
1>Source.obj : error LNK2001: unresolved external symbol "public: static class boost::intrusive_ptr<struct boost::context::detail::activation_record> boost::context::detail::activation_record::current_rec" (?current_rec@activation_record@detail@context@boost@@2V?$intrusive_ptr@Uactivation_record@detail@context@boost@@@4@A)
1>D:random projectscoroutine2-testDebugcoroutine2-test.exe : fatal error LNK1120: 1 unresolved externals
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
我当然将包含目录设置为我的提升目录

,将链接器附加目录设置为提升/阶段/库目录。

你需要链接到boost.context(由boost.coroutine2使用(。告诉编译器/链接器在哪里可以找到boost.context的共享库。

你需要

使用标准的C++14(选项"-std=c++14"(编译Boost,否则Boost.Context将无法提供必要的实现来支持Boost.Coroutine2,编译器将无法链接。