This particular error:
gui_app.cpp:308:18: error: invalid conversion from ‘const char*’ to ‘wxChar {aka wchar_t}’ [-fpermissive]
if (_host == "127.0.0.1" && _never_spawn) {
Needed to altered ever so slightly to:
if (_host == wxT("127.0.0.1") && _never_spawn).
Then:
gui_app.cpp: In member function ‘virtual bool SooperLooperGui::GuiApp::
gui_app.cpp:250:38: error: ‘SetAppDisplayName’ was not declared in this scope
SetAppDisplayName(wxT("
Needed to changed to:
#if wxCHECK_VERSION(2,9,0)SetAppDisplayName(wxT("SooperLooper"));
#endif, simply because wXWidgets has new features that old versions do not support.
I went straight from contacting Jesse to trying to build, without a thorough look at the code, so it may be a disaster (again), but I'm going to find out quicker if it builds on arm64 now and jump to libmad if that is the case.
No comments:
Post a Comment