ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
Since message serializers/deserializers in c++ are completely defined in header files, the corresponding (empty) libraries were removed in the most recent update. Howerver, the cmake build system didn't catch that. Just do a make clean in ~/dlr/ros_workspace
and make
again.
2 | No.2 Revision |
Since message serializers/deserializers in c++ are completely defined in header files, the corresponding (empty) libraries were removed in the most recent update. Howerver, the cmake build system didn't catch that. Just do a make clean in ~/dlr/ros_workspace
and make
again.again. To be sure to really update all packages, including dependencies, you can also use rosmake --pre-clean
. This will execute make clean
in each dependency before rosmaking.
3 | No.3 Revision |
Since message serializers/deserializers in c++ are completely defined in header files, the corresponding (empty) libraries were removed in the most recent update. Howerver, the cmake build system didn't catch that. Just do a make clean in
and ~/dlr/ros_workspace~/dlr/ros_workspace/OpticalFlowmake
again. To be sure to really update all packages, including dependencies, you can also use rosmake --pre-clean
. This will execute make clean
in each dependency before rosmaking.