You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm getting the following error when cross compiling pyside:
git/PySide/QtGui/PySide/QtGui/qapplication_wrapper.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?
The text was updated successfully, but these errors were encountered:
I'm getting the following error when cross compiling pyside:
git/PySide/QtGui/PySide/QtGui/qapplication_wrapper.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?
The text was updated successfully, but these errors were encountered: