This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 209849 - Simplify pretty printing support setup
Summary: Simplify pretty printing support setup
Status: NEW
Alias: None
Product: cnd
Classification: Unclassified
Component: Debugger (show other bugs)
Version: 7.2
Hardware: All All
: P3 normal (vote)
Assignee: Maria Tishkova
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-03-21 12:09 UTC by Egor Ushakov
Modified: 2016-07-06 14:38 UTC (History)
2 users (show)

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Egor Ushakov 2012-03-21 12:09:48 UTC
Now users need to install scripts by hand
Comment 1 soldatov 2013-06-20 12:36:02 UTC
(In reply to comment #0)
> Now users need to install scripts by hand
In most cases maintainers ships gcc with "libstdcxx" scripts
For example:

Solaris - /opt/csw/share/gcc-4.8.0/python/libstdcxx
Cygwin - C:\cygwin\share\gcc-4.5.3\python\libstdcxx
MinGW - C:\MinGW\share\gcc-4.6.2\python\libstdcxx
Comment 2 soldatov 2013-06-20 13:04:28 UTC
On Ubuntu some packages should be installed (http://packages.ubuntu.com/quantal/amd64/libstdc++6-4.7-dbg/filelist ??)
Comment 3 soldatov 2013-06-20 13:46:43 UTC
How to install "pretty printing support" on Ubuntu 12.10 (amd64):
- Install scripts: sudo apt-get install libstdc++6-4.7-dbg
- Create ~/.gdbinit file with such text:
python
import sys
sys.path.insert(0, '/usr/share/gcc-4.7/python')
from libstdcxx.v6.printers import register_libstdcxx_printers
register_libstdcxx_printers (None)
end