From 8a43cbc5b9a5ab9065e77d24e8963089cc1a12a9 Mon Sep 17 00:00:00 2001 From: "bernard.xiong" Date: Thu, 14 Oct 2010 08:06:26 +0000 Subject: [PATCH] add POSIX thread directory. git-svn-id: https://rt-thread.googlecode.com/svn/trunk@1009 bbd45198-f89e-11dd-88c7-29a3b14d5316 --- components/SConscript | 3 +++ 1 file changed, 3 insertions(+) diff --git a/components/SConscript b/components/SConscript index d5a4d3914..bd6f6323a 100644 --- a/components/SConscript +++ b/components/SConscript @@ -12,6 +12,9 @@ if rtconfig.CROSS_TOOL == 'gcc': rtconfig.RT_USING_MINILIBC = True objs = objs + SConscript('libc/minilibc/SConscript') +if 'RT_USING_PTHREAD' in dir(rtconfig) and rtconfig.RT_USING_PTHREAD: + objs = objs + SConscript('pthreads/SConscript') + if 'RT_USING_FINSH' in dir(rtconfig) and rtconfig.RT_USING_FINSH: objs = objs + SConscript('finsh/SConscript') -- GitLab