We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1c1a07 commit 936c5e5Copy full SHA for 936c5e5
components/finsh/SConscript
@@ -6,6 +6,7 @@ src = Split('''
6
shell.c
7
msh.c
8
msh_parse.c
9
+cmd.c
10
''')
11
12
CPPPATH = [cwd]
@@ -14,9 +15,6 @@ LOCAL_CFLAGS = ''
14
15
if rtconfig.PLATFORM in ['gcc']: # only for GCC
16
LOCAL_CFLAGS += ' -Wstack-usage=' + str(GetConfigValue('FINSH_THREAD_STACK_SIZE')) # check finsh thread stack size
17
-if GetDepend('MSH_USING_BUILT_IN_COMMANDS'):
18
- src += ['cmd.c']
19
-
20
if GetDepend('DFS_USING_POSIX'):
21
src += ['msh_file.c']
22
0 commit comments