# -*- makefile -*- monolite_path := $(topdir)/class/lib/monolite-$(BUILD_PLATFORM)/$(MONO_CORLIB_VERSION) with_mono_path_monolite = MONO_PATH="$(monolite_path)$(PLATFORM_PATH_SEPARATOR)$(monolite_path)/Facades$(PLATFORM_PATH_SEPARATOR)$$MONO_PATH" monolite_flag := $(depsdir)/use-monolite use_monolite := $(wildcard $(monolite_flag)) MONOLITE_MSCORLIB = $(monolite_path)/mscorlib.dll ifdef use_monolite ifdef MCS_MODE CSC_LOCATION = $(monolite_path)/mcs.exe endif PROFILE_RUNTIME = $(with_mono_path_monolite) $(RUNTIME) BOOTSTRAP_MCS = $(PROFILE_RUNTIME) $(RUNTIME_FLAGS) $(CSC_LOCATION) else PROFILE_RUNTIME = $(EXTERNAL_RUNTIME) ifdef MCS_MODE BOOTSTRAP_MCS = mcs else BOOTSTRAP_MCS = $(PROFILE_RUNTIME) $(RUNTIME_FLAGS) $(CSC_LOCATION) endif endif # # Special setup for boostrap tools which we want to run with system/monolite core libraries # for all libraries build as part of this profile # ILASM = $(PROFILE_RUNTIME) $(RUNTIME_FLAGS) $(topdir)/class/lib/$(BUILD_TOOLS_PROFILE)/tmp/ilasm.exe STRING_REPLACER = $(PROFILE_RUNTIME) $(RUNTIME_FLAGS) $(topdir)/class/lib/$(BUILD_TOOLS_PROFILE)/tmp/cil-stringreplacer.exe GENSOURCES =$(PROFILE_RUNTIME) $(RUNTIME_FLAGS) $(topdir)/class/lib/$(BUILD_TOOLS_PROFILE)/tmp/gensources.exe MCS = $(BOOTSTRAP_MCS) PLATFORMS = macos linux win32 unix DEFAULT_REFERENCES = mscorlib PROFILE_MCS_FLAGS = -d:NET_4_0 -d:NET_4_5 -d:MONO -d:WIN_PLATFORM -d:BOOTSTRAP_BASIC -nowarn:1699 -nostdlib API_BIN_PROFILE = v4.7.1 BOOTSTRAP_BIN_PROFILE = v4.7 NO_SIGN_ASSEMBLY = yes NO_TEST = yes NO_INSTALL = yes FRAMEWORK_VERSION = 4.5 # Compiler all using same bootstrap compiler LIBRARY_COMPILE = $(BOOT_COMPILE) # Verbose basic only # V = 1 # # Copy from rules.make because I don't know how to unset MCS_FLAGS # ifeq ("$(ENABLE_COMPILER_SERVER)","1") COMPILER_SERVER_ARGS=/shared:$(COMPILER_SERVER_PIPENAME) else COMPILER_SERVER_ARGS:= endif USE_MCS_FLAGS = $(COMPILER_SERVER_ARGS) /codepage:$(CODEPAGE) /nologo /noconfig /deterministic $(LOCAL_MCS_FLAGS) $(PLATFORM_MCS_FLAGS) $(PROFILE_MCS_FLAGS) $(MCS_FLAGS) .PHONY: profile-check do-profile-check profile-check: @: ifeq (.,$(thisdir)) all-recursive: do-profile-check all-local: post-profile-cleanup clean-local: clean-profile endif clean-profile: -rm -f $(PROFILE_EXE) $(PROFILE_OUT) $(monolite_flag) post-profile-cleanup: @rm -f $(monolite_flag) $(MAKE) $(MAKE_Q) start-compiler-server PROFILE_EXE = $(depsdir)/basic-profile-check.exe PROFILE_OUT = $(PROFILE_EXE:.exe=.out) MAKE_Q=$(if $(V),,-s) do-profile-check: $(depsdir)/.stamp @ok=:; \ rm -f $(PROFILE_EXE) $(PROFILE_OUT); \ if [ -z '$(MAKE_Q)' ] && [ -n '$(PROFILE_RUNTIME)' ]; then $(PROFILE_RUNTIME) --version; fi; \ $(MAKE) $(MAKE_Q) $(PROFILE_OUT) || ok=false; \ if $$ok; then rm -f $(PROFILE_EXE) $(PROFILE_OUT); else \ if test ! -s $(MONOLITE_MSCORLIB); then \ $(MAKE) $(MAKE_Q) do-get-monolite ; \ fi; \ if test -f $(MONOLITE_MSCORLIB); then \ $(MAKE) $(MAKE_Q) do-profile-check-monolite ; \ else \ echo "*** The runtime '$(PROFILE_RUNTIME)' doesn't appear to be usable." 1>&2; \ echo "*** Check README for information on how to bootstrap a Mono installation." 1>&2 ; \ exit 1; fi; fi ifdef use_monolite do-get-monolite: do-profile-check-monolite: @echo "*** The contents of your 'monolite-$(BUILD_PLATFORM)/$(MONO_CORLIB_VERSION)' directory may be out-of-date" 1>&2 @echo "*** You may want to try 'make get-monolite-latest'" 1>&2 rm -f $(monolite_flag) exit 1 else do-get-monolite: @echo "*** Downloading bootstrap required 'monolite-$(BUILD_PLATFORM)/$(MONO_CORLIB_VERSION)'" 1>&2 $(MAKE) $(MAKE_Q) -C $(topdir)/class get-monolite-latest do-profile-check-monolite: $(depsdir)/.stamp @echo "*** The runtime '$(PROFILE_RUNTIME)' doesn't appear to be usable." 1>&2 @echo "*** Trying the 'monolite-$(BUILD_PLATFORM)/$(MONO_CORLIB_VERSION)' directory." 1>&2 @echo dummy > $(monolite_flag) $(MAKE) do-profile-check endif $(PROFILE_EXE): $(topdir)/build/common/basic-profile-check.cs $(BOOTSTRAP_MCS) /warn:0 /noconfig /langversion:latest /r:System.dll /r:mscorlib.dll /out:$@ $< $(PROFILE_OUT): $(PROFILE_EXE) $(PROFILE_RUNTIME) $< > $@ 2>&1 ifeq ("$(ENABLE_COMPILER_SERVER)","1") BUILDLIB_LOCATION=$(realpath $(topdir))/class/lib/build MONOWRAPPER_LOCATION=$(realpath $(topdir)/../runtime/mono-wrapper) VBCS_LOCATION?=$(dir $(SERVER_CSC_LOCATION))/VBCSCompiler.exe VBCS_RUNTIME=MONO_PATH="$(BUILDLIB_LOCATION)$(PLATFORM_PATH_SEPARATOR)$(BUILDLIB_LOCATION)/Facades$(PLATFORM_PATH_SEPARATOR)$$MONO_PATH" '$(MONOWRAPPER_LOCATION)' export VBCS_RUNTIME export VBCS_LOCATION start-compiler-server: echo Attempting to start compiler server... $(topdir)/build/start-compiler-server.sh '$(realpath $(topdir))' '$(realpath $(topdir)/build)/compiler-server.log' '$(COMPILER_SERVER_PIPENAME)' else start-compiler-server: endif