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:
authorAlexander Köplinger <alex.koeplinger@outlook.com>2016-12-20 20:32:19 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2016-12-20 21:29:54 +0300
commit409834378981afd7a5f63e783b89d093f0a0ce3c (patch)
treebf76e9d09f63582a0df856ceb496ceae57ca0098 /runtime
parentec228cf9a4dfc205624c5d5d94c6ad5234aa0290 (diff)
[bcl] Rename aot_only profile to testing_aot_full
Diffstat (limited to 'runtime')
-rw-r--r--runtime/Makefile.am14
1 files changed, 7 insertions, 7 deletions
diff --git a/runtime/Makefile.am b/runtime/Makefile.am
index 5224c91837f..d9fcbdac16b 100644
--- a/runtime/Makefile.am
+++ b/runtime/Makefile.am
@@ -52,8 +52,8 @@ if INSTALL_AOT_HYBRID
build_profiles += aot_hybrid
endif
-if INSTALL_AOT_ONLY
-build_profiles += aot_only
+if INSTALL_TESTING_AOT_FULL
+build_profiles += testing_aot_full
endif
if INSTALL_XAMMAC
@@ -113,20 +113,20 @@ cur_dir_cmd = pwd
PLATFORM_PATH_SEPARATOR = :
endif
-if INSTALL_AOT_ONLY
-# ILASM.exe has features which a aot_only runtime will not support.
+if INSTALL_TESTING_AOT_FULL
+# ILASM.exe has features which a testing_aot_full runtime will not support.
# It is invoked with an external mono when used in the runtime.
# We skip it here because otherwise it will fail to verify.
-AOT_ONLY_FILTER=grep -v ilasm
+TESTING_AOT_FULL_FILTER=grep -v ilasm
else
-AOT_ONLY_FILTER=echo
+TESTING_AOT_FULL_FILTER=echo
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 binary_reference_assemblies because they contain metadata only
mcs-compileall: mono-wrapper etc/mono/config
- export verifiable_files=`ls "$(mcs_topdir)/class/lib/$$profile/" | grep -E '\.(dll|exe)$$' | $(AOT_ONLY_FILTER)` ; \
+ export verifiable_files=`ls "$(mcs_topdir)/class/lib/$$profile/" | grep -E '\.(dll|exe)$$' | $(TESTING_AOT_FULL_FILTER)` ; \
save_MONO_PATH=$$MONO_PATH; mcs_topdir=`cd $(mcs_topdir) && $(cur_dir_cmd)`; ok=:; \
for profile in $(test_profiles); do \
if [ "binary_reference_assemblies" = "$$profile" ]; then \