mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-19 06:43:29 +08:00
0f0093aa3e
- [update] 更新 template 工程配置 - [update] 更新 PLATFORM 配置 - [add] 添加 ra icu 驱动文件 - [add] 增加传感器类型 IAQ、EtOH - [add] 添加 CAN 驱动 - [add] 添加 RW007 驱动及使用说明 - [fix] GCC 编译问题 - [fix] flash 驱动 - [fix] 修改 scons 脚本配置
23 lines
465 B
Python
23 lines
465 B
Python
|
|
from building import *
|
|
import rtconfig
|
|
|
|
cwd = GetCurrentDir()
|
|
|
|
src = []
|
|
|
|
src += Glob('*.c')
|
|
CPPPATH = [cwd]
|
|
LOCAL_CCFLAGS = ''
|
|
|
|
if rtconfig.PLATFORM == 'gcc':
|
|
LOCAL_CCFLAGS += ' -std=c99'
|
|
elif rtconfig.PLATFORM == 'armcc':
|
|
LOCAL_CCFLAGS += ' --c99'
|
|
elif rtconfig.PLATFORM == 'armclang':
|
|
LOCAL_CCFLAGS += ' -std=c99'
|
|
|
|
group = DefineGroup('FAL', src, depend = ['PKG_USING_FAL'], CPPPATH = CPPPATH, LOCAL_CCFLAGS = LOCAL_CCFLAGS)
|
|
|
|
Return('group')
|