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:
Diffstat (limited to 'main/Makefile.am')
-rw-r--r--main/Makefile.am10
1 files changed, 10 insertions, 0 deletions
diff --git a/main/Makefile.am b/main/Makefile.am
index f075ee815b..b1460ef5d5 100644
--- a/main/Makefile.am
+++ b/main/Makefile.am
@@ -116,10 +116,12 @@ endif
run-bundle: $(PROGRAM)
$(MD_LAUNCH_SETUP) $(MD_LAUNCH_EXTRA_ENV) $(MD_BIN_PATH)/MonoDevelop --no-redirect
+run-64: run-sgen-64
run-boehm: runmd
run-sgen: runmd-sgen
+run-sgen-64: runmd-sgen-64
runmd: $(PROGRAM)
$(MD_LAUNCH) --debug $(MD_BIN_PATH)/MonoDevelop.exe --no-redirect
@@ -127,6 +129,9 @@ runmd: $(PROGRAM)
runmd-sgen: $(PROGRAM)
$(MD_LAUNCH)-sgen --debug $(MD_BIN_PATH)/MonoDevelop.exe --no-redirect
+runmd-sgen-64: $(PROGRAM)
+ $(MD_LAUNCH)-sgen64 --debug $(MD_BIN_PATH)/MonoDevelop.exe --no-redirect
+
run-debug: $(PROGRAM)
MONODEVELOP_CONSOLE_LOG_LEVEL=All $(MD_LAUNCH) --debug=casts $(MD_BIN_PATH)/MonoDevelop.exe --no-redirect
@@ -135,6 +140,11 @@ run-gdb: $(PROGRAM)
$(MD_LAUNCH_SETUP) gdb $(RUNTIME) -x gdb.commands
rm -f gdb.commands
+run-gdb-64: $(PROGRAM)
+ echo "run --debug $(MD_BIN_PATH)/MonoDevelop.exe" > gdb.commands
+ $(MD_LAUNCH_SETUP) gdb $(RUNTIME)-64 -x gdb.commands
+ rm -f gdb.commands
+
run-gdb-sgen: $(PROGRAM)
echo "run --debug $(MD_BIN_PATH)/MonoDevelop.exe" > gdb.commands
$(MD_LAUNCH_SETUP) gdb $(RUNTIME)-sgen -x gdb.commands