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 try to build the debugger with following error message:
[ 93%] Building CXX object plugins/ODbgRegisterView/CMakeFiles/ODbgRegisterView.dir/RegisterView.cpp.o
/home/simon/bac/edb-debugger/plugins/ODbgRegisterView/RegisterView.cpp: In member function ‘void ODbgRegisterView::ODBRegView::groupHidden(ODbgRegisterView::RegisterGroup*)’:
/home/simon/bac/edb-debugger/plugins/ODbgRegisterView/RegisterView.cpp:357:104: error: no matching function for call to ‘QMenu::addAction(const char* const&, ODbgRegisterView::ODBRegView::groupHidden(ODbgRegisterView::RegisterGroup*)::<lambda()>)’
hiddenGroupsMenu_->addAction(RegisterGroupTypeNames[groupType], [=] { restoreHiddenGroup(groupType); });
^
my OS system: Ubuntu 16.04 Server version
I had install all the required software.
Any comment about that?
The text was updated successfully, but these errors were encountered:
OK, in Ubuntu 16.04 qt5 version is 5.5.1, while the function in question was introduced in 5.6. You can install a newer Qt from this repo or following this answer (replacing 5.7 with 5.15).
Also note that Ubuntu 16.04 reached its EOL years ago, so you will have more and more problems with it with time: inaccessible repos, out of date dependencies, etc.
Please post the full output starting from empty build directory, including cmake configuration output and the build (make, ninja, what have you) output.
Hi, Teran,
I try to build the debugger with following error message:
[ 93%] Building CXX object plugins/ODbgRegisterView/CMakeFiles/ODbgRegisterView.dir/RegisterView.cpp.o
/home/simon/bac/edb-debugger/plugins/ODbgRegisterView/RegisterView.cpp: In member function ‘void ODbgRegisterView::ODBRegView::groupHidden(ODbgRegisterView::RegisterGroup*)’:
/home/simon/bac/edb-debugger/plugins/ODbgRegisterView/RegisterView.cpp:357:104: error: no matching function for call to ‘QMenu::addAction(const char* const&, ODbgRegisterView::ODBRegView::groupHidden(ODbgRegisterView::RegisterGroup*)::<lambda()>)’
hiddenGroupsMenu_->addAction(RegisterGroupTypeNames[groupType], [=] { restoreHiddenGroup(groupType); });
^
my OS system: Ubuntu 16.04 Server version
I had install all the required software.
Any comment about that?
The text was updated successfully, but these errors were encountered: