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>2012-06-01 12:47:47 +0400
committerMarek Safar <marek.safar@gmail.com>2012-06-01 12:47:47 +0400
commitfe19bd61879d5d3209f143ae275a233449e037d3 (patch)
tree8be9c95849553065095e3944d753390c2fa9b3ff /runtime/Makefile.am
parent5b1a509563fdc8057246bc9793be623af0eed878 (diff)
Disable verifier checks on 4.0 profile
Diffstat (limited to 'runtime/Makefile.am')
-rw-r--r--runtime/Makefile.am6
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/Makefile.am b/runtime/Makefile.am
index eaa758d8a05..eb3f4741337 100644
--- a/runtime/Makefile.am
+++ b/runtime/Makefile.am
@@ -139,12 +139,12 @@ 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 2.1 assemblies for now because of visibility problems
+# Skip net 4.0 assemblies because the 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 [ "moonlight" = "$$profile" ]; then \
- break; \
+ if [ "net_4_0" = "$$profile" ]; then \
+ continue; \
fi; \
if [ "net_3_5" = "$$profile" ]; then \
MONO_PATH="$$mcs_topdir/class/lib/$$profile$(PLATFORM_PATH_SEPARATOR)$$mcs_topdir/class/lib/net_2_0$(PLATFORM_PATH_SEPARATOR)$$save_MONO_PATH"; \