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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZoltan Varga <vargaz@gmail.com>2009-11-17 05:36:08 +0300
committerZoltan Varga <vargaz@gmail.com>2009-11-17 05:36:08 +0300
commit7644c3ef94a74d59d4ec8757b4a95d6796dc2476 (patch)
tree1e9bbf1259d4f3d08ee6eb42d5afab509705a8b3 /configure.in
parenta6c1d63a6c8b1e3d848a13e11565b3c2daf2ec26 (diff)
2009-11-17 Zoltan Varga <vargaz@gmail.com>
* configure.in: Add a --enable-minimal=soft-debug option. svn path=/trunk/mono/; revision=146310
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in8
1 files changed, 6 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index 34b653c43d0..3c994ba0300 100644
--- a/configure.in
+++ b/configure.in
@@ -611,7 +611,7 @@ DISABLED_FEATURES=none
AC_ARG_ENABLE(minimal, [ --enable-minimal=LIST drop support for LIST subsystems.
LIST is a comma-separated list from: aot, profiler, decimal, pinvoke, debug,
- reflection_emit, reflection_emit_save, large_code, logging, com, ssa, generics, attach, jit, simd.],
+ reflection_emit, reflection_emit_save, large_code, logging, com, ssa, generics, attach, jit, simd,soft_debug.],
[
for feature in `echo "$enable_minimal" | sed -e "s/,/ /g"`; do
eval "mono_feature_disable_$feature='yes'"
@@ -709,7 +709,6 @@ if test "x$mono_feature_disable_verifier" = "xyes"; then
AC_MSG_NOTICE([Disabled the metadata and IL verifiers])
fi
-
if test "x$mono_feature_disable_jit" = "xyes"; then
AC_DEFINE(DISABLE_JIT, 1, [Disable the JIT, only full-aot mode will be supported by the runtime.])
AC_MSG_NOTICE([Disabled the JIT engine, only full AOT will be supported])
@@ -722,6 +721,11 @@ if test "x$mono_feature_disable_simd" = "xyes"; then
AC_MSG_NOTICE([Disabled SIMD support])
fi
+if test "x$mono_feature_disable_soft_debug" = "xyes"; then
+ AC_DEFINE(DISABLE_SOFT_DEBUG, 1, [Disable Soft Debugger Agent.])
+ AC_MSG_NOTICE([Disabled Soft Debugger.])
+fi
+
AC_MSG_CHECKING(for visibility __attribute__)
AC_TRY_COMPILE([], [
void __attribute__ ((visibility ("hidden"))) doit (void) {}