Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarius Ungureanu <teromario@yahoo.com>2018-02-09 16:16:47 +0300
committerGitHub <noreply@github.com>2018-02-09 16:16:47 +0300
commitcf24c8152953f81295e7f4e39480b23e07e36f6f (patch)
tree6c7f09966476f40285d2dfc1c130ffb3ca8dc2d1 /Makefile
parent6689707c7ee2bdbaaae90f30a3a5312208e0e04f (diff)
[AOT] Fix the AOT profile not working on Mac. (#3813)
Seems like AzureFunctions included a roslyn library, and it ended up being used when AOT-ing, causing mismatches with the core assembly
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 29788858b9..ea142a44f6 100644
--- a/Makefile
+++ b/Makefile
@@ -3,8 +3,8 @@ include main/monodevelop_version
EXTRA_DIST = configure code_of_conduct.md
SPACE :=
SPACE +=
-AOT_DIRECTORIES:=$(subst $(SPACE),:,$(shell find main/build/* -type d))
-MONO_AOT:=MONO_PATH=$(AOT_DIRECTORIES):$(MONO_PATH) mono64 --aot --debug --apply-bindings=main/build/bin/MonoDevelop.exe.config
+AOT_DIRECTORIES:=$(subst $(SPACE),:,$(shell find main/build/* -not -path "*azure-functions-cli*" -not -path "*.dSYM*" -not -path "main/build/tests*" -type d))
+MONO_AOT:=MONO_PATH=$(AOT_DIRECTORIES):/Library/Frameworks/Mono.framework/Versions/Current/lib/mono/msbuild/15.0/bin:$(MONO_PATH) mono64 --aot --debug --apply-bindings=main/build/bin/MonoDevelop.exe.config
all: update_submodules all-recursive