We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hello,
Im using the supplied Docker with Ros Iron.
Initially there were problems with the subcriber definitions which I fixed by
void callback_image(const sensor_msgs::msg::Image::SharedPtr msg); void callback_imu(const sensor_msgs::msg::Imu::SharedPtr msg);
rclcpp::Subscription<sensor_msgs::msg::Image>::SharedPtr sub_cam_; //<! Camera subscriber rclcpp::Subscription<sensor_msgs::msg::Imu>::SharedPtr sub_imu_; //<! IMU subscriber
However now I have a linking error.
/usr/bin/ld: libmsceqf_lib.so: undefined reference to boost::math::tools::promote_args<double, float, float, float, float, float>::type boost::math::round(double const&)'`
/usr/bin/ld: libmsceqf_lib.so: undefined reference to
I tried adding #include <boost/math/special_functions/next.hpp> as per https://lists.boost.org/Archives/boost/2016/09/230712.php But it doenst help.
#include <boost/math/special_functions/next.hpp>
I can build the non-ros version fine. So its probably due to the static linking which happens in the non-ros version?
I not really sure whats going on
The text was updated successfully, but these errors were encountered:
Hi there! Let me have a look over the weekend. I'll be back on you.
Sorry, something went wrong.
No branches or pull requests
Hello,
Im using the supplied Docker with Ros Iron.
Initially there were problems with the subcriber definitions which I fixed by
However now I have a linking error.
/usr/bin/ld: libmsceqf_lib.so: undefined reference to
boost::math::tools::promote_args<double, float, float, float, float, float>::type boost::math::round(double const&)'`I tried adding
#include <boost/math/special_functions/next.hpp>
as per https://lists.boost.org/Archives/boost/2016/09/230712.phpBut it doenst help.
I can build the non-ros version fine. So its probably due to the static linking which happens in the non-ros version?
I not really sure whats going on
The text was updated successfully, but these errors were encountered: