LNK2005,MSVC2010 中的“已定义错误”链接器错误

问题描述 投票:0回答:2

我正在尝试使用点云库和 OpenCV 以及多个文件来实现一个测试项目。当我尝试编译时,我收到“已定义错误”消息。也许我正在做一些愚蠢的事情,由于某种原因无法实现 - 我尝试了这里找到的几个解决方案,但它们似乎都对我的情况没有帮助。

我有:

libs.h 文件,我在其中加载 lib 文件(在项目属性中,我仅设置 .lib 路径并“手动”加载库,如标头):

#pragma once

#ifndef PCLTEST_LIBS
#define PCLTEST_LIBS

#ifdef _DEBUG
  #pragma comment(lib, "pcl_apps-gd.lib")
  #pragma comment(lib, "pcl_common-gd.lib")
  // a bunch of other debug libs
#else
  // the release libs
#endif
#endif

一个主文件,我此时基本上删除了所有内容以进行调试:

// load the libs
#ifndef PCLTEST_LIBS
#include "libs.h"
#endif

// pcltest includes
// if only this first one is #included, everything is OK
#include "opencvOperations.h"
// #including this one causes the error
#include "files.h"
// these ones are not working also
//#include "cloudOperations.h"
//#include "visualize.h"

// c++ headers
#include <stdio.h>
#include <string>
//#include <sstream>
//#include <iostream>

void writeInfo()
{
    // some std::cout calls
}

int main( int argc, char* argv[] )
{
    writeInfo();
    // this function is in opencvOperations.h and works OK
    pcltest::openLena();
}

然后我在 main.obj 中收到几条错误消息,表明某些(与 PCL 相关的)符号已在 files.obj 中定义。我在 opencvOperations 和文件中都使用了 PCL 相关调用,第一个可以,第二个不起作用。

编辑: 要添加更多详细信息,我的 files.h 标头:

#pragma once

#ifndef PCLTEST_FILES
#define PCLTEST_FILES

// pcl headers
#ifndef PCL_COMMON_H_
#include <pcl/common/common_headers.h>
#endif
#ifndef PCL_IO_FILE_IO_H_
#include <pcl/io/file_io.h>
#endif
#ifndef PCL_IO_PCD_IO_H_ 
#include <pcl/io/pcd_io.h>
#endif
#ifndef PCL_IO_PLY_IO_H_ 
#include <pcl/io/ply_io.h>
#endif
// boost headers
#ifndef BOOST_FILESYSTEM_OPERATIONSX_HPP 
#include <boost/filesystem/operations.hpp>
#endif

#endif

namespace pcltest
{
    // function to open PCL or binary PLY files
    pcl::PointCloud<pcl::PointXYZ>::Ptr openCloud(std::string filename);

    // function to save the point cloud to PCD format
    void saveCloud();
}

在将代码拆分为单独的文件之前,一切运行良好(具有相同的项目设置)。

编辑2:

我找到了问题的根源,

#include <pcl/io/ply_io.h>

造成这种情况。现在,我摆脱了与 PLY 相关的所有内容,一切正常。我稍后会查看,这可能是 PCL 库特定的问题。我仍然很奇怪为什么这个调用会导致其他文件中的链接器错误,我什至不使用 PLY 相关的函数/变量。

c++ visual-studio-2010 point-clouds
2个回答
8
投票

我也遇到了和你一样的问题。 我有一个surface.h 和surface.cpp 文件,我发现我必须包含surface.cpp 中的ply_io.h 文件而不是surface.h,现在它编译得很好。 我希望这有帮助或有意义!哈哈


2
投票

如果在包含中实例化常量,也可以使用 selectany,根据 http://msdn.microsoft.com/en-us/library/5tkz6s71%28v=vs.80%29.aspx - 在我的案例:

const int CSdata[] = {1, 2, 3, 4};

当包含在多个源部分中时,会在链接时生成 LNK2005,可通过以下方式避免:

const __declspec(selectany) int CSdata[] = {1, 2, 3, 4};

非便携式,是的...

© www.soinside.com 2019 - 2024. All rights reserved.