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
diff options
context:
space:
mode:
authorMarek Safar <marek.safar@gmail.com>2014-12-05 14:01:12 +0300
committerMarek Safar <marek.safar@gmail.com>2014-12-05 14:01:50 +0300
commitb993596e591c792ec72c261204748269a6431069 (patch)
tree062072f46f98763ae430193a76d335212e62f168 /runtime
parent0c99796db64d8a874d9d9c6bdae9bbe4de2bf0cd (diff)
Restore 4.0 profile as metadata only profile
Diffstat (limited to 'runtime')
-rw-r--r--runtime/Makefile.am6
1 files changed, 5 insertions, 1 deletions
diff --git a/runtime/Makefile.am b/runtime/Makefile.am
index c7a08f7b8a5..45740ef16b3 100644
--- a/runtime/Makefile.am
+++ b/runtime/Makefile.am
@@ -34,7 +34,7 @@ else
build_profiles =
if INSTALL_4_5
-build_profiles += net_4_5 xbuild_12 xbuild_14
+build_profiles += net_4_0 net_4_5 xbuild_12 xbuild_14
al_profile = net_4_5
endif
@@ -110,9 +110,13 @@ endif
# Compile all assemblies with the verifier turned on. Code must be valid but not verifiable.
# TODO it would be nice to split assemblies without unsafe code to use the verifier with verifiable mode.
+# Skip net 4.0 assemblies because they contain metadata only
mcs-compileall: mono-wrapper etc/mono/config
save_MONO_PATH=$$MONO_PATH; mcs_topdir=`cd $(mcs_topdir) && $(cur_dir_cmd)`; ok=:; \
for profile in $(test_profiles); do \
+ if [ "net_4_0" = "$$profile" ]; then \
+ continue; \
+ fi; \
if [ "xbuild_12" = "$$profile" ]; then \
MONO_PATH="$$mcs_topdir/class/lib/$$profile$(PLATFORM_PATH_SEPARATOR)$$mcs_topdir/class/lib/net_4_5$(PLATFORM_PATH_SEPARATOR)$$save_MONO_PATH"; \
elif [ "xbuild_14" = "$$profile" ]; then \