Open and502 opened 1 year ago
I have problem similar to this. just use "thirdparty/spdlog" the SDK provided
I have problem similar to this. just use "thirdparty/spdlog" the SDK provided
Will appreciate if could give more detail operations
I have problem similar to this. just use "thirdparty/spdlog" the SDK provided
Will appreciate if could give more detail operations
thanks, I will upload more log info about this problem.
I'm using other libraries that are also linking to the system version of spdlog, which means that I can't fix this by making these libraries link to the spdlog version embedded in the livox_sdk2 library.
One possible fix for this would be to add a cmake option to enable compiling the sdk against the global, system wide installation of spdlog instead of the one included in the Livox-SDK2 repo.
Hi,
I'm using this library in a ROS2 node and getting a segfault during destruction of spdlog classes at shutdown. Please see valgrind output below. This seems to be caused by the ros2 node binary dynamically linking to and using my system spdlog librares, while the Livox SDK is compiled using the emmbedded spdlog headers in the src/3rdparty/spdlog/ directory. I've fixed this by disabling the use of src/3rdparty/spdlog/ and compiling the SDK using headers from my system install of spdlog.