First I really appreciate that you guys shared this great repo.
By the way, I wonder what the purpose of "BACKWARD" is.
It seems that this is only included in these two files: rosNodeTest.cpp, rosNodelet.cpp but never used over the whole codes.
Even it engenders compile error:
No such file or directory #include <backward.hpp>, after solved the another issue /usr/bin/ld: cannot find -ldw by $ sudo apt install libdw-dev.
After I commented set(ENABLE_BACKWARD true) in the CMakeLists.txt, the codes could be built well (but not yet executed).
@engcang Backward is a cool project for debugging. Once VINS-Fisheye crashed on robots, it's impossible to debug it with GDB. Backward will print the traceback, which helps you to locate where the bug is.
Hi.
First I really appreciate that you guys shared this great repo. By the way, I wonder what the purpose of "BACKWARD" is.
It seems that this is only included in these two files: rosNodeTest.cpp, rosNodelet.cpp but never used over the whole codes.
Even it engenders compile error:
No such file or directory #include <backward.hpp>
, after solved the another issue/usr/bin/ld: cannot find -ldw
by$ sudo apt install libdw-dev
.After I commented
set(ENABLE_BACKWARD true)
in theCMakeLists.txt
, the codes could be built well (but not yet executed).Thank you in advance.