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 Kyte <alkyte@microsoft.com>2018-12-14 00:08:12 +0300
committerMarek Safar <marek.safar@gmail.com>2019-01-18 10:42:13 +0300
commitb0c4390d608b89874df4f5ea9549742003bf8164 (patch)
treed6a5efab88a559026d125498437089e8d2b70de2
parent725ba2a2523dffb962712695f16f2d3b0cb142ae (diff)
[runtime] Don't probe aot cache on androidmono-5.18.0.245
-rw-r--r--mono/mini/aot-runtime.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/mono/mini/aot-runtime.c b/mono/mini/aot-runtime.c
index dfdb7621856..c7d9df96dfb 100644
--- a/mono/mini/aot-runtime.c
+++ b/mono/mini/aot-runtime.c
@@ -2101,6 +2101,7 @@ if (container_assm_name && !container_amodule) {
}
g_free (aot_name);
}
+#ifndef PLATFORM_ANDROID
if (!sofile) {
char *basename = g_path_get_basename (assembly->image->name);
aot_name = g_strdup_printf ("%s/mono/aot-cache/%s/%s%s", mono_assembly_getrootdir(), MONO_ARCHITECTURE, basename, MONO_SOLIB_EXT);
@@ -2112,6 +2113,7 @@ if (container_assm_name && !container_amodule) {
}
g_free (aot_name);
}
+#endif
if (!sofile) {
GList *l;