summaryrefslogtreecommitdiff
path: root/src/compiler/SConscript.nir
blob: 41c67941f51b4b60512c27d1763536ada10f8750 (plain)
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
import common

Import('*')

from sys import executable as python_cmd

env = env.Clone()

env.MSVC2013Compat()

env.Prepend(CPPPATH = [
    '#include',
    '#src',
    '#src/mapi',
    '#src/mesa',
    '#src/gallium/include',
    '#src/gallium/auxiliary',
    '#src/compiler/nir',
])

# Make generated headers reachable from the include path.
env.Prepend(CPPPATH = [Dir('.').abspath, Dir('glsl').abspath])
env.Prepend(CPPPATH = [Dir('.').abspath, Dir('nir').abspath])

# nir generated sources

nir_builder_opcodes_h = env.CodeGenerate(
    target = 'nir/nir_builder_opcodes.h',
    script = 'nir/nir_builder_opcodes_h.py',
    source = [],
    command = python_cmd + ' $SCRIPT > $TARGET'
)

env.CodeGenerate(
    target = 'nir/nir_constant_expressions.c',
    script = 'nir/nir_constant_expressions.py',
    source = [],
    command = python_cmd + ' $SCRIPT > $TARGET'
)

env.CodeGenerate(
    target = 'nir/nir_opcodes.h',
    script = 'nir/nir_opcodes_h.py',
    source = [],
    command = python_cmd + ' $SCRIPT > $TARGET'
)

env.CodeGenerate(
    target = 'nir/nir_opcodes.c',
    script = 'nir/nir_opcodes_c.py',
    source = [],
    command = python_cmd + ' $SCRIPT > $TARGET'
)

env.CodeGenerate(
    target = 'nir/nir_opt_algebraic.c',
    script = 'nir/nir_opt_algebraic.py',
    source = [],
    command = python_cmd + ' $SCRIPT > $TARGET'
)

bldroot = Dir('.').abspath

env.CodeGenerate(
    target = 'nir/nir_intrinsics.h',
    script = 'nir/nir_intrinsics_h.py',
    source = [],
    command = python_cmd + ' $SCRIPT --outdir ' + bldroot + '/nir'
)

env.CodeGenerate(
    target = 'nir/nir_intrinsics.c',
    script = 'nir/nir_intrinsics_c.py',
    source = [],
    command = python_cmd + ' $SCRIPT --outdir ' + bldroot + '/nir'
)

# parse Makefile.sources
source_lists = env.ParseSourceList('Makefile.sources')

nir_sources = source_lists['NIR_FILES']
nir_sources += source_lists['NIR_GENERATED_FILES']

nir = env.ConvenienceLibrary(
    target = 'nir',
    source = nir_sources,
)

env.Alias('nir', nir)
Export('nir')