我遇到了swig的麻烦,对我来说,看起来我的代码中的一个数据成员是一个未定义的符号。我在网上找到了如何修复功能的答案,但这让我很困惑。
我的错误是:
Traceback (most recent call last):
File "./test1.py", line 5, in <module>
from volumes import *
File "/scratch/rjkern/projects/RJKERN_volrend/scripts/volumes.py", line 26, in <module>
_volumes = swig_import_helper()
File "/scratch/rjkern/projects/RJKERN_volrend/scripts/volumes.py", line 22, in swig_import_helper
_mod = imp.load_module('_volumes', fp, pathname, description)
ImportError: /scratch/rjkern/projects/RJKERN_volrend/scripts/_volumes.so: undefined symbol: _ZN13ConstantColorC1ESt10shared_ptrI5ColorE
这是我的代码:
/*
* ColorOperations.h
*/
#ifndef ___COLOROPS___
#define ___COLOROPS___
#include "Color.h"
#include "ProgressMeter.h"
#include "Vector.h"
#include "Volume.h"
#include "VolumeOperations.h"
#include <memory>
using namespace std;
class ConstantColor : public Volume<Color>{
shared_ptr <Color> color;
public:
ConstantColor(const shared_ptr<Color>& _color);
const Color eval(const Vector& P) const;
Color grad(const Vector& P);
};
#endif
和
/*
* ColorOperations.cpp
*/
#include "ColorOperations.h"
ConstantColor::ConstantColor(const shared_ptr<Color>& _color){
color = _color;
}
const Color ConstantColor::eval(const Vector& P)const{
return *color;
}
答案 0 :(得分:13)
我们可以使用c++filt
:
c++filt _ZN13ConstantColorC1ESt10shared_ptrI5ColorE
给出了:
ConstantColor::ConstantColor(std::shared_ptr<Color>)
即。你的构造函数需要shared_ptr
。但是,只会报告第一个未解决的符号。
请注意,这里不是引用,但您的构造函数看起来像是引用。您.i或其他文件中某处可能的拼写错误可能解释为什么某些东西认为存在非参考版本。
另一个可能的解释是你已经将你的包装器(即已编译的卷_wrap.cxx)构建到共享对象,但没有将已编译的ColourOperations.cpp链接到该对象。
或者,如果您 将其链接到linked it in the wrong order and thus it was judged as not needed by the linker,则可能会这样做。如果是这种情况,请确保在链接器命令行上最后有-lcolour_library
/ colour_library.a
/ ColorOperatios.o
。 (这个名字有猜测)。