mirror of
https://gitee.com/Vancouver2017/luban-lite.git
synced 2025-12-17 09:38:55 +00:00
15 lines
313 B
Python
15 lines
313 B
Python
|
|
Import('AIC_ROOT')
|
||
|
|
Import('PRJ_KERNEL')
|
||
|
|
from building import *
|
||
|
|
|
||
|
|
cwd = GetCurrentDir()
|
||
|
|
CPPPATH = [cwd]
|
||
|
|
|
||
|
|
src = ['thread_stack_trace.c']
|
||
|
|
|
||
|
|
my_cflags = ' -w'
|
||
|
|
group = DefineGroup('thread_stack_trace', src, depend = ['AIC_USING_THREAD_STACK_TRACE'], CPPPATH =
|
||
|
|
CPPPATH, LOCAL_CFLAGS = my_cflags)
|
||
|
|
|
||
|
|
Return('group')
|