Visual Studio C++ 远程 linux 调试添加链接器选项

Visual Studio C++ remote linux debugging add linker options

我正在尝试使用 boost 库用 C++ 开发一个简单的程序。 我用 Visual Studio 2017 和 ubuntu 的远程 bash shell 进行编译和调试。

我在 ubuntu 上安装了 gdb、gdbserver、所有编译器和 boost 库。

没有 boost 的简单程序编译和 运行 没有问题 shell 直接来自 Visual Studio !

当我使用以下命令直接从 ubuntu bash 编译以下程序时:g++ test.cpp -std=c++11 -lboost_program_options -o t 它编译并且 运行s 也!

#include <boost/program_options.hpp>
#include <iostream>

using namespace boost::program_options;

int main(int argc, const char *argv[])
{
    try
    {
        options_description desc{ "Options" };
        desc.add_options()
            ("help,h", "Help screen");

        variables_map vm;
        store(parse_command_line(argc, argv, desc), vm);
        notify(vm);

        if (vm.count("help"))
            std::cout << desc << '\n';

    }
    catch (const error &ex)
    {
        std::cerr << ex.what() << '\n';
    }
}

但是,如果我将 Visual Studio 中的相同代码放入文件中并尝试远程编译,则它不起作用:

1>------ Build started: Project: ACO-PPS, Configuration: Debug x64 ------
1>Validating architecture
1>Validating sources
1>Copying sources remotely to 'localhost'
1>Starting remote build
1>Compiling sources:
1>main.cpp
1>Linking objects
1>/home/marius/projects/ACO-PPS/obj/x64/Debug/main.o : In the function main :
1>/home/marius/projects/ACO-PPS/main.cpp:11 : undefined reference to « boost::program_options::options_description::m_default_line_length »

等等...

在项目属性中,我已将 -lboost_program_options 包含在 : 配置属性 > C/C++ > 所有选项 > 其他选项 和下: 配置属性 > 链接器 > 所有选项 > 其他选项

我做错了什么?

以下是 VCLinux 用于指定 GCC 库的规则 - 来自 Ion Todirel (MSFT) answer on the VCLinux GitHub site.

您会看到 ...Additional Options 将库 放在目标文件 之前,因此链接器不会在库中查找依赖项。我建议使用 Linker - Input - Library Dependencies 并指定库名称 boost_program_options 不带 -l .

  • 链接器 - 常规 - 附加库目录 - 这会添加路径 使用 -L 到命令开头附近的链接器命令行 行.

  • Linker - Input - Library Dependencies - 这会添加文件名 -l 在链接器命令行的最后

  • 链接器 - 输入 - 附加依赖项 - 这会添加条目 在目标文件之后和链接器之前逐字输入 - 输入 - 库依赖项

  • 链接器 - 命令行 - 附加选项 - 这会添加条目 在链接器命令行中的目标文件之前一字不差

请注意,Linker - Input - Library Dependencies 中给出的库名称作为 -l 命令行选项传递给 gcc;即它不应该有 lib 前缀或扩展名。例如,libcairo.soLinker - Input - Library Dependencies 中应显示为 cairo。在 Linux 远程上,gcc 将沿着 Linker - General - Additional Library Directories 中指定的路径搜索,默认系统库搜索路径首先查找 libcairo.so(动态链接或共享, 库) 然后 libcairo.a (静态链接库).

如果您的系统上同时有共享库和静态库,将优先使用共享库。如果要强制链接静态库,请参阅 Telling gcc directly to link a library statically.