X-Git-Url: http://wien.tomnetworks.com/gitweb/?p=mono.git;a=blobdiff_plain;f=mono%2Fmini%2FMakefile.am.in;h=4592dec23c164804b8b72003e49d64372c4aa311;hp=3c7822f0fe018e837da805fe5ae40a27b7158e4c;hb=c63aa7cd12a077ef1b2b90b119bfef7687c800d0;hpb=6218be7200045a648e8eef5d81e2026d7a02ad28 diff --git a/mono/mini/Makefile.am.in b/mono/mini/Makefile.am.in index 3c7822f0fe0..4592dec23c1 100755 --- a/mono/mini/Makefile.am.in +++ b/mono/mini/Makefile.am.in @@ -37,13 +37,22 @@ sgen_static_libs = \ $(monodir)/mono/utils/libmonoutils.la \ $(GLIB_LIBS) $(LIBICONV) +if FULL_AOT_TESTS +# if the tests are going to run with framework assemblies compiled with +# -d:MOBILE, tell the runtime to remap framework assemblies using the mobile +# runtime info +MOBILE_RUNTIME_ARG=--runtime=mobile +else +MOBILE_RUNTIME_ARG= +endif + CLASS=$(mcs_topdir)/class/lib/$(DEFAULT_PROFILE) RUNTIME_EXECUTABLE = $(if $(BOEHM),$(top_builddir)/mono/mini/mono-boehm,$(top_builddir)/runtime/mono-wrapper) -MINI_RUNTIME = MONO_PATH=$(CLASS) $(RUNTIME_EXECUTABLE) +MINI_RUNTIME = MONO_PATH=$(CLASS) $(RUNTIME_EXECUTABLE) $(MOBILE_RUNTIME_ARG) TOOLS_RUNTIME = MONO_PATH=$(mcs_topdir)/class/lib/build $(top_builddir)/runtime/mono-wrapper -INTERPRETER_RUNTIME = $(MINI_RUNTIME) --interpreter +INTERP_RUNTIME = $(MINI_RUNTIME) --interpreter RUNTIME_AOTCHECK = MONO_PATH="$(CLASS)$(PLATFORM_PATH_SEPARATOR)." $(RUNTIME_EXECUTABLE) MCS = CSC_SDK_PATH_DISABLED= $(TOOLS_RUNTIME) $(CSC) -unsafe -nowarn:0162 -nologo -noconfig -r:$(CLASS)/mscorlib.dll -r:$(CLASS)/System.dll -r:$(CLASS)/System.Core.dll @@ -389,15 +398,15 @@ endif endif if ENABLE_INTERPRETER -interpreter_sources = \ - interpreter/hacks.h \ - interpreter/interp.h \ - interpreter/interp-internals.h \ - interpreter/interp.c \ - interpreter/mintops.h \ - interpreter/mintops.def \ - interpreter/mintops.c \ - interpreter/transform.c +interp_sources = \ + interp/hacks.h \ + interp/interp.h \ + interp/interp-internals.h \ + interp/interp.c \ + interp/mintops.h \ + interp/mintops.def \ + interp/mintops.c \ + interp/transform.c endif if ENABLE_LLVM @@ -530,14 +539,6 @@ endif regtests = $(filter-out $(regtests_DISABLED),$(regtests_UNIVERSAL)) -iregtests = \ - basic.exe \ - basic-float.exe \ - basic-long.exe \ - basic-calls.exe \ - generics.exe \ - objects.exe - if X86 arch_sources = $(x86_sources) arch_built=cpu-x86.h @@ -623,7 +624,7 @@ os_sources = $(darwin_sources) $(posix_sources) monobin_platform_ldflags=-framework CoreFoundation -framework Foundation endif -libmini_la_SOURCES = $(common_sources) $(llvm_sources) $(llvm_runtime_sources) $(interpreter_sources) $(arch_sources) $(os_sources) +libmini_la_SOURCES = $(common_sources) $(llvm_sources) $(llvm_runtime_sources) $(interp_sources) $(arch_sources) $(os_sources) libmini_la_CFLAGS = $(mono_CFLAGS) libmonoboehm_2_0_la_SOURCES = @@ -747,8 +748,8 @@ rcheck-nunit: mono $(regtests) rcheck: mono $(regtests) $(MINI_RUNTIME) --regression $(regtests) -richeck: mono $(iregtests) - $(INTERPRETER_RUNTIME) --regression $(iregtests) +richeck: mono $(regtests) + $(INTERP_RUNTIME) --regression $(regtests) if ARM check-seq-points: @@ -814,9 +815,9 @@ fullaotcheck: $(mono) $(fullaot_regtests) mkdir $(FULLAOT_TMP_DIR) $(MAKE) fullaot-libs AOT_FLAGS="full,$(MONO_FULLAOT_ADDITIONAL_ARGS)$(INVARIANT_AOT_OPTIONS)" GSHAREDVT=$(GSHAREDVT) cp $(regtests) $(fullaot_regtests) generics-variant-types.dll TestDriver.dll $(FULLAOT_TMP_DIR)/ - MONO_PATH=$(FULLAOT_TMP_DIR) $(top_builddir)/runtime/mono-wrapper $(LLVM_AOT_RUNTIME_OPTS) $(GSHAREDVT_RUNTIME_OPTS) --aot="full,$(MONO_FULLAOT_ADDITIONAL_ARGS)$(INVARIANT_AOT_OPTIONS)" $(FULLAOT_TMP_DIR)/{generics-variant-types.dll,TestDriver.dll,*.exe} || exit 1 + MONO_PATH=$(FULLAOT_TMP_DIR) $(top_builddir)/runtime/mono-wrapper $(MOBILE_RUNTIME_ARG) $(LLVM_AOT_RUNTIME_OPTS) $(GSHAREDVT_RUNTIME_OPTS) --aot="full,$(MONO_FULLAOT_ADDITIONAL_ARGS)$(INVARIANT_AOT_OPTIONS)" $(FULLAOT_TMP_DIR)/{generics-variant-types.dll,TestDriver.dll,*.exe} || exit 1 ln -s $(if $(MONO_EXECUTABLE),$(MONO_EXECUTABLE),$$PWD/mono) $(FULLAOT_TMP_DIR)/ - for i in $(fullaot_regtests); do echo $$i; MONO_PATH=$(FULLAOT_TMP_DIR) $(top_builddir)/runtime/mono-wrapper --full-aot $(FULLAOT_TMP_DIR)/$$i --exclude '!FULLAOT' $(ARCH_FULLAOT_EXCLUDE) || exit 1; done + for i in $(fullaot_regtests); do echo $$i; MONO_PATH=$(FULLAOT_TMP_DIR) $(top_builddir)/runtime/mono-wrapper $(MOBILE_RUNTIME_ARG) --full-aot $(FULLAOT_TMP_DIR)/$$i --exclude '!FULLAOT' $(ARCH_FULLAOT_EXCLUDE) || exit 1; done # This can run in parallel fullaot-libs: $(patsubst %,fullaot-tmp/%.dylib,$(FULLAOT_LIBS)) @@ -824,7 +825,7 @@ fullaot-libs: $(patsubst %,fullaot-tmp/%.dylib,$(FULLAOT_LIBS)) fullaot-tmp/%.dylib: $(CLASS)/% cp $(CLASS)/$* fullaot-tmp/ mkdir fullaot-tmp/$*-tmp - MONO_PATH="fullaot-tmp/$(PLATFORM_PATH_SEPARATOR)$(CLASS)" $(top_builddir)/runtime/mono-wrapper $(if $(GSHAREDVT),-O=gsharedvt) --aot=$(AOT_FLAGS),temp-path=fullaot-tmp/$*-tmp fullaot-tmp/$* + MONO_PATH="fullaot-tmp/$(PLATFORM_PATH_SEPARATOR)$(CLASS)" $(top_builddir)/runtime/mono-wrapper $(MOBILE_RUNTIME_ARG) $(if $(GSHAREDVT),-O=gsharedvt) --aot=$(AOT_FLAGS),temp-path=fullaot-tmp/$*-tmp fullaot-tmp/$* rm -rf fullaot-tmp/$*-tmp llvmfullaotcheck: @@ -837,9 +838,9 @@ llvmonlycheck: mono $(llvmonly_regtests) mkdir fullaot-tmp $(MAKE) fullaot-libs AOT_FLAGS="llvmonly,$(MONO_FULLAOT_ADDITIONAL_ARGS)$(INVARIANT_AOT_OPTIONS)" cp $(llvmonly_regtests) generics-variant-types.dll TestDriver.dll fullaot-tmp/ - MONO_PATH=fullaot-tmp $(top_builddir)/runtime/mono-wrapper --aot=llvmonly fullaot-tmp/{generics-variant-types.dll,TestDriver.dll,*.exe} || exit 1 + MONO_PATH=fullaot-tmp $(top_builddir)/runtime/mono-wrapper $(MOBILE_RUNTIME_ARG) --aot=llvmonly fullaot-tmp/{generics-variant-types.dll,TestDriver.dll,*.exe} || exit 1 ln -s $$PWD/mono fullaot-tmp/ - for i in $(llvmonly_regtests); do echo $$i; MONO_PATH=fullaot-tmp $(top_builddir)/runtime/mono-wrapper --llvmonly fullaot-tmp/$$i --exclude '!BITCODE' || exit 1; done + for i in $(llvmonly_regtests); do echo $$i; MONO_PATH=fullaot-tmp $(top_builddir)/runtime/mono-wrapper $(MOBILE_RUNTIME_ARG) --llvmonly fullaot-tmp/$$i --exclude '!BITCODE' || exit 1; done gccheck: gc-test.exe MONO_GC_PARAMS=stack-mark=precise MONO_GC_DEBUG=clear-at-gc ./mono-sgen gc-test.exe