3

在一个项目中,我必须将 C++ 代码(包括 Python 中的 opengl 库)与 swig 绑定。问题是当我包含 OpenGL 共享库时,异常处理程序不再起作用。作为说明,这个项目:

例子.i

/* example.i */
%module example
%{
#include "example.h"
%}
class Error{
public:
    Error();
    const char *what() const throw();   
    virtual ~Error() throw();
};
void foo() throw(Error);

例子.cpp

#include"example.h"
Error::Error(){}
const char *Error::what() const throw() { return "FOO"; }
Error::~Error() throw(){}

void foo() throw(Error){throw(Error());}

例子.h

class Error{
public:
  Error();
  const char *what() const throw();
  virtual ~Error() throw();
};
void foo() throw(Error);

例子.py

from example import * 
try:
    foo()
except Error,e:
     print e.what()

生成文件

swig -c++ -python example.i
g++ -I/usr/include/python2.7/  -c -fpic example.cpp example_wrap.cxx
g++ -lGL -shared example.o example_wrap.o -o _example.so
python example.py

使用 -lGL 会发生分段错误。没有,python 处理错误。你有解决这个问题的想法吗?

4

0 回答 0