-
Notifications
You must be signed in to change notification settings - Fork 182
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
Possible issue with 'generate_microRTPS_bridge.py' when ROS2 is built from source. #114
Comments
Same here, I built ros2-foxy from source on ubuntu. Thereby, fastrtps is already part of the installation but cannot be detected using dpkg since it wasn't obtained from any ppa. |
How did you fix this issue? Is this the error that you get: [28/307] Building CXX object src/modules/microdds_cl...s/modules__microdds_client.dir/microdds_client.cpp.o |
I got it sorted by running this: |
I got the same error with ROS2 Humble built with sources. I'm already sourcing humble with but then I get
|
I used to source humble before compiling. Without sourcing it seems to compile correctly. |
If ROS2 has been built from source, I suspect line 210 and 211 in 'generate_microRTPS_bridge.py' is bound to fail:
fastrtps_version = re.search(r'Version:\s*([\dd.]+)', subprocess.check_output( "dpkg -s ros-" + ros2_distro + "-fastrtps 2>/dev/null | grep -i version", shell=True).decode("utf-8").strip()).group(1)
Works on a machine with Foxy installed from Debian packages. But not on another machine with Foxy built from source (above lines fail). Perhaps I'm missing something? Also tried building and installing FastDDS 2.0.1 (as well as 1.8.2) from source separately (shall already be included with Foxy).
The text was updated successfully, but these errors were encountered: