1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- import sys
- import os
- from building import *
- Import('rtconfig')
- cwd = GetCurrentDir()
- src = ['board.c', 'uart_console.c']
- LIBS = []
- LIBPATH = []
- CPPPATH = [cwd]
- CPPDEFINES = ['RT_USING_LIBC']
- if rtconfig.CROSS_TOOL == 'msvc':
- CPPDEFINES += \
- [
- # avoid to conflict with the inherent STDC in VS
- '_CRT_DECLARE_NONSTDC_NAMES=0',
- # errno macro redefinition
- '_CRT_ERRNO_DEFINED',
- # avoid time.h conflicts, such as struct timespec, ctime, difftime...
- '_CRT_NO_TIME_T',
- # disable deprecation of unsafe functions, such as strncpy
- '_CRT_SECURE_NO_WARNINGS',
- # lean and mean for Windows.h, exclude winsock.h when include Windows.h
- # avoid conlicts between sys/select.h, time.h, and winsock.h
- # such as fd_set related, struct timeval...
- 'WIN32_LEAN_AND_MEAN'
- ]
- # remove no need file.
- if GetDepend('PKG_USING_GUIENGINE') == True:
- src += ['sdl_fb.c']
- else:
- LIBS.append('SDL2')
- if sys.platform == 'win32':
- LIBPATH.append(os.path.abspath(os.path.join(cwd, '../SDL2/lib/x86')))
- CPPPATH.append(os.path.abspath(os.path.join(cwd, '../SDL2/include')))
- if GetDepend('RT_USING_DFS') == True:
- if GetDepend('RT_USING_DFS_ELMFAT') == True:
- src += ['sd_sim.c']
- if GetDepend('RT_USING_MTD_NAND') == True:
- src += ['nanddrv_file.c']
- if GetDepend('RT_USING_MTD_NOR') == True:
- src += ['sst25vfxx_mtd_sim.c']
- if sys.platform == "win32":
- if GetDepend('RT_USING_DFS_WINSHAREDIR') == True:
- src += ['dfs_win32.c']
- if GetDepend('RT_USING_MODULE') == True:
- src += ['module_win32.c']
- if GetDepend('BSP_USING_RTC') == True:
- src += ['drv_rtc.c']
- if GetDepend('BSP_USING_SOCKET') == True:
- src += [cwd + '/winsock/drv_win_eth.c']
- src += [cwd + '/winsock/sal_winsock.c']
- group = DefineGroup('Drivers', src, depend = [''],
- CPPPATH = CPPPATH, LIBS=LIBS, LIBPATH=LIBPATH, CPPDEFINES=CPPDEFINES)
- list = os.listdir(cwd)
- for item in list:
- if os.path.isfile(os.path.join(cwd, item, 'SConscript')):
- group = group + SConscript(os.path.join(item, 'SConscript'))
- Return('group')
|