[SConscript] change libcpu to LIBARCH,and correcte letter case

This commit is contained in:
yangjie11
2020-11-30 15:45:58 +08:00
parent bec364385c
commit ba83ddc3c4
80 changed files with 80 additions and 80 deletions

View File

@@ -8,6 +8,6 @@ CPPPATH = [cwd]
if rtconfig.PLATFORM == 'gcc': if rtconfig.PLATFORM == 'gcc':
src += Glob('*_gcc.S') src += Glob('*_gcc.S')
group = DefineGroup('Libcpu', src, depend = [''], CPPPATH = CPPPATH) group = DefineGroup('LIBARCH', src, depend = [''], CPPPATH = CPPPATH)
Return('group') Return('group')

View File

@@ -4,6 +4,6 @@ cwd = GetCurrentDir()
src = Glob('*.c') + Glob('*.cpp') + Glob('*_gcc.S') src = Glob('*.c') + Glob('*.cpp') + Glob('*_gcc.S')
CPPPATH = [cwd] CPPPATH = [cwd]
group = DefineGroup('Libcpu', src, depend = [''], CPPPATH = CPPPATH) group = DefineGroup('LIBARCH', src, depend = [''], CPPPATH = CPPPATH)
Return('group') Return('group')

View File

@@ -4,6 +4,6 @@ cwd = GetCurrentDir()
src = Glob('*.c') + Glob('*.cpp') + Glob('*_gcc.S') src = Glob('*.c') + Glob('*.cpp') + Glob('*_gcc.S')
CPPPATH = [cwd] CPPPATH = [cwd]
group = DefineGroup('Libcpu', src, depend = [''], CPPPATH = CPPPATH) group = DefineGroup('LIBARCH', src, depend = [''], CPPPATH = CPPPATH)
Return('group') Return('group')

View File

@@ -15,6 +15,6 @@ if rtconfig.CROSS_TOOL == 'gcc':
elif rtconfig.CROSS_TOOL == 'keil': elif rtconfig.CROSS_TOOL == 'keil':
LOCAL_CCFLAGS += ' --c99' LOCAL_CCFLAGS += ' --c99'
group = DefineGroup('Fal', src, depend = ['PKG_USING_FAL'], CPPPATH = CPPPATH, LOCAL_CCFLAGS = LOCAL_CCFLAGS) group = DefineGroup('FAL', src, depend = ['PKG_USING_FAL'], CPPPATH = CPPPATH, LOCAL_CCFLAGS = LOCAL_CCFLAGS)
Return('group') Return('group')

View File

@@ -13,7 +13,7 @@ CPPPATH = [cwd + "/include"]
if GetDepend('RT_USING_POSIX'): if GetDepend('RT_USING_POSIX'):
src += ['src/poll.c', 'src/select.c'] src += ['src/poll.c', 'src/select.c']
group = DefineGroup('Filesystem', src, depend = ['RT_USING_DFS'], CPPPATH = CPPPATH) group = DefineGroup('FileSystem', src, depend = ['RT_USING_DFS'], CPPPATH = CPPPATH)
if GetDepend('RT_USING_DFS'): if GetDepend('RT_USING_DFS'):
# search in the file system implementation # search in the file system implementation

View File

@@ -6,6 +6,6 @@ cwd = GetCurrentDir()
src = Glob('*.c') src = Glob('*.c')
CPPPATH = [cwd] CPPPATH = [cwd]
group = DefineGroup('Filesystem', src, depend = ['RT_USING_DFS', 'RT_USING_DFS_DEVFS'], CPPPATH = CPPPATH) group = DefineGroup('FileSystem', src, depend = ['RT_USING_DFS', 'RT_USING_DFS_DEVFS'], CPPPATH = CPPPATH)
Return('group') Return('group')

View File

@@ -21,6 +21,6 @@ if GetDepend('RT_DFS_ELM_USE_LFN'):
else: else:
src += ['option/ccsbcs.c'] src += ['option/ccsbcs.c']
group = DefineGroup('Filesystem', src, depend = ['RT_USING_DFS', 'RT_USING_DFS_ELMFAT'], CPPPATH = CPPPATH) group = DefineGroup('FileSystem', src, depend = ['RT_USING_DFS', 'RT_USING_DFS_ELMFAT'], CPPPATH = CPPPATH)
Return('group') Return('group')

View File

@@ -45,6 +45,6 @@ src/write.c
CPPPATH = [cwd, cwd + '/include', cwd + '/src', cwd + '/cyg', cwd + '/kernel', cwd + '/cyg/compress'] CPPPATH = [cwd, cwd + '/include', cwd + '/src', cwd + '/cyg', cwd + '/kernel', cwd + '/cyg/compress']
group = DefineGroup('Filesystem', src, depend = ['RT_USING_DFS', 'RT_USING_DFS_JFFS2'], CPPPATH = CPPPATH) group = DefineGroup('FileSystem', src, depend = ['RT_USING_DFS', 'RT_USING_DFS_JFFS2'], CPPPATH = CPPPATH)
Return('group') Return('group')

View File

@@ -8,6 +8,6 @@ CPPPATH = [cwd]
SrcRemove(src, ['rpc/auth_none.c']) SrcRemove(src, ['rpc/auth_none.c'])
group = DefineGroup('Filesystem', src, depend = ['RT_USING_DFS', 'RT_USING_DFS_NFS'], CPPPATH = CPPPATH) group = DefineGroup('FileSystem', src, depend = ['RT_USING_DFS', 'RT_USING_DFS_NFS'], CPPPATH = CPPPATH)
Return('group') Return('group')

View File

@@ -4,6 +4,6 @@ cwd = GetCurrentDir()
src = Glob('*.c') src = Glob('*.c')
CPPPATH = [cwd] CPPPATH = [cwd]
group = DefineGroup('Filesystem', src, depend = ['RT_USING_DFS', 'RT_USING_MEMHEAP', 'RT_USING_DFS_RAMFS'], CPPPATH = CPPPATH) group = DefineGroup('FileSystem', src, depend = ['RT_USING_DFS', 'RT_USING_MEMHEAP', 'RT_USING_DFS_RAMFS'], CPPPATH = CPPPATH)
Return('group') Return('group')

View File

@@ -10,6 +10,6 @@ if GetDepend('DFS_ROMFS_ROOT'):
# A new ROMFS root has been defined, we should remove the romfs.c # A new ROMFS root has been defined, we should remove the romfs.c
SrcRemove(src, ['romfs.c']) SrcRemove(src, ['romfs.c'])
group = DefineGroup('Filesystem', src, depend = ['RT_USING_DFS','RT_USING_DFS_ROMFS'], CPPPATH = CPPPATH) group = DefineGroup('FileSystem', src, depend = ['RT_USING_DFS','RT_USING_DFS_ROMFS'], CPPPATH = CPPPATH)
Return('group') Return('group')

View File

@@ -33,6 +33,6 @@ src = src + uffs
CPPPATH = [cwd, cwd + '/src/inc'] CPPPATH = [cwd, cwd + '/src/inc']
group = DefineGroup('Filesystem', src , depend = ['RT_USING_DFS', 'RT_USING_DFS_UFFS'], CPPPATH = CPPPATH) group = DefineGroup('FileSystem', src , depend = ['RT_USING_DFS', 'RT_USING_DFS_UFFS'], CPPPATH = CPPPATH)
Return('group') Return('group')

View File

@@ -34,6 +34,6 @@ if not GetDepend('FINSH_USING_MSH_ONLY'):
CPPPATH = [cwd] CPPPATH = [cwd]
group = DefineGroup('Finsh', src, depend = ['RT_USING_FINSH'], CPPPATH = CPPPATH) group = DefineGroup('FinSH', src, depend = ['RT_USING_FINSH'], CPPPATH = CPPPATH)
Return('group') Return('group')

View File

@@ -15,7 +15,7 @@ if GetDepend('RT_USING_MODULE') == False:
SrcRemove(src, ['libc_syms.c']) SrcRemove(src, ['libc_syms.c'])
if rtconfig.PLATFORM == 'armcc' or rtconfig.PLATFORM == 'armclang': if rtconfig.PLATFORM == 'armcc' or rtconfig.PLATFORM == 'armclang':
group = DefineGroup('Libc', src, depend = ['RT_USING_LIBC'], group = DefineGroup('LIBC', src, depend = ['RT_USING_LIBC'],
CPPPATH = CPPPATH, CPPDEFINES = CPPDEFINES) CPPPATH = CPPPATH, CPPDEFINES = CPPDEFINES)
Return('group') Return('group')

View File

@@ -17,6 +17,6 @@ if GetDepend('RT_USING_POSIX') == False:
SrcRemove(src, ['unistd.c']) SrcRemove(src, ['unistd.c'])
if not GetDepend('RT_USING_MINILIBC') and (GetDepend('RT_USING_LIBC') or GetDepend('RT_LIBC_USING_TIME')): if not GetDepend('RT_USING_MINILIBC') and (GetDepend('RT_USING_LIBC') or GetDepend('RT_LIBC_USING_TIME')):
group = DefineGroup('Libc', src, depend = [''], CPPPATH = CPPPATH) group = DefineGroup('LIBC', src, depend = [''], CPPPATH = CPPPATH)
Return('group') Return('group')

View File

@@ -9,7 +9,7 @@ CPPPATH = [cwd]
CPPDEFINES = ['RT_USING_MINILIBC'] CPPDEFINES = ['RT_USING_MINILIBC']
if rtconfig.PLATFORM == 'gcc' and rtconfig.ARCH != 'sim' and not GetDepend('RT_USING_LIBC') and GetDepend('RT_USING_MINILIBC'): if rtconfig.PLATFORM == 'gcc' and rtconfig.ARCH != 'sim' and not GetDepend('RT_USING_LIBC') and GetDepend('RT_USING_MINILIBC'):
group = DefineGroup('Libc', src, depend = [''], group = DefineGroup('LIBC', src, depend = [''],
CPPPATH = CPPPATH, CPPDEFINES = CPPDEFINES) CPPPATH = CPPPATH, CPPDEFINES = CPPDEFINES)
Return('group') Return('group')

View File

@@ -15,7 +15,7 @@ CPPDEFINES = ['RT_USING_NEWLIB']
LIBS = ['c', 'm'] LIBS = ['c', 'm']
if rtconfig.PLATFORM == 'gcc': if rtconfig.PLATFORM == 'gcc':
group = DefineGroup('Newlib', src, depend = ['RT_USING_LIBC'], group = DefineGroup('NewLIB', src, depend = ['RT_USING_LIBC'],
CPPPATH = CPPPATH, CPPDEFINES = CPPDEFINES, LIBS = LIBS) CPPPATH = CPPPATH, CPPDEFINES = CPPDEFINES, LIBS = LIBS)
Return('group') Return('group')

View File

@@ -6,7 +6,7 @@ cwd = GetCurrentDir()
src = Glob('*.c') + Glob('*.cpp') src = Glob('*.c') + Glob('*.cpp')
CPPPATH = [cwd] CPPPATH = [cwd]
group = DefineGroup('Libc', src, group = DefineGroup('LIBC', src,
depend = ['RT_USING_LIBC', 'RT_USING_POSIX','RT_USING_POSIX_GETLINE'], depend = ['RT_USING_LIBC', 'RT_USING_POSIX','RT_USING_POSIX_GETLINE'],
CPPPATH = CPPPATH) CPPPATH = CPPPATH)

View File

@@ -7,7 +7,7 @@ group = []
CPPPATH = [cwd] CPPPATH = [cwd]
if rtconfig.PLATFORM == 'gcc': if rtconfig.PLATFORM == 'gcc':
group = DefineGroup('Libc', src, group = DefineGroup('LIBC', src,
depend = ['RT_USING_MODULE'], depend = ['RT_USING_MODULE'],
CPPPATH = CPPPATH) CPPPATH = CPPPATH)

View File

@@ -6,7 +6,7 @@ cwd = GetCurrentDir()
src = Glob('*.c') + Glob('*.cpp') src = Glob('*.c') + Glob('*.cpp')
CPPPATH = [cwd] CPPPATH = [cwd]
group = DefineGroup('Libc', src, group = DefineGroup('LIBC', src,
depend = ['RT_USING_DFS', 'RT_USING_POSIX_MMAP'], depend = ['RT_USING_DFS', 'RT_USING_POSIX_MMAP'],
CPPPATH = CPPPATH) CPPPATH = CPPPATH)

View File

@@ -6,7 +6,7 @@ cwd = GetCurrentDir()
src = Glob('*.c') + Glob('*.cpp') src = Glob('*.c') + Glob('*.cpp')
CPPPATH = [cwd] CPPPATH = [cwd]
group = DefineGroup('Libc', src, group = DefineGroup('LIBC', src,
depend = ['RT_USING_SIGNALS', 'RT_USING_PTHREADS', 'RT_USING_LIBC'], depend = ['RT_USING_SIGNALS', 'RT_USING_PTHREADS', 'RT_USING_LIBC'],
CPPPATH = CPPPATH) CPPPATH = CPPPATH)

View File

@@ -6,7 +6,7 @@ cwd = GetCurrentDir()
src = Glob('*.c') + Glob('*.cpp') src = Glob('*.c') + Glob('*.cpp')
CPPPATH = [cwd] CPPPATH = [cwd]
group = DefineGroup('Libc', src, group = DefineGroup('LIBC', src,
depend = ['RT_USING_LIBC', 'RT_USING_POSIX', 'RT_USING_POSIX_TERMIOS'], depend = ['RT_USING_LIBC', 'RT_USING_POSIX', 'RT_USING_POSIX_TERMIOS'],
CPPPATH = CPPPATH) CPPPATH = CPPPATH)

View File

@@ -8,6 +8,6 @@ src = Glob('src/*.c')
CPPPATH = [cwd + '/include'] CPPPATH = [cwd + '/include']
group = DefineGroup('Netdev', src, depend = ['RT_USING_NETDEV'], CPPPATH = CPPPATH) group = DefineGroup('NetDev', src, depend = ['RT_USING_NETDEV'], CPPPATH = CPPPATH)
Return('group') Return('group')

View File

@@ -1,6 +1,6 @@
from building import * from building import *
src = Glob('*.c') src = Glob('*.c')
group = DefineGroup('LibcTest', src, depend = ['RT_USING_NEWLIB', 'RT_USING_PTHREADS']) group = DefineGroup('LIBCTest', src, depend = ['RT_USING_NEWLIB', 'RT_USING_PTHREADS'])
Return('group') Return('group')

View File

@@ -8,7 +8,7 @@ cwd = GetCurrentDir()
src = Glob('*.c') + Glob('*.cpp') + Glob('*.S') src = Glob('*.c') + Glob('*.cpp') + Glob('*.S')
CPPPATH = [cwd] CPPPATH = [cwd]
group = DefineGroup('Libcpu', src, depend = [''], CPPPATH = CPPPATH) group = DefineGroup('LIBARCH', src, depend = [''], CPPPATH = CPPPATH)
# build for sub-directory # build for sub-directory
list = os.listdir(cwd) list = os.listdir(cwd)

View File

@@ -8,6 +8,6 @@ cwd = GetCurrentDir()
src = Glob('*.c') + Glob('*.cpp') + Glob('*.S') src = Glob('*.c') + Glob('*.cpp') + Glob('*.S')
CPPPATH = [cwd] CPPPATH = [cwd]
group = DefineGroup('Libcpu', src, depend = [''], CPPPATH = CPPPATH) group = DefineGroup('LIBARCH', src, depend = [''], CPPPATH = CPPPATH)
Return('group') Return('group')

View File

@@ -8,6 +8,6 @@ cwd = GetCurrentDir()
src = Glob('*.c') + Glob('*.cpp') + Glob('*.S') src = Glob('*.c') + Glob('*.cpp') + Glob('*.S')
CPPPATH = [cwd] CPPPATH = [cwd]
group = DefineGroup('Libcpu', src, depend = [''], CPPPATH = CPPPATH) group = DefineGroup('LIBARCH', src, depend = [''], CPPPATH = CPPPATH)
Return('group') Return('group')

View File

@@ -5,6 +5,6 @@ src = Glob('*.c')
CPPPATH = [cwd] CPPPATH = [cwd]
group = DefineGroup('Libcpu', src, depend = [], CPPPATH = CPPPATH) group = DefineGroup('LIBARCH', src, depend = [], CPPPATH = CPPPATH)
Return('group') Return('group')

View File

@@ -10,6 +10,6 @@ CPPPATH = [cwd]
src += Glob('*.S') src += Glob('*.S')
group = DefineGroup('Libcpu', src, depend = [''], CPPPATH = CPPPATH) group = DefineGroup('LIBARCH', src, depend = [''], CPPPATH = CPPPATH)
Return('group') Return('group')

View File

@@ -18,6 +18,6 @@ if rtconfig.PLATFORM == 'gcc':
if rtconfig.PLATFORM == 'iar': if rtconfig.PLATFORM == 'iar':
src += Glob('*_iar.S') src += Glob('*_iar.S')
group = DefineGroup('Libcpu', src, depend = [''], CPPPATH = CPPPATH) group = DefineGroup('LIBARCH', src, depend = [''], CPPPATH = CPPPATH)
Return('group') Return('group')

View File

@@ -18,6 +18,6 @@ if rtconfig.PLATFORM == 'gcc':
if rtconfig.PLATFORM == 'iar': if rtconfig.PLATFORM == 'iar':
src += Glob('*_iar.S') src += Glob('*_iar.S')
group = DefineGroup('Libcpu', src, depend = [''], CPPPATH = CPPPATH) group = DefineGroup('LIBARCH', src, depend = [''], CPPPATH = CPPPATH)
Return('group') Return('group')

View File

@@ -18,6 +18,6 @@ if rtconfig.PLATFORM == 'gcc':
if rtconfig.PLATFORM == 'iar': if rtconfig.PLATFORM == 'iar':
src += Glob('*_iar.S') src += Glob('*_iar.S')
group = DefineGroup('Libcpu', src, depend = [''], CPPPATH = CPPPATH) group = DefineGroup('LIBARCH', src, depend = [''], CPPPATH = CPPPATH)
Return('group') Return('group')

View File

@@ -20,6 +20,6 @@ if rtconfig.PLATFORM == 'gcc':
if rtconfig.PLATFORM == 'iar': if rtconfig.PLATFORM == 'iar':
src += Glob('*_iar.S') src += Glob('*_iar.S')
group = DefineGroup('Libcpu', src, depend = [''], CPPPATH = CPPPATH, ASFLAGS = ASFLAGS) group = DefineGroup('LIBARCH', src, depend = [''], CPPPATH = CPPPATH, ASFLAGS = ASFLAGS)
Return('group') Return('group')

View File

@@ -18,6 +18,6 @@ if rtconfig.PLATFORM == 'gcc':
if rtconfig.PLATFORM == 'iar': if rtconfig.PLATFORM == 'iar':
src += Glob('*_iar.S') src += Glob('*_iar.S')
group = DefineGroup('Libcpu', src, depend = [''], CPPPATH = CPPPATH) group = DefineGroup('LIBARCH', src, depend = [''], CPPPATH = CPPPATH)
Return('group') Return('group')

View File

@@ -18,6 +18,6 @@ if rtconfig.PLATFORM == 'gcc':
if rtconfig.PLATFORM == 'iar': if rtconfig.PLATFORM == 'iar':
src += Glob('*_iar.S') src += Glob('*_iar.S')
group = DefineGroup('Libcpu', src, depend = [''], CPPPATH = CPPPATH) group = DefineGroup('LIBARCH', src, depend = [''], CPPPATH = CPPPATH)
Return('group') Return('group')

View File

@@ -18,6 +18,6 @@ if rtconfig.PLATFORM == 'gcc':
if rtconfig.PLATFORM == 'iar': if rtconfig.PLATFORM == 'iar':
src += Glob('*_iar.S') src += Glob('*_iar.S')
group = DefineGroup('Libcpu', src, depend = [''], CPPPATH = CPPPATH) group = DefineGroup('LIBARCH', src, depend = [''], CPPPATH = CPPPATH)
Return('group') Return('group')

View File

@@ -18,6 +18,6 @@ if rtconfig.PLATFORM == 'gcc':
if rtconfig.PLATFORM == 'iar': if rtconfig.PLATFORM == 'iar':
src += Glob('*_iar.S') src += Glob('*_iar.S')
group = DefineGroup('Libcpu', src, depend = [''], CPPPATH = CPPPATH) group = DefineGroup('LIBARCH', src, depend = [''], CPPPATH = CPPPATH)
Return('group') Return('group')

View File

@@ -18,6 +18,6 @@ if rtconfig.PLATFORM == 'gcc':
if rtconfig.PLATFORM == 'iar': if rtconfig.PLATFORM == 'iar':
src += Glob('*_iar.S') src += Glob('*_iar.S')
group = DefineGroup('Libcpu', src, depend = [''], CPPPATH = CPPPATH) group = DefineGroup('LIBARCH', src, depend = [''], CPPPATH = CPPPATH)
Return('group') Return('group')

View File

@@ -18,6 +18,6 @@ if rtconfig.PLATFORM == 'gcc':
if rtconfig.PLATFORM == 'iar': if rtconfig.PLATFORM == 'iar':
src += Glob('*_iar.S') src += Glob('*_iar.S')
group = DefineGroup('Libcpu', src, depend = [''], CPPPATH = CPPPATH) group = DefineGroup('LIBARCH', src, depend = [''], CPPPATH = CPPPATH)
Return('group') Return('group')

View File

@@ -18,6 +18,6 @@ if rtconfig.PLATFORM == 'gcc':
if rtconfig.PLATFORM == 'iar': if rtconfig.PLATFORM == 'iar':
src += Glob('*_iar.S') src += Glob('*_iar.S')
group = DefineGroup('Libcpu', src, depend = [''], CPPPATH = CPPPATH) group = DefineGroup('LIBARCH', src, depend = [''], CPPPATH = CPPPATH)
Return('group') Return('group')

View File

@@ -18,6 +18,6 @@ if rtconfig.PLATFORM == 'gcc':
if rtconfig.PLATFORM == 'iar': if rtconfig.PLATFORM == 'iar':
src += Glob('*_iar.S') src += Glob('*_iar.S')
group = DefineGroup('Libcpu', src, depend = [''], CPPPATH = CPPPATH) group = DefineGroup('LIBARCH', src, depend = [''], CPPPATH = CPPPATH)
Return('group') Return('group')

View File

@@ -18,6 +18,6 @@ if rtconfig.PLATFORM == 'gcc':
if rtconfig.PLATFORM == 'iar': if rtconfig.PLATFORM == 'iar':
src += Glob('*_iar.S') src += Glob('*_iar.S')
group = DefineGroup('Libcpu', src, depend = [''], CPPPATH = CPPPATH) group = DefineGroup('LIBARCH', src, depend = [''], CPPPATH = CPPPATH)
Return('group') Return('group')

View File

@@ -18,6 +18,6 @@ if rtconfig.PLATFORM == 'gcc':
if rtconfig.PLATFORM == 'iar': if rtconfig.PLATFORM == 'iar':
src += Glob('*_iar.S') src += Glob('*_iar.S')
group = DefineGroup('Libcpu', src, depend = [''], CPPPATH = CPPPATH) group = DefineGroup('LIBARCH', src, depend = [''], CPPPATH = CPPPATH)
Return('group') Return('group')

View File

@@ -18,6 +18,6 @@ if rtconfig.PLATFORM == 'gcc':
if rtconfig.PLATFORM == 'iar': if rtconfig.PLATFORM == 'iar':
src += Glob('*_iar.S') src += Glob('*_iar.S')
group = DefineGroup('Libcpu', src, depend = [''], CPPPATH = CPPPATH) group = DefineGroup('LIBARCH', src, depend = [''], CPPPATH = CPPPATH)
Return('group') Return('group')

View File

@@ -18,6 +18,6 @@ if rtconfig.PLATFORM == 'gcc':
if rtconfig.PLATFORM == 'iar': if rtconfig.PLATFORM == 'iar':
src += Glob('*_iar.S') src += Glob('*_iar.S')
group = DefineGroup('Libcpu', src, depend = [''], CPPPATH = CPPPATH) group = DefineGroup('LIBARCH', src, depend = [''], CPPPATH = CPPPATH)
Return('group') Return('group')

View File

@@ -18,6 +18,6 @@ if rtconfig.PLATFORM == 'gcc':
if rtconfig.PLATFORM == 'iar': if rtconfig.PLATFORM == 'iar':
src += Glob('*_iar.S') src += Glob('*_iar.S')
group = DefineGroup('Libcpu', src, depend = [''], CPPPATH = CPPPATH) group = DefineGroup('LIBARCH', src, depend = [''], CPPPATH = CPPPATH)
Return('group') Return('group')

View File

@@ -18,6 +18,6 @@ if rtconfig.PLATFORM == 'gcc':
if rtconfig.PLATFORM == 'iar': if rtconfig.PLATFORM == 'iar':
src += Glob('*_iar.S') src += Glob('*_iar.S')
group = DefineGroup('Libcpu', src, depend = [''], CPPPATH = CPPPATH) group = DefineGroup('LIBARCH', src, depend = [''], CPPPATH = CPPPATH)
Return('group') Return('group')

View File

@@ -18,6 +18,6 @@ if rtconfig.PLATFORM == 'gcc':
if rtconfig.PLATFORM == 'iar': if rtconfig.PLATFORM == 'iar':
src += Glob('*_iar.S') src += Glob('*_iar.S')
group = DefineGroup('Libcpu', src, depend = [''], CPPPATH = CPPPATH) group = DefineGroup('LIBARCH', src, depend = [''], CPPPATH = CPPPATH)
Return('group') Return('group')

View File

@@ -18,6 +18,6 @@ if rtconfig.PLATFORM == 'gcc':
if rtconfig.PLATFORM == 'iar': if rtconfig.PLATFORM == 'iar':
src += Glob('*_iar.S') src += Glob('*_iar.S')
group = DefineGroup('Libcpu', src, depend = [''], CPPPATH = CPPPATH) group = DefineGroup('LIBARCH', src, depend = [''], CPPPATH = CPPPATH)
Return('group') Return('group')

View File

@@ -18,6 +18,6 @@ if rtconfig.PLATFORM == 'gcc':
if rtconfig.PLATFORM == 'iar': if rtconfig.PLATFORM == 'iar':
src += Glob('*_iar.S') src += Glob('*_iar.S')
group = DefineGroup('Libcpu', src, depend = [''], CPPPATH = CPPPATH) group = DefineGroup('LIBARCH', src, depend = [''], CPPPATH = CPPPATH)
Return('group') Return('group')

Some files were not shown because too many files have changed in this diff Show More