用于EagleEye3.0 规则集漏报和误报测试的示例项目,项目收集于github和gitee
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

25 lines
765 B

import rtconfig
Import('RTT_ROOT')
from building import *
# get current directory
cwd = GetCurrentDir()
# The set of source files associated with this SConscript file.
src = []
src += Glob('ALD/ES32VF2264/Source/*.c')
#add for startup script
if rtconfig.CROSS_TOOL == 'gcc':
src = src + ['RV_CORE/Device/EastSoft/ES32VF2264/Startup/startup_es32vf2264.S']
src = src + ['RV_CORE/Device/EastSoft/ES32VF2264/Startup/trap_c.c']
src = src + ['RV_CORE/Device/EastSoft/ES32VF2264/Svc/es32vf2264.svc']
path = [cwd + '/RV_CORE/Device/EastSoft/ES32VF2264/Include',
cwd + '/RV_CORE/Include',
cwd + '/ALD/ES32VF2264/Include']
group = DefineGroup('Libraries', src, depend = [''], CPPPATH = path, CPPDEFINES = ['ES32VF2264'])
Return('group')