Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/mcs/build
diff options
context:
space:
mode:
authorRaja R Harinath <harinath@hurrynot.org>2009-07-16 21:56:14 +0400
committerRaja R Harinath <harinath@hurrynot.org>2009-07-16 21:56:14 +0400
commitef2286816de6b479521805ce0084e6ca42d864aa (patch)
treeb1ecaac7261d03bbdb517bd57f952c5268d7484f /mcs/build
parentf09d0beed3082de590798718fd9340f6e34cc8e5 (diff)
Improve coarse-grain parallelism in the build
* Makefile (_boot_:net_2_0_bootstrap): Depend on 'net_1_1_bootstrap' profile, rather than 'net_1_1'. * build/profiles/net_2_0_bootstrap.make (BOOTSTRAP_PROFILE): Set to net_1_1_bootstrap instead of net_1_1. svn path=/trunk/mcs/; revision=138070
Diffstat (limited to 'mcs/build')
-rw-r--r--mcs/build/ChangeLog5
-rw-r--r--mcs/build/profiles/net_2_0_bootstrap.make2
2 files changed, 6 insertions, 1 deletions
diff --git a/mcs/build/ChangeLog b/mcs/build/ChangeLog
index c875de4b20a..d2233f5bb63 100644
--- a/mcs/build/ChangeLog
+++ b/mcs/build/ChangeLog
@@ -1,3 +1,8 @@
+2009-07-16 Raja R Harinath <harinath@hurrynot.org>
+
+ * profiles/net_2_0_bootstrap.make (BOOTSTRAP_PROFILE): Set to
+ net_1_1_bootstrap instead of net_1_1.
+
2009-06-03 Zoltan Varga <vargaz@gmail.com>
* profiles/net_4_0.make: Add preliminary net 4.0 profile.
diff --git a/mcs/build/profiles/net_2_0_bootstrap.make b/mcs/build/profiles/net_2_0_bootstrap.make
index 62a99351dd6..c60c6d5fd01 100644
--- a/mcs/build/profiles/net_2_0_bootstrap.make
+++ b/mcs/build/profiles/net_2_0_bootstrap.make
@@ -4,7 +4,7 @@
# Note that we're using the .NET 1.1 MCS but MONO_PATH points to the net_2_0_bootstrap directory.
# We do it this way to get assembly version references right.
#
-BOOTSTRAP_PROFILE = net_1_1
+BOOTSTRAP_PROFILE = net_1_1_bootstrap
BOOTSTRAP_MCS = MONO_PATH="$(topdir)/class/lib/$(BOOTSTRAP_PROFILE)$(PLATFORM_PATH_SEPARATOR)$$MONO_PATH" $(RUNTIME) $(RUNTIME_FLAGS) $(topdir)/class/lib/$(BOOTSTRAP_PROFILE)/mcs.exe
MCS = MONO_PATH="$(topdir)/class/lib/$(PROFILE)$(PLATFORM_PATH_SEPARATOR)$$MONO_PATH" $(RUNTIME) $(RUNTIME_FLAGS) $(topdir)/class/lib/$(PROFILE)/gmcs.exe