From 375b57d1809816a1f1a87ccbab22b88b5e2cfb30 Mon Sep 17 00:00:00 2001 From: Charlie Lenahan Date: Tue, 19 May 2015 18:15:37 -0400 Subject: [PATCH] Adjust compile messages to handle "Shared" targets . Scons has compile messages for Static targets and Shared targets. Adds shared targets for non-verbose builds, to allow warning messages to be more visible(standout). Change-Id: I7f4a5e7dd53c70003c963a486dcb0dfd99bb0ff7 Signed-off-by: Charlie Lenahan Reviewed-on: https://gerrit.iotivity.org/gerrit/1043 Tested-by: jenkins-iotivity Reviewed-by: Caiwen Zhang Reviewed-by: Erich Keane --- build_common/SConscript | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build_common/SConscript b/build_common/SConscript index 3c50141..5666630 100644 --- a/build_common/SConscript +++ b/build_common/SConscript @@ -108,8 +108,11 @@ tc_set_msg = ''' ''' if env.get('VERBOSE') == False: env['CCCOMSTR'] = "Compiling $TARGET" + env['SHCCCOMSTR'] = "Compiling $TARGET" env['CXXCOMSTR'] = "Compiling $TARGET" + env['SHCXXCOMSTR'] = "Compiling $TARGET" env['LINKCOMSTR'] = "Linking $TARGET" + env['SHLINKCOMSTR'] = "Linking $TARGET" env['ARCOMSTR'] = "Archiving $TARGET" env['RANLIBCOMSTR'] = "Indexing Archive $TARGET" -- 2.7.4