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>2011-02-10 15:21:12 +0300
committerMarek Safar <marek.safar@gmail.com>2011-02-10 16:36:36 +0300
commit24b33b76173f84c2fef6745ab741d560b0ca520f (patch)
tree4e569d5a4713d9fb69992247a847bed4f7f58a50 /mcs/class/aot-compiler
parent30e3a346e0425b86ff0d910e8475719cabf3a138 (diff)
Add mscorlib as mcs aot dependency
Diffstat (limited to 'mcs/class/aot-compiler')
-rw-r--r--mcs/class/aot-compiler/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/class/aot-compiler/Makefile b/mcs/class/aot-compiler/Makefile
index eaaf62c6bf1..4d41657549b 100644
--- a/mcs/class/aot-compiler/Makefile
+++ b/mcs/class/aot-compiler/Makefile
@@ -29,7 +29,7 @@ ifndef SKIP_AOT
ifdef PLATFORM_AOT_SUFFIX
Q_AOT=$(if $(V),,@echo "AOT [$(PROFILE)] $(notdir $(@))";)
-$(mcs_aot_image): $(mcs_exe) $(runtime_dep)
+$(mcs_aot_image): $(mcs_exe) $(mscorlib_dll) $(runtime_dep)
$(Q_AOT) MONO_PATH='$(the_libdir)' > $(PROFILE)_aot.log 2>&1 $(RUNTIME) --aot=bind-to-runtime-version,outfile=$(mcs_aot_image) --debug $(mcs_exe) || cat $(PROFILE)_aot.log || (cat $(PROFILE)_aot.log; exit 1)
$(mscorlib_aot_image): $(mscorlib_dll) $(runtime_dep)