Clone of official tools
export/embitz/__init__.py@36:96847d42f010, 2017-06-22 (annotated)
- Committer:
- The Other Jimmy
- Date:
- Thu Jun 22 11:12:28 2017 -0500
- Revision:
- 36:96847d42f010
- Parent:
- 35:da9c89f8be7d
- Child:
- 40:7d3fa6b99b2b
Tools release 5.5.1
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
The Other Jimmy |
35:da9c89f8be7d | 1 | """ |
The Other Jimmy |
35:da9c89f8be7d | 2 | mbed SDK |
The Other Jimmy |
35:da9c89f8be7d | 3 | Copyright (c) 2014-2016 ARM Limited |
The Other Jimmy |
35:da9c89f8be7d | 4 | |
The Other Jimmy |
35:da9c89f8be7d | 5 | Licensed under the Apache License, Version 2.0 (the "License"); |
The Other Jimmy |
35:da9c89f8be7d | 6 | you may not use this file except in compliance with the License. |
The Other Jimmy |
35:da9c89f8be7d | 7 | You may obtain a copy of the License at |
The Other Jimmy |
35:da9c89f8be7d | 8 | |
The Other Jimmy |
35:da9c89f8be7d | 9 | http://www.apache.org/licenses/LICENSE-2.0 |
The Other Jimmy |
35:da9c89f8be7d | 10 | |
The Other Jimmy |
35:da9c89f8be7d | 11 | Unless required by applicable law or agreed to in writing, software |
The Other Jimmy |
35:da9c89f8be7d | 12 | distributed under the License is distributed on an "AS IS" BASIS, |
The Other Jimmy |
35:da9c89f8be7d | 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
The Other Jimmy |
35:da9c89f8be7d | 14 | See the License for the specific language governing permissions and |
The Other Jimmy |
35:da9c89f8be7d | 15 | limitations under the License. |
The Other Jimmy |
35:da9c89f8be7d | 16 | """ |
The Other Jimmy |
35:da9c89f8be7d | 17 | from os.path import splitext, basename |
The Other Jimmy |
35:da9c89f8be7d | 18 | from tools.targets import TARGET_MAP |
The Other Jimmy |
36:96847d42f010 | 19 | from tools.export.exporters import Exporter, filter_supported |
The Other Jimmy |
36:96847d42f010 | 20 | |
The Other Jimmy |
36:96847d42f010 | 21 | |
The Other Jimmy |
36:96847d42f010 | 22 | POST_BINARY_WHITELIST = set([ |
The Other Jimmy |
36:96847d42f010 | 23 | "TEENSY3_1Code.binary_hook", |
The Other Jimmy |
36:96847d42f010 | 24 | "LPCTargetCode.lpc_patch", |
The Other Jimmy |
36:96847d42f010 | 25 | "LPC4088Code.binary_hook" |
The Other Jimmy |
36:96847d42f010 | 26 | ]) |
The Other Jimmy |
36:96847d42f010 | 27 | |
The Other Jimmy |
35:da9c89f8be7d | 28 | |
The Other Jimmy |
35:da9c89f8be7d | 29 | class EmBitz(Exporter): |
The Other Jimmy |
35:da9c89f8be7d | 30 | NAME = 'EmBitz' |
The Other Jimmy |
35:da9c89f8be7d | 31 | TOOLCHAIN = 'GCC_ARM' |
The Other Jimmy |
35:da9c89f8be7d | 32 | |
The Other Jimmy |
36:96847d42f010 | 33 | |
The Other Jimmy |
36:96847d42f010 | 34 | TARGETS = filter_supported("GCC_ARM", POST_BINARY_WHITELIST) |
The Other Jimmy |
35:da9c89f8be7d | 35 | |
The Other Jimmy |
35:da9c89f8be7d | 36 | MBED_CONFIG_HEADER_SUPPORTED = True |
The Other Jimmy |
35:da9c89f8be7d | 37 | |
The Other Jimmy |
35:da9c89f8be7d | 38 | FILE_TYPES = { |
The Other Jimmy |
35:da9c89f8be7d | 39 | 'headers': 'h', |
The Other Jimmy |
35:da9c89f8be7d | 40 | 'c_sources': 'c', |
The Other Jimmy |
35:da9c89f8be7d | 41 | 's_sources': 'a', |
The Other Jimmy |
35:da9c89f8be7d | 42 | 'cpp_sources': 'cpp' |
The Other Jimmy |
35:da9c89f8be7d | 43 | } |
The Other Jimmy |
35:da9c89f8be7d | 44 | |
The Other Jimmy |
35:da9c89f8be7d | 45 | |
The Other Jimmy |
35:da9c89f8be7d | 46 | @staticmethod |
The Other Jimmy |
35:da9c89f8be7d | 47 | def _remove_symbols(sym_list): |
The Other Jimmy |
35:da9c89f8be7d | 48 | return [s for s in sym_list if not s.startswith("-D")] |
The Other Jimmy |
35:da9c89f8be7d | 49 | |
The Other Jimmy |
35:da9c89f8be7d | 50 | def generate(self): |
The Other Jimmy |
35:da9c89f8be7d | 51 | self.resources.win_to_unix() |
The Other Jimmy |
35:da9c89f8be7d | 52 | source_files = [] |
The Other Jimmy |
35:da9c89f8be7d | 53 | for r_type, n in self.FILE_TYPES.iteritems(): |
The Other Jimmy |
35:da9c89f8be7d | 54 | for file in getattr(self.resources, r_type): |
The Other Jimmy |
35:da9c89f8be7d | 55 | source_files.append({ |
The Other Jimmy |
35:da9c89f8be7d | 56 | 'name': file, 'type': n |
The Other Jimmy |
35:da9c89f8be7d | 57 | }) |
The Other Jimmy |
35:da9c89f8be7d | 58 | |
The Other Jimmy |
35:da9c89f8be7d | 59 | libraries = [] |
The Other Jimmy |
35:da9c89f8be7d | 60 | for lib in self.resources.libraries: |
The Other Jimmy |
35:da9c89f8be7d | 61 | l, _ = splitext(basename(lib)) |
The Other Jimmy |
35:da9c89f8be7d | 62 | libraries.append(l[3:]) |
The Other Jimmy |
35:da9c89f8be7d | 63 | |
The Other Jimmy |
35:da9c89f8be7d | 64 | |
The Other Jimmy |
35:da9c89f8be7d | 65 | if self.resources.linker_script is None: |
The Other Jimmy |
35:da9c89f8be7d | 66 | self.resources.linker_script = '' |
The Other Jimmy |
35:da9c89f8be7d | 67 | |
The Other Jimmy |
35:da9c89f8be7d | 68 | ctx = { |
The Other Jimmy |
35:da9c89f8be7d | 69 | 'name': self.project_name, |
The Other Jimmy |
35:da9c89f8be7d | 70 | 'target': self.target, |
The Other Jimmy |
35:da9c89f8be7d | 71 | 'toolchain': self.toolchain.name, |
The Other Jimmy |
35:da9c89f8be7d | 72 | 'source_files': source_files, |
The Other Jimmy |
35:da9c89f8be7d | 73 | 'include_paths': self.resources.inc_dirs, |
The Other Jimmy |
35:da9c89f8be7d | 74 | 'script_file': self.resources.linker_script, |
The Other Jimmy |
35:da9c89f8be7d | 75 | 'library_paths': self.resources.lib_dirs, |
The Other Jimmy |
35:da9c89f8be7d | 76 | 'libraries': libraries, |
The Other Jimmy |
35:da9c89f8be7d | 77 | 'symbols': self.toolchain.get_symbols(), |
The Other Jimmy |
35:da9c89f8be7d | 78 | 'object_files': self.resources.objects, |
The Other Jimmy |
35:da9c89f8be7d | 79 | 'sys_libs': self.toolchain.sys_libs, |
The Other Jimmy |
35:da9c89f8be7d | 80 | 'cc_org': (self.flags['common_flags'] + |
The Other Jimmy |
35:da9c89f8be7d | 81 | self._remove_symbols(self.flags['c_flags'])), |
The Other Jimmy |
35:da9c89f8be7d | 82 | 'ld_org': self.flags['ld_flags'], |
The Other Jimmy |
35:da9c89f8be7d | 83 | 'cppc_org': (self.flags['common_flags'] + |
The Other Jimmy |
35:da9c89f8be7d | 84 | self._remove_symbols(self.flags['cxx_flags'])) |
The Other Jimmy |
35:da9c89f8be7d | 85 | } |
The Other Jimmy |
35:da9c89f8be7d | 86 | |
The Other Jimmy |
35:da9c89f8be7d | 87 | self.gen_file('embitz/eix.tmpl', ctx, '%s.eix' % self.project_name) |