# HG changeset patch
# User Jon Chatten
# Date 1268839155 0
# Node ID 770bd0892cdd18cfb6d512f16e85ab0b8349c94b
# Parent 2489b07138d35a8eb8ed22853cbda54e68938019
Remove .pdb generation from tools deb builds (enabling full parallel builds).
diff -r 2489b07138d3 -r 770bd0892cdd sbsv2/raptor/lib/config/msvc.xml
--- a/sbsv2/raptor/lib/config/msvc.xml Fri Mar 12 12:17:30 2010 +0000
+++ b/sbsv2/raptor/lib/config/msvc.xml Wed Mar 17 15:19:15 2010 +0000
@@ -32,7 +32,6 @@
-
@@ -44,7 +43,7 @@
-
+
diff -r 2489b07138d3 -r 770bd0892cdd sbsv2/raptor/lib/flm/msvctools.flm
--- a/sbsv2/raptor/lib/flm/msvctools.flm Fri Mar 12 12:17:30 2010 +0000
+++ b/sbsv2/raptor/lib/flm/msvctools.flm Wed Mar 17 15:19:15 2010 +0000
@@ -1,4 +1,4 @@
-# Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
+# Copyright (c) 2008-2010 Nokia Corporation and/or its subsidiary(-ies).
# All rights reserved.
# This component and the accompanying materials are made available
# under the terms of the License "Eclipse Public License v1.0"
@@ -59,8 +59,7 @@
DEFINES:=$(call makemacrodef,$(OPT.DEFINE),$(CDEFS) $(BASE_MACRO) $(CFLAGS.ADD))
# other
-PDBFILE:=$(if $(GENDEBUGINFO),$(RELEASEPATH)/$(TARGET).pdb,)
-CLEANTARGETS:=$(CLEANTARGETS) $(PDBFILE)
+CLEANTARGETS:=$(CLEANTARGETS)
#compile
define msvctoolscompile
@@ -70,7 +69,6 @@
$(if $(findstring staticlib,$(BASE_TYPE)),,$(CFLAGS.LIB)) \
$(CFLAGS) $$(subst /,-,$(OPTION_MSVC)) \
$(if $(findstring /W,$(OPTION_MSVC)),,$(CFLAGS.DEFAULT.WARNLEVEL)) \
- $(if $(PDBFILE),$$(call msvcformatarg,$(OPT.PDBFILE),$(PDBFILE)),) \
$(DEFINES) $(INCLUDES) \
$$(call msvcformatarg,$(OPT.BROWSEFILE),$(BUILDPATH)/$(basename $(notdir $(1))).sbr) \
$$(call msvcformatarg,$(OPT.OBJECTFILE),$$@) $(1) \
diff -r 2489b07138d3 -r 770bd0892cdd sbsv2/raptor/lib/flm/msvctools.xml
--- a/sbsv2/raptor/lib/flm/msvctools.xml Fri Mar 12 12:17:30 2010 +0000
+++ b/sbsv2/raptor/lib/flm/msvctools.xml Wed Mar 17 15:19:15 2010 +0000
@@ -42,7 +42,6 @@
-
diff -r 2489b07138d3 -r 770bd0892cdd sbsv2/raptor/test/smoke_suite/tools.py
--- a/sbsv2/raptor/test/smoke_suite/tools.py Fri Mar 12 12:17:30 2010 +0000
+++ b/sbsv2/raptor/test/smoke_suite/tools.py Wed Mar 17 15:19:15 2010 +0000
@@ -1,5 +1,5 @@
#
-# Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
+# Copyright (c) 2009-2010 Nokia Corporation and/or its subsidiary(-ies).
# All rights reserved.
# This component and the accompanying materials are made available
# under the terms of the License "Eclipse Public License v1.0"
@@ -20,19 +20,15 @@
t = SmokeTest()
t.id = "52"
t.name = "tools"
- # Do not run with j > 1 because of known issues
- t.command = "sbs -b smoke_suite/test_resources/tools/bld.inf -c tools -j1"
+ t.command = "sbs -b smoke_suite/test_resources/tools/bld.inf -c tools"
t.targets = [
"$(EPOCROOT)/epoc32/release/tools/deb/tool_exe.bsc",
"$(EPOCROOT)/epoc32/release/tools/deb/tool_exe.exe",
"$(EPOCROOT)/epoc32/release/tools/deb/tool_exe.ilk",
- "$(EPOCROOT)/epoc32/release/tools/deb/tool_exe.pdb",
"$(EPOCROOT)/epoc32/release/tools/deb/tool_lib1.bsc",
"$(EPOCROOT)/epoc32/release/tools/deb/tool_lib1.lib",
- "$(EPOCROOT)/epoc32/release/tools/deb/tool_lib1.pdb",
"$(EPOCROOT)/epoc32/release/tools/deb/tool_lib2.bsc",
"$(EPOCROOT)/epoc32/release/tools/deb/tool_lib2.lib",
- "$(EPOCROOT)/epoc32/release/tools/deb/tool_lib2.pdb",
"$(EPOCROOT)/epoc32/release/tools/rel/tool_exe.exe",
"$(EPOCROOT)/epoc32/release/tools/rel/tool_lib1.lib",
"$(EPOCROOT)/epoc32/release/tools/rel/tool_lib2.lib",