ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
Hi again,
It seems to be a bug in the ubuntu package update. I found the topic here https://bugs.launchpad.net/ubuntu/+source/gdb/+bug/952999
I modified the above file "/usr/share/gdb/auto-load/usr/lib/i386-linux-gnu/libstdc++.so.6.0.19-gdb.py" (as in gdb error, not the link) as #9 suggested:
Replace dir_ = os.path.join (os.path.dirname (objfile), dotdots, pythondir) by dir_ = os.path.join (os.path.dirname (objfile), dotdots, dotdots, pythondir)
and it worked somehow.
Hope it helps!
2 | No.2 Revision |
Hi again,
It seems to be a bug in the ubuntu package update. I found the topic here https://bugs.launchpad.net/ubuntu/+source/gdb/+bug/952999
I modified the above file "/usr/share/gdb/auto-load/usr/lib/i386-linux-gnu/libstdc++.so.6.0.19-gdb.py" (as in gdb error, not the link) as #9 suggested:
Replace
Replace
dir_ = os.path.join (os.path.dirname (objfile), dotdots, pythondir)by
by
dir_ = os.path.join (os.path.dirname (objfile), dotdots, dotdots,
pythondir)pythondir)
and it worked somehow.
Hope it helps!