33 lines
779 B
Python

#
# Install the RTEMS gdb python
#
def options(opt):
opt.load('python')
def configure(conf):
conf.load('python')
conf.check_python_version((2,6,6))
def build(bld):
source = ['__init__.py',
'chains.py',
'classic.py',
'classic_printer.py',
'configuration.py',
'heaps.py',
'helper.py',
'main.py',
'objects.py',
'percpu.py',
'pretty.py',
'rtems.py',
'sparc.py',
'supercore.py',
'supercore_printer.py',
'threads.py',
'watchdog.py']
bld(features = 'py',
source = source,
install_path = '${PREFIX}/share/gdb/python/rtems')