summaryrefslogtreecommitdiffstats
path: root/tools/gdb/python/wscript
blob: 0cb5bb8b6529117917649365fadc694e4b01ecab (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#
# Install the RTEMS gdb python
#

def options(opt):
    opt.load('python')

def configure(conf):
    conf.load('python')
    conf.check_python_version((2,7,3))

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')