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-13 10:57:31 +0300
committerGitHub <noreply@github.com>2018-02-13 10:57:31 +0300
commit9690cc307ebab5afad00c169b3b7d38ab3456aa5 (patch)
tree40fa3838432a89a2b11976c73f3057be513f3340 /Makefile
parent5a800f7f693f4f47b3d6011782cc0af588a08cd3 (diff)
[AOT] Fix Cecil not being symbolicated in instruments (#3837)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 7a23bad581..ec0c69a148 100644
--- a/Makefile
+++ b/Makefile
@@ -10,13 +10,13 @@ else
BIN_DIR="$(APP)/Contents/Resources/lib/monodevelop"
endif
-AOT_DIRECTORIES:=$(subst $(SPACE),:,$(shell find $(BIN_DIR)/* -not -path "*azure-functions-cli*" -not -path "*.dSYM*" -not -path $(BIN_DIR)/tests* -type d))
+AOT_DIRECTORIES:=$(subst $(SPACE),:,$(shell find $(BIN_DIR)/* -not -path "*azure-functions-cli*" -not -path "*.dSYM*" -not -path "*/ServiceHub/*" -not -path $(BIN_DIR)/tests* -type d))
MONO_DIR=/Library/Frameworks/Mono.framework/Libraries/mono
MSBUILD_PATH=$(MONO_DIR)/msbuild/15.0/bin
# --assembly-loader=strict will not work for valuetuples here, even with binding redirects
-AOT_COMMAND=mono64 --aot=hybrid --debug
+AOT_COMMAND=mono64 --aot=hybrid --debug --assembly-loader=strict
MONO_AOT:=MONO_PATH="$(AOT_DIRECTORIES):$(MSBUILD_PATH):$(MONO_PATH)" $(AOT_COMMAND) --apply-bindings=$(BIN_DIR)/bin/MonoDevelop.exe.config
MSBUILD_LIBRARIES=Microsoft.Build.dll Microsoft.Build.Framework.dll Microsoft.Build.Utilities.Core.dll