Re: Extensions on Linux: import without underscore?

2005-06-18 Thread jchiang
Try SharedLibrary(bright.so, SHLIBPREFIX=, ...) The prefix option is documented here http://www.scons.org/doc/HTML/scons-man.html -- http://mail.python.org/mailman/listinfo/python-list

Re: SWIG std::string passing

2005-05-29 Thread jchiang
Add the line %include stl.i to your .i file. This will make other stl containers available, in addition to string. Make sure you put this line before any include directives for classes that use std::string. SWIG requires classes to be declared before they are used in order for the interfaces