-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Can not compile custom edges after Merge request 506 #535
Comments
Does #536 fix the problem for you? |
I have the same problem with my custom edges on fedora 36. The PR sadly didn't fix it. Did you find a solution? |
Installing libceres-dev on ubuntu solves the issue for me. So, probably you should install ceres libs |
Yep same on fedora. Not using the vendored version solved the problem. |
Actually if you set #ifdef G2O_USE_VENDORED_CERES
#include "g2o/EXTERNAL/ceres/fixed_array.h"
#else
#include <ceres/internal/fixed_array.h>
#endif It will search for |
This issue is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 14 days. |
Thx for your great work!
After merge of
#506
I can not compile my custom edges anymore (Setting G2O_USE_VENDORED_CERES of course).
Error:
/usr/local/include/g2o/core/base_fixed_sized_edge.h:37:12: fatal error: ceres/internal/fixed_array.h: No such file or directory
37 | #include <ceres/internal/fixed_array.h>
You help is much appreciated!
The text was updated successfully, but these errors were encountered: