Clone of official tools
export/e2studio/__init__.py@40:7d3fa6b99b2b, 2017-10-10 (annotated)
- Committer:
- theotherjimmy
- Date:
- Tue Oct 10 16:56:30 2017 -0500
- Revision:
- 40:7d3fa6b99b2b
- Parent:
- 35:da9c89f8be7d
- Child:
- 41:2a77626a4c21
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) 2011-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 | |
theotherjimmy |
40:7d3fa6b99b2b | 19 | from tools.export.exporters import Exporter, deprecated_exporter |
The Other Jimmy |
35:da9c89f8be7d | 20 | |
theotherjimmy |
40:7d3fa6b99b2b | 21 | @deprecated_exporter |
The Other Jimmy |
35:da9c89f8be7d | 22 | class E2Studio(Exporter): |
The Other Jimmy |
35:da9c89f8be7d | 23 | NAME = 'e2 studio' |
The Other Jimmy |
35:da9c89f8be7d | 24 | TOOLCHAIN = 'GCC_ARM' |
The Other Jimmy |
35:da9c89f8be7d | 25 | |
The Other Jimmy |
35:da9c89f8be7d | 26 | TARGETS = [ |
The Other Jimmy |
35:da9c89f8be7d | 27 | 'RZ_A1H', |
The Other Jimmy |
35:da9c89f8be7d | 28 | ] |
The Other Jimmy |
35:da9c89f8be7d | 29 | |
The Other Jimmy |
35:da9c89f8be7d | 30 | def generate(self): |
The Other Jimmy |
35:da9c89f8be7d | 31 | libraries = [] |
The Other Jimmy |
35:da9c89f8be7d | 32 | for lib in self.resources.libraries: |
The Other Jimmy |
35:da9c89f8be7d | 33 | l, _ = splitext(basename(lib)) |
The Other Jimmy |
35:da9c89f8be7d | 34 | libraries.append(l[3:]) |
The Other Jimmy |
35:da9c89f8be7d | 35 | |
The Other Jimmy |
35:da9c89f8be7d | 36 | ctx = { |
The Other Jimmy |
35:da9c89f8be7d | 37 | 'name': self.project_name, |
The Other Jimmy |
35:da9c89f8be7d | 38 | 'include_paths': self.resources.inc_dirs, |
The Other Jimmy |
35:da9c89f8be7d | 39 | 'linker_script': self.resources.linker_script, |
The Other Jimmy |
35:da9c89f8be7d | 40 | |
The Other Jimmy |
35:da9c89f8be7d | 41 | 'object_files': self.resources.objects, |
The Other Jimmy |
35:da9c89f8be7d | 42 | 'libraries': libraries, |
The Other Jimmy |
35:da9c89f8be7d | 43 | 'symbols': self.toolchain.get_symbols() |
The Other Jimmy |
35:da9c89f8be7d | 44 | } |
The Other Jimmy |
35:da9c89f8be7d | 45 | self.gen_file('e2studio/%s_project.tmpl' % self.target.lower(), ctx, '.project') |
The Other Jimmy |
35:da9c89f8be7d | 46 | self.gen_file('e2studio/%s_cproject.tmpl' % self.target.lower(), ctx, '.cproject') |
The Other Jimmy |
35:da9c89f8be7d | 47 | self.gen_file('e2studio/%s_gdbinit.tmpl' % self.target.lower(), ctx, '.gdbinit') |
The Other Jimmy |
35:da9c89f8be7d | 48 | self.gen_file('e2studio/launch.tmpl', ctx, '%s OpenOCD.launch' % self.project_name) |