pyside / PySide

ATTENTION: This project is deprecated, please refer to PySide2
https://wiki.qt.io/PySide2
GNU Lesser General Public License v2.1
291 stars 66 forks source link

cross compile error #117

Open svolpe opened 11 years ago

svolpe commented 11 years ago

I'm getting the following error when cross compiling pyside:

git/PySide/QtGui/PySide/QtGui/qapplicationwrapper.cpp:1894:46: error: no matching function for call to 'QApplication::setArgs(int&, char&)' no known conversion for argument 2 from 'char_' to 'char**'

I've looked at qapplication_wrapper.cpp and it is passing a char* to setArgs which is expecting a char**. Why was qapplication_wrapper.cpp generated with the wrong pointer usage? What generates qapplication_wrapper.cpp and where should I start looking for the source of this issue?