1 | import re |
---|
2 | import os.path |
---|
3 | from waflib import TaskGen, Task |
---|
4 | from waflib.Context import STDOUT |
---|
5 | from waflib.Utils import O644 |
---|
6 | |
---|
7 | class gen_sym_file(Task.Task): |
---|
8 | color = 'BLUE' |
---|
9 | inst_to = '${LIBDIR}' |
---|
10 | def run(self): |
---|
11 | syms = {} |
---|
12 | reg = getattr(self.generator, 'export_symbols_regex','.+?') |
---|
13 | if 'msvc' in self.env.CC_NAME: |
---|
14 | outputs = [x.abspath() for x in self.generator.link_task.outputs] |
---|
15 | binary_path = list(filter(lambda x: x.endswith('lib'), outputs))[0] |
---|
16 | reg_compiled = re.compile(r'External\s+\|\s+(?P<symbol>%s)\b' % reg) |
---|
17 | cmd =(self.env.LINK_CC) + ['/dump', '/symbols', binary_path] |
---|
18 | else: # using gcc? assume we have nm |
---|
19 | outputs = [x.abspath() for x in self.generator.link_task.outputs] |
---|
20 | binary_path = list(filter(lambda x: x.endswith('dll'), outputs))[0] |
---|
21 | reg_compiled = re.compile(r'(T|D)\s+_(?P<symbol>%s)\b'%reg) |
---|
22 | cmd = (self.env.NM or ['nm']) + ['-g', binary_path] |
---|
23 | dump_output = self.generator.bld.cmd_and_log(cmd, quiet=STDOUT) |
---|
24 | syms = set([]) |
---|
25 | for m in reg_compiled.finditer(dump_output): |
---|
26 | syms.add(m.group('symbol')) |
---|
27 | syms = list(syms) |
---|
28 | syms.sort() |
---|
29 | self.outputs[0].write('EXPORTS\n'+'\n'.join(syms)) |
---|
30 | |
---|
31 | @TaskGen.feature('gensyms') |
---|
32 | @TaskGen.after_method('process_source','process_use','apply_link','process_uselib_local','propagate_uselib_vars') |
---|
33 | def gen_symbols(self): |
---|
34 | #sym_file = self.path.find_or_declare(self.target + '.def') |
---|
35 | sym_file_name = os.path.splitext(self.link_task.outputs[0].abspath())[0] + '.def' |
---|
36 | sym_file = self.path.find_or_declare(sym_file_name) |
---|
37 | symtask = self.create_task('gen_sym_file', self.link_task.outputs, sym_file) |
---|
38 | self.add_install_files(install_to=self.link_task.inst_to, install_from=sym_file, |
---|
39 | chmod=O644, task=self.link_task) |
---|
40 | |
---|