-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
double free or corruption (out) #3
Comments
Can you point out the specific location of this error? I saw a warning above the error message in the picture that shouldn't appear: "Framebuffer with requested attributes not available, Using available framebuffer...". This warning does not come from our library. I searched and found that it comes from the visualization library Pangolin. And this problem is also explained in its readme. Hope this helps! |
This doesn't seem to make sense. We don't have any problems with our computer at all. What do you think is the problem? 😭 |
"Hi bro, I had a similar problem once. I solved the problem by modifying the CMakeLists.txt file. Modify lines 10 and 11 as follows:" set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} -march=native")
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -march=native") After modification set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE}")
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE}") |
Bro, you're really talented!" |
Awesome, problem solved 😃 . The This option adjusts the compilation settings according to your CPU architecture and instruction set extensions, optimizing the generated machine code. It selects the best instruction set based on your CPU's capabilities, which can improve program performance. In summary, |
“Bro, I successfully compiled RIVER and RIS-CALIB in Docker, but encountered the same issue for both: 'double free or corruption (out)'. Hope you can provide some guidance!”
The text was updated successfully, but these errors were encountered: