Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions components/finsh/SConscript
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ src = Split('''
shell.c
msh.c
msh_parse.c
cmd.c
''')

CPPPATH = [cwd]
Expand All @@ -14,9 +15,6 @@ LOCAL_CFLAGS = ''
if rtconfig.PLATFORM in ['gcc']: # only for GCC
LOCAL_CFLAGS += ' -Wstack-usage=' + str(GetConfigValue('FINSH_THREAD_STACK_SIZE')) # check finsh thread stack size

if GetDepend('MSH_USING_BUILT_IN_COMMANDS'):
src += ['cmd.c']

if GetDepend('DFS_USING_POSIX'):
src += ['msh_file.c']

Expand Down