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:
authorDietmar Maurer <dietmar@mono-cvs.ximian.com>2002-11-28 13:02:07 +0300
committerDietmar Maurer <dietmar@mono-cvs.ximian.com>2002-11-28 13:02:07 +0300
commitb6bb40164b894fc5a3cc6ee2aaa29a8ed925cb59 (patch)
treee1f42c28e3b0701e7f3d4fde102dd740cab5be08 /configure.in
parente64e5000508d63142143d8ee0a7da98799834f98 (diff)
2002-11-28 Dietmar Maurer <dietmar@ximian.com>
* exception.c (x86_unwind_native_frame): support exceptions inside native code using gcc generated exception tables (-fexception). 2002-11-19 Dietmar Maurer <dietmar@ximian.com> * exception.c: include some code from Zoltan Varga, but modified it slightly. svn path=/trunk/mono/; revision=9222
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index a92b9f37df6..32fab6dadbb 100644
--- a/configure.in
+++ b/configure.in
@@ -25,7 +25,8 @@ case "$host" in
;;
*-*-linux*)
platform_win32=no
- CPPFLAGS="$CPPFLAGS -DGC_LINUX_THREADS -D_GNU_SOURCE -D_REENTRANT"
+ AC_DEFINE(MONO_USE_EXC_TABLES)
+ CPPFLAGS="$CPPFLAGS -DGC_LINUX_THREADS -D_GNU_SOURCE -D_REENTRANT -fexceptions"
libdl="-ldl"
;;
*-*-solaris*)