-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathextract.py
55 lines (37 loc) · 1.15 KB
/
extract.py
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
from SCons.Script import *
########################################################################
def check_nonempty(target, source, env):
for needed in target:
if needed.getsize() == 0:
return '"%s" is empty' % needed
extract_action = Action([
'$extract_section $section $SOURCE >$TARGET',
check_nonempty,
])
def extract_emitter(target, source, env):
[target] = target
target = [File(target.name, 'share')]
return target, source
extract_sites_builder = Builder(
emitter=extract_emitter,
single_source=True,
action=extract_action,
section='.debug_site_info',
suffix='sites',
)
extract_implications_builder = Builder(
single_source=True,
action=extract_action,
section='.debug_sampler_implications',
suffix='implications',
)
########################################################################
def generate(env):
env.AppendUnique(
BUILDERS = {
'ExtractImplications': extract_implications_builder,
'ExtractSites': extract_sites_builder,
},
)
def exists(env):
return env['$extract_section']