4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-02-22 00:25:24 +08:00

fix lwp SConscript的头文件目录为空的问题;lwp把arm9改名成arm926

This commit is contained in:
shaojinchun 2019-03-14 17:25:04 +08:00
parent 159def753f
commit b225764b84
2 changed files with 2 additions and 2 deletions

View File

@ -3,9 +3,9 @@ from building import *
cwd = GetCurrentDir() cwd = GetCurrentDir()
src = [] src = []
CPPPATH = [] CPPPATH = [cwd]
support_arch = {"arm": ["cortex-m3", "cortex-m4", "cortex-m7", "arm9", "cortex-a9"]} support_arch = {"arm": ["cortex-m3", "cortex-m4", "cortex-m7", "arm926", "cortex-a9"]}
platform_file = {'armcc': 'rvds.S', 'gcc': 'gcc.S', 'iar': 'iar.S'} platform_file = {'armcc': 'rvds.S', 'gcc': 'gcc.S', 'iar': 'iar.S'}
if rtconfig.PLATFORM in platform_file.keys(): # support platforms if rtconfig.PLATFORM in platform_file.keys(): # support platforms