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
debugger/BaseD.cpp: In static member function ‘static void BaseD::check_paths_and_reload(char**, unsigned int, bool)’:
debugger/BaseD.cpp:323:7: error: ‘sort’ was not declared in this scope; did you mean ‘sqrt’?
323 | sort(v.begin(), v.end()); // sort, since directory iteration
| ^~~~
| sqrt
make[1]: *** [Makefile:352: obj/debugger/BaseD.o] Error 1
To Reproduce
Steps to reproduce the behavior:
after completing the submodule.sh run make in main directory
Expected behavior
build ends successfully
Desktop (please complete the following information):
OS: Manjaro Linux
Version:21.01 and for the source code git version
Additional context
version of gcc is 11, also changed the directory of the wla-dx from build-wla/binaries to just binaries as that is after building where they are located
The text was updated successfully, but these errors were encountered:
I think I might have a fix for you, try dropping this into lines 6 & 7 respectively in the file BaseD.cpp in the folder snestracker/pc/debugger/ #include <algorithm> using namespace std;
That should sort out the compile issue
.
Describe the bug
To Reproduce
Steps to reproduce the behavior:
after completing the submodule.sh run make in main directory
Expected behavior
build ends successfully
Desktop (please complete the following information):
Additional context
version of gcc is 11, also changed the directory of the wla-dx from build-wla/binaries to just binaries as that is after building where they are located
The text was updated successfully, but these errors were encountered: