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

Rufio's profile - activity

2018-03-08 09:35:31 -0500 received badge  Good Question (source)
2017-02-10 11:33:07 -0500 received badge  Nice Question (source)
2017-02-01 16:59:26 -0500 received badge  Student (source)
2015-05-06 10:29:55 -0500 received badge  Famous Question (source)
2015-04-17 07:13:10 -0500 received badge  Famous Question (source)
2015-02-27 14:54:00 -0500 received badge  Famous Question (source)
2015-02-02 03:49:17 -0500 received badge  Notable Question (source)
2014-12-30 00:32:58 -0500 received badge  Notable Question (source)
2014-12-29 16:35:30 -0500 received badge  Popular Question (source)
2014-12-29 16:21:57 -0500 received badge  Scholar (source)
2014-12-29 16:21:56 -0500 received badge  Supporter (source)
2014-12-29 11:17:10 -0500 received badge  Popular Question (source)
2014-12-29 08:25:22 -0500 received badge  Editor (source)
2014-12-29 08:23:50 -0500 commented answer How to debug executable, built with catkin_make (without roslaunch)

thanks for the answer. I want to do it without using roslaunch because i have some unresolved problems with roslaunch (i will edit that in the title) by using

gdb binary

i was not able to add some breakpoints and so on.

2014-12-29 05:55:40 -0500 asked a question How to debug executable, built with catkin_make (without roslaunch)

Hi,

in my project i built several executables with catkin_make and i want to debug it (e.g. with gdb). Usually when building with gcc one can just add the the argument -g. Is there similar why for catkin such that i can debug the executables afterwards with gdb and without using roslaunch?

I have tried starting gdb directly with the executable but it says no debugging symbols found.

I have also tried to do set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -g -O0 -std=c++11 -march=native" ) without success.

I haven't found anything regarding this on the internet so far. Thanks for helping

2014-12-29 05:41:46 -0500 asked a question roslaunch does not work but rusrun does

Hi,

When starting my node "test_node" from the package "test_pck" with rosrun, everything works fine. Now i have written following launchfile named test.launch which i have placed in src/launch/

<launch>
<group ns="test">
  <node pkg="test_pck" name="test_name" type="test_node"/>
</group>
</launch>

however if i run "roslaunch test_pck test.launch" i gett following error in the terminal:

Traceback (most recent call last):
File "/opt/ros/indigo/bin/roslaunch", line 34, in <module>
import roslaunch
File "/opt/ros/indigo/lib/python2.7/dist-packages/roslaunch/__init__.py", line 61, in <module>
from .scriptapi import ROSLaunch
File "/opt/ros/indigo/lib/python2.7/dist-packages/roslaunch/scriptapi.py", line 42, in <module>
import roslaunch.parent
File "/opt/ros/indigo/lib/python2.7/dist-packages/roslaunch/parent.py", line 54, in <module>
import roslaunch.server
File "/opt/ros/indigo/lib/python2.7/dist-packages/roslaunch/server.py", line 78, in <module>
from rosgraph_msgs.msg import Log
File "/opt/ros/indigo/lib/python2.7/dist-packages/rosgraph_msgs/msg/__init__.py", line 2, in <module>
from ._Log import *
File "/opt/ros/indigo/lib/python2.7/dist-packages/rosgraph_msgs/msg/_Log.py", line 7, in <module>
import std_msgs.msg
ImportError: No module named msg

The terminal output of rospack find std_msgs is /opt/ros/indigo/share/std_msgs

I have absolutely now clue what i can do in order to solve this problem. Thank you for every hint!

2014-11-10 10:32:39 -0500 received badge  Notable Question (source)
2014-11-10 06:13:46 -0500 answered a question catkin_make fails - Undefined symbols for architecture x86_64

Hi William,

thank you for the answer. It is very strange: when i do "catkin_make" with ubuntu on my virtual machine, it works without any error :). So it must be anything with my system. Unfortunately it is a project from my university and i most probably are not allowed to share any files :(. Could it be that it is an error which arise only for mac osx (10.10)?

2014-11-10 02:39:40 -0500 received badge  Popular Question (source)
2014-11-07 05:44:53 -0500 asked a question catkin_make fails - Undefined symbols for architecture x86_64

Hi,

i am struggling the last few days and tried many things out which i've found on the web. My problem is to build with catkin_make. I am quite new to all this stuff and have absolutely no clue what to do. Would be very happy if anybody can help me.

i get following error


Undefined symbols for architecture x86_64:
"dircol<Dimensions<10ul, 3ul> >::setFinalState(Eigen::Matrix<double, 10, 1, 0, 10, 1>)", referenced from:
  _main in dircol_rezero_ipopt.cpp.o
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
make[3]: *** [/Users/lukasmoller/catkin_ws/devel/lib/dircol/dircol_rezero_ipopt] Error 1
make[2]: *** [CMakeFiles/dircol_rezero_ipopt.dir/all] Error 2
make[1]: *** [CMakeFiles/dircol_rezero_ipopt.dir/rule] Error 2
make: *** [dircol_rezero_ipopt] Error 2
Invoking "make" failed

Thanks very much