You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 9, 2019. It is now read-only.
I'm getting a symbol lookup error when trying to run the robot_state_publisher node on the nightly build.
[INFO] [launch]: process[robot_state_publisher-1]: started with pid [1868]
/opt/ros/crystal/lib/robot_state_publisher/robot_state_publisher: symbol lookup error: /opt/ros/crystal/lib/robot_state_publisher/robot_state_publisher: undefined symbol: _ZN6rclcpp4NodeC1ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEERKNS_11NodeOptionsE
I suspect that this relates to ros2/rclcpp#492 and the recent merge that adds support for NodeOptions.
Got it working on my fork by using rcutils_cli_get_option instaid of reading argv[1] directly.
This change requires the command line options to be -f filename instead of just filename, so will cause existing launch files to stop working.
(https://github.com/DynoRobotics/robot_state_publisher/tree/command-line-options)
The text was updated successfully, but these errors were encountered:
samiamlabs
changed the title
Command line options on nightly build
Command line options
Feb 16, 2019
If you'd like to submit a PR to add this functionality, that would be great. Otherwise, I'm going to do some refactoring of robot_state_publisher in the not-too-distant future, so I'll do it then.
Hi,
I'm getting a symbol lookup error when trying to run the robot_state_publisher node on the nightly build.
I suspect that this relates to ros2/rclcpp#492 and the recent merge that adds support for NodeOptions.
Got it working on my fork by using
rcutils_cli_get_option
instaid of reading argv[1] directly.This change requires the command line options to be
-f filename
instead of justfilename
, so will cause existing launch files to stop working.(https://github.com/DynoRobotics/robot_state_publisher/tree/command-line-options)
The text was updated successfully, but these errors were encountered: