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-11-24 04:33:29 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2016-11-24 19:40:54 +0300
commit9f5b8c4cf2b7980ea5dddef62b36bb1910b53ff9 (patch)
tree7db8aa9f98bd8a5c1242194d660ae84ee630bcce /mcs/class/Makefile
parent1d6abe9ecaa51d39c01a9e4070e8bdd15b61593f (diff)
Rename the mobile_static profile to aot_only
We decided it's a better name since we're using the profile to test FullAOT scenarios on desktop (as opposed to the mobile profiles). While doing the rename I saw that a lot of the #ifdefs were using MOBILE_STATIC even though the code should actually be included/excluded in all FullAOT scenarios, e.g. System.Reflection.Emit. I replaced those cases with FULL_AOT_RUNTIME instead. For cases where code is specific to this profile, I added a new AOT_ONLY_DESKTOP define.
Diffstat (limited to 'mcs/class/Makefile')
-rw-r--r--mcs/class/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/mcs/class/Makefile b/mcs/class/Makefile
index f22bc600ec3..6c883f85796 100644
--- a/mcs/class/Makefile
+++ b/mcs/class/Makefile
@@ -61,7 +61,7 @@ mobile_common_dirs := \
System.Reflection.Context \
System.Net.Http.WinHttpHandler
-mobile_static_dirs := \
+aot_only_dirs := \
$(mobile_common_dirs) \
Mono.Dynamic.Interpreter \
PEAPI \
@@ -88,7 +88,7 @@ monodroid_dirs := \
$(pcl_facade_dirs)
monotouch_dirs := \
- $(mobile_static_dirs)
+ $(aot_only_dirs)
monotouch_watch_dirs := $(filter-out Mono.Security Mono.Data.Tds,$(monotouch_dirs))
monotouch_tv_dirs := $(monotouch_dirs)
@@ -313,7 +313,7 @@ monotouch_tv_SUBDIRS := $(monotouch_tv_dirs)
monotouch_runtime_SUBDIRS := $(monotouch_runtime_dirs)
monotouch_watch_runtime_SUBDIRS := $(monotouch_watch_runtime_dirs)
monotouch_tv_runtime_SUBDIRS := $(monotouch_tv_runtime_dirs)
-mobile_static_SUBDIRS := $(mobile_static_dirs)
+aot_only_SUBDIRS := $(aot_only_dirs)
aot_hybrid_SUBDIRS := $(aot_hybrid_dirs)
xammac_SUBDIRS := $(xammac_dirs)
xammac_net_4_5_SUBDIRS := $(xammac_4_5_dirs)
@@ -325,7 +325,7 @@ xbuild_14_SUBDIRS := $(xbuild_4_0_dirs) Microsoft.NuGet.Build.Tasks
include ../build/rules.make
-SUBDIRS = $(mobile_static_dirs) $(aot_hybrid_dirs) $(monotouch_dirs) $(monodroid_dirs) $(xammac_dirs) $(net_4_x_dirs) $(net_4_x_parallel_dirs) $(xammac_net_4_5_SUBDIRS)
+SUBDIRS = $(aot_only_dirs) $(aot_hybrid_dirs) $(monotouch_dirs) $(monodroid_dirs) $(xammac_dirs) $(net_4_x_dirs) $(net_4_x_parallel_dirs) $(xammac_net_4_5_SUBDIRS)
DIST_ONLY_SUBDIRS = dlr aot-compiler reference-assemblies $(xbuild_4_0_dirs) Microsoft.NuGet.Build.Tasks