mbed-os
Fork of mbed-os by
tools/data/support.py@1:3deb71413561, 2017-07-20 (annotated)
- Committer:
- xuaner
- Date:
- Thu Jul 20 14:26:57 2017 +0000
- Revision:
- 1:3deb71413561
- Parent:
- 0:f269e3021894
mbed_os
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
elessair | 0:f269e3021894 | 1 | """ |
elessair | 0:f269e3021894 | 2 | mbed SDK |
elessair | 0:f269e3021894 | 3 | Copyright (c) 2011-2013 ARM Limited |
elessair | 0:f269e3021894 | 4 | |
elessair | 0:f269e3021894 | 5 | Licensed under the Apache License, Version 2.0 (the "License"); |
elessair | 0:f269e3021894 | 6 | you may not use this file except in compliance with the License. |
elessair | 0:f269e3021894 | 7 | You may obtain a copy of the License at |
elessair | 0:f269e3021894 | 8 | |
elessair | 0:f269e3021894 | 9 | http://www.apache.org/licenses/LICENSE-2.0 |
elessair | 0:f269e3021894 | 10 | |
elessair | 0:f269e3021894 | 11 | Unless required by applicable law or agreed to in writing, software |
elessair | 0:f269e3021894 | 12 | distributed under the License is distributed on an "AS IS" BASIS, |
elessair | 0:f269e3021894 | 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
elessair | 0:f269e3021894 | 14 | See the License for the specific language governing permissions and |
elessair | 0:f269e3021894 | 15 | limitations under the License. |
elessair | 0:f269e3021894 | 16 | """ |
elessair | 0:f269e3021894 | 17 | from tools.targets import TARGETS |
elessair | 0:f269e3021894 | 18 | |
elessair | 0:f269e3021894 | 19 | DEFAULT_SUPPORT = {} |
elessair | 0:f269e3021894 | 20 | CORTEX_ARM_SUPPORT = {} |
elessair | 0:f269e3021894 | 21 | |
elessair | 0:f269e3021894 | 22 | for target in TARGETS: |
elessair | 0:f269e3021894 | 23 | DEFAULT_SUPPORT[target.name] = target.supported_toolchains |
elessair | 0:f269e3021894 | 24 | |
elessair | 0:f269e3021894 | 25 | if target.core.startswith('Cortex'): |
elessair | 0:f269e3021894 | 26 | CORTEX_ARM_SUPPORT[target.name] = [t for t in target.supported_toolchains |
elessair | 0:f269e3021894 | 27 | if (t=='ARM' or t=='uARM')] |