gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-04 18:26:48 25 4
gpt4 key购买 nike

我正在尝试使用 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 它也编译并运行!

#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

  • Linker - General - Additional Library Directories - 这会添加路径使用 -L 到命令开头附近的链接器命令行行。

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

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

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

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

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

关于visual-studio - Visual Studio C++ 远程 linux 调试添加链接器选项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46674763/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com