ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question
2

undefined reference to `ros::Publisher::isLatched() const

asked 2012-08-27 18:54:28 -0500

fabiodl gravatar image

updated 2012-08-27 20:35:05 -0500

Is the method not implemented or am I missing something in the linking?

(rosccp)

ros fuerte on ubuntu 12.04

cmake_minimum_required(VERSION 2.4.6)
include($ENV{ROS_ROOT}/core/rosbuild/rosbuild.cmake)

# Set the build type.  Options are:
#  Coverage       : w/ debug symbols, w/o optimization, w/ code-coverage
#  Debug          : w/ debug symbols, w/o optimization
#  Release        : w/o debug symbols, w/ optimization
#  RelWithDebInfo : w/ debug symbols, w/ optimization
#  MinSizeRel     : w/o debug symbols, w/ optimization, stripped binaries
#set(ROS_BUILD_TYPE RelWithDebInfo)

rosbuild_init()

#set the default path for built executables to the "bin" directory
set(EXECUTABLE_OUTPUT_PATH ${PROJECT_SOURCE_DIR}/bin)
#set the default path for built libraries to the "lib" directory
set(LIBRARY_OUTPUT_PATH ${PROJECT_SOURCE_DIR}/lib)

#uncomment if you have defined messages
rosbuild_genmsg()
#uncomment if you have defined services
rosbuild_gensrv()

#common commands for building c++ executables and libraries
#rosbuild_add_library(${PROJECT_NAME} src/example.cpp)
#target_link_libraries(${PROJECT_NAME} another_library)
#rosbuild_add_boost_directories()
#rosbuild_link_boost(${PROJECT_NAME} thread)
#rosbuild_add_executable(example examples/example.cpp)
#target_link_libraries(example ${PROJECT_NAME})
rosbuild_add_executable(talker src/talker.cpp)
rosbuild_add_executable(listener src/listener.cpp)
rosbuild_add_executable(add_two_ints_server src/add_two_ints_server.cpp)
rosbuild_add_executable(add_two_ints_client src/add_two_ints_client.cpp)

manifest

<package>
  <description brief="beginner_tutorials">

     beginner_tutorials

  </description>
  <author>fabio</author>
  <license>BSD</license>
  <review status="unreviewed" notes=""/>
  <url>http://ros.org/wiki/beginner_tutorials</url>
  <depend package="std_msgs"/>
  <depend package="rospy"/>
  <depend package="roscpp"/>

</package>
edit retag flag offensive close merge delete

Comments

1

Could you include the version of ROS you are using, your Ubuntu version, your manifest.xml file and your CMakeLists.txt ?

Eric Perko gravatar image Eric Perko  ( 2012-08-27 20:28:00 -0500 )edit

Please also copy-paste the complete error output.

Lorenz gravatar image Lorenz  ( 2012-08-27 23:21:44 -0500 )edit

1 Answer

Sort by ยป oldest newest most voted
3

answered 2012-08-28 09:07:14 -0500

mjcarroll gravatar image

It appears that this may actually be a bug, as I was able to reproduce it on my Fuerte/12.04 install as well.

It seems that while it is documented in the API, and there is a declaration in the header file, but it does not seem that the method is actually implemented anywhere. This explains why you would see a linker error.

I filed a ticket on code.ros.org so that this can get resolved.

edit flag offensive delete link more

Comments

1

New location of the ticket and patch: https://github.com/ros/ros_comm/pull/1

WilliamWoodall gravatar image WilliamWoodall  ( 2012-08-28 10:55:28 -0500 )edit

Question Tools

Stats

Asked: 2012-08-27 18:54:28 -0500

Seen: 628 times

Last updated: Aug 28 '12