Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
export/embitz/__init__.py@40:7d3fa6b99b2b, 2017-10-10 (annotated)
- Committer:
- theotherjimmy 
- Date:
- Tue Oct 10 16:56:30 2017 -0500
- Revision:
- 40:7d3fa6b99b2b
- Parent:
- 36:96847d42f010
- Child:
- 43:2a7da56ebd24
Update to tools release 5.6.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 | 
| theotherjimmy | 40:7d3fa6b99b2b | 19 | from tools.export.exporters import Exporter, apply_supported_whitelist | 
| 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 | 35:da9c89f8be7d | 33 | MBED_CONFIG_HEADER_SUPPORTED = True | 
| The Other Jimmy | 35:da9c89f8be7d | 34 | |
| The Other Jimmy | 35:da9c89f8be7d | 35 | FILE_TYPES = { | 
| The Other Jimmy | 35:da9c89f8be7d | 36 | 'headers': 'h', | 
| The Other Jimmy | 35:da9c89f8be7d | 37 | 'c_sources': 'c', | 
| The Other Jimmy | 35:da9c89f8be7d | 38 | 's_sources': 'a', | 
| The Other Jimmy | 35:da9c89f8be7d | 39 | 'cpp_sources': 'cpp' | 
| The Other Jimmy | 35:da9c89f8be7d | 40 | } | 
| The Other Jimmy | 35:da9c89f8be7d | 41 | |
| theotherjimmy | 40:7d3fa6b99b2b | 42 | @classmethod | 
| theotherjimmy | 40:7d3fa6b99b2b | 43 | def is_target_supported(cls, target_name): | 
| theotherjimmy | 40:7d3fa6b99b2b | 44 | target = TARGET_MAP[target_name] | 
| theotherjimmy | 40:7d3fa6b99b2b | 45 | return apply_supported_whitelist( | 
| theotherjimmy | 40:7d3fa6b99b2b | 46 | cls.TOOLCHAIN, POST_BINARY_WHITELIST, target) | 
| The Other Jimmy | 35:da9c89f8be7d | 47 | |
| The Other Jimmy | 35:da9c89f8be7d | 48 | @staticmethod | 
| The Other Jimmy | 35:da9c89f8be7d | 49 | def _remove_symbols(sym_list): | 
| The Other Jimmy | 35:da9c89f8be7d | 50 | return [s for s in sym_list if not s.startswith("-D")] | 
| The Other Jimmy | 35:da9c89f8be7d | 51 | |
| The Other Jimmy | 35:da9c89f8be7d | 52 | def generate(self): | 
| The Other Jimmy | 35:da9c89f8be7d | 53 | self.resources.win_to_unix() | 
| The Other Jimmy | 35:da9c89f8be7d | 54 | source_files = [] | 
| The Other Jimmy | 35:da9c89f8be7d | 55 | for r_type, n in self.FILE_TYPES.iteritems(): | 
| The Other Jimmy | 35:da9c89f8be7d | 56 | for file in getattr(self.resources, r_type): | 
| The Other Jimmy | 35:da9c89f8be7d | 57 | source_files.append({ | 
| The Other Jimmy | 35:da9c89f8be7d | 58 | 'name': file, 'type': n | 
| The Other Jimmy | 35:da9c89f8be7d | 59 | }) | 
| The Other Jimmy | 35:da9c89f8be7d | 60 | |
| The Other Jimmy | 35:da9c89f8be7d | 61 | libraries = [] | 
| The Other Jimmy | 35:da9c89f8be7d | 62 | for lib in self.resources.libraries: | 
| The Other Jimmy | 35:da9c89f8be7d | 63 | l, _ = splitext(basename(lib)) | 
| The Other Jimmy | 35:da9c89f8be7d | 64 | libraries.append(l[3:]) | 
| The Other Jimmy | 35:da9c89f8be7d | 65 | |
| The Other Jimmy | 35:da9c89f8be7d | 66 | |
| The Other Jimmy | 35:da9c89f8be7d | 67 | if self.resources.linker_script is None: | 
| The Other Jimmy | 35:da9c89f8be7d | 68 | self.resources.linker_script = '' | 
| The Other Jimmy | 35:da9c89f8be7d | 69 | |
| The Other Jimmy | 35:da9c89f8be7d | 70 | ctx = { | 
| The Other Jimmy | 35:da9c89f8be7d | 71 | 'name': self.project_name, | 
| The Other Jimmy | 35:da9c89f8be7d | 72 | 'target': self.target, | 
| The Other Jimmy | 35:da9c89f8be7d | 73 | 'toolchain': self.toolchain.name, | 
| The Other Jimmy | 35:da9c89f8be7d | 74 | 'source_files': source_files, | 
| The Other Jimmy | 35:da9c89f8be7d | 75 | 'include_paths': self.resources.inc_dirs, | 
| The Other Jimmy | 35:da9c89f8be7d | 76 | 'script_file': self.resources.linker_script, | 
| The Other Jimmy | 35:da9c89f8be7d | 77 | 'library_paths': self.resources.lib_dirs, | 
| The Other Jimmy | 35:da9c89f8be7d | 78 | 'libraries': libraries, | 
| The Other Jimmy | 35:da9c89f8be7d | 79 | 'symbols': self.toolchain.get_symbols(), | 
| The Other Jimmy | 35:da9c89f8be7d | 80 | 'object_files': self.resources.objects, | 
| The Other Jimmy | 35:da9c89f8be7d | 81 | 'sys_libs': self.toolchain.sys_libs, | 
| The Other Jimmy | 35:da9c89f8be7d | 82 | 'cc_org': (self.flags['common_flags'] + | 
| The Other Jimmy | 35:da9c89f8be7d | 83 | self._remove_symbols(self.flags['c_flags'])), | 
| The Other Jimmy | 35:da9c89f8be7d | 84 | 'ld_org': self.flags['ld_flags'], | 
| The Other Jimmy | 35:da9c89f8be7d | 85 | 'cppc_org': (self.flags['common_flags'] + | 
| The Other Jimmy | 35:da9c89f8be7d | 86 | self._remove_symbols(self.flags['cxx_flags'])) | 
| The Other Jimmy | 35:da9c89f8be7d | 87 | } | 
| The Other Jimmy | 35:da9c89f8be7d | 88 | |
| The Other Jimmy | 35:da9c89f8be7d | 89 | self.gen_file('embitz/eix.tmpl', ctx, '%s.eix' % self.project_name) | 
