-
Notifications
You must be signed in to change notification settings - Fork 116
fails to compile with the latest version of rviz #654
Comments
Can anyone try with ros-visualization/rviz#983? |
This doesn't fix it for me. The problem is that the rviz extras wants the generated file and thus fails before linking during cmake already.
|
I see, let me try to address that. |
I added ros-visualization/rviz@91ba11a to try and address that. Can you give that a try? |
It did compile with catkin_make. However only after multiple runs with |
@dornhege is that from a clean build that it fails on the first pass? |
Yes, after I removed build/ and devel/. |
@dornhege can you send me a |
The .rosinstall is attached, where I manually checked out your rviz commit. |
I can reproduce that issue and I think I understand why it is a problem. I changed the way I expose it with ros-visualization/rviz@610ecf5. I'll just have to remember to update that when I change the default plugin's library name in Kinetic. I'm rebuilding now to test it. |
It seems to build for me now. I'm gonna merge the rviz pr and prepare for another release. Let me know if you see anymore issues with it. Thanks for helping me test it. |
Nice work. Builds fine for me to. |
@dornhege FYI, I have made a slight improvement after thinking about it more and seeing a failure during one of the repeated builds of the moveit workspace: ros-visualization/rviz#984 |
Is this resoloved? I'm still seeing a build failure. |
because 0.7.0 does not include 35ce06c |
For example:
http://build.ros.org/view/Ibin_uT64/job/Ibin_uT64__moveit_ros_benchmarks_gui__ubuntu_trusty_amd64__binary/10/console
I believe the root cause of this is that the "default_plugin" is no longer included in rviz's
_LIBRARIES
variable, butmoveit_ros_benchmark_gui
uses headers from the default plugin and so it needs to link against them. There is now a cmake variable calledrviz_DEFAULT_PLUGIN_LIBRARIES
which you can add to yourtarget_link_libraries
which will contain the default plugin. I recommend that this variable be used to fix the current compilation problems.See:
The text was updated successfully, but these errors were encountered: