ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
It looks like a linker error specific to c++11, and since ROS Kinetic the kdl_parser has enabled -std=c++11 flags for compilation. Try adding this line to the CMakeLists.txt
file in the package you're trying to build your file from:
add_compile_options(-std=c++11)