From 372926477b31674db1475fd3e88871fb2af9289f Mon Sep 17 00:00:00 2001 From: Bernard Xiong Date: Mon, 27 Oct 2014 22:27:54 +0800 Subject: [PATCH] [GDB] Fix compiling error when not enable GDB. --- components/gdb/SConscript | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/components/gdb/SConscript b/components/gdb/SConscript index 3ee73a0685..8893d238bc 100644 --- a/components/gdb/SConscript +++ b/components/gdb/SConscript @@ -1,20 +1,20 @@ Import('rtconfig') from building import * +src = Glob('*.c') comm = 'libcpu/' + rtconfig.ARCH if (rtconfig.CPU == 'cortex-m4') or (rtconfig.CPU == 'cortex-m3'): comm = 'libcpu/cortexm' cwd = GetCurrentDir() if rtconfig.PLATFORM == 'armcc': - src = Glob('*.c') + Glob(comm + '/*.c') + Glob(comm + '/*_rvds.S') + src = src + Glob(comm + '/*.c') + Glob(comm + '/*_rvds.S') if rtconfig.PLATFORM == 'gcc': - src = Glob('*.c') + Glob(comm + '/*.c') + Glob(comm + '/*_gcc.S') + src = src + Glob(comm + '/*.c') + Glob(comm + '/*_gcc.S') if rtconfig.PLATFORM == 'iar': - src = Glob('*.c') + Glob(comm + '/*.c') + Glob(comm + '/*_iar.S') - + src = src + Glob(comm + '/*.c') + Glob(comm + '/*_iar.S') CPPPATH = [cwd, cwd + '/' + comm]