mirror of git://gcc.gnu.org/git/gcc.git
re PR libobjc/16448 (FAIL: objc/execute/IMP.m compilation, -O0)
2004-09-16 Andrew Pinski <pinskia@physics.uc.edu>
PR libobjc/16448
* exception.c: Include config.h
(objc_exception_throw): Change _GLIBCXX_SJLJ_EXCEPTIONS to
SJLJ_EXCEPTIONS.
* configure.ac: Find out what exception handling code we use.
* configure: Regenerate.
* config.h.in: New file, regenerate.
From-SVN: r88379
This commit is contained in:
parent
bd042dbb63
commit
049bc40445
|
|
@ -1,3 +1,13 @@
|
||||||
|
2004-09-16 Andrew Pinski <pinskia@physics.uc.edu>
|
||||||
|
|
||||||
|
PR libobjc/16448
|
||||||
|
* exception.c: Include config.h
|
||||||
|
(objc_exception_throw): Change _GLIBCXX_SJLJ_EXCEPTIONS to
|
||||||
|
SJLJ_EXCEPTIONS.
|
||||||
|
* configure.ac: Find out what exception handling code we use.
|
||||||
|
* configure: Regenerate.
|
||||||
|
* config.h.in: New file, regenerate.
|
||||||
|
|
||||||
2004-09-16 Andrew Pinski <apinski@apple.com>
|
2004-09-16 Andrew Pinski <apinski@apple.com>
|
||||||
|
|
||||||
* encoding.c (ALTIVEC_VECTOR_MODE): Define a bogus macro.
|
* encoding.c (ALTIVEC_VECTOR_MODE): Define a bogus macro.
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,52 @@
|
||||||
|
/* config.h.in. Generated from configure.ac by autoheader. */
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <inttypes.h> header file. */
|
||||||
|
#undef HAVE_INTTYPES_H
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <memory.h> header file. */
|
||||||
|
#undef HAVE_MEMORY_H
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <sched.h> header file. */
|
||||||
|
#undef HAVE_SCHED_H
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <stdint.h> header file. */
|
||||||
|
#undef HAVE_STDINT_H
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <stdlib.h> header file. */
|
||||||
|
#undef HAVE_STDLIB_H
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <strings.h> header file. */
|
||||||
|
#undef HAVE_STRINGS_H
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <string.h> header file. */
|
||||||
|
#undef HAVE_STRING_H
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <sys/stat.h> header file. */
|
||||||
|
#undef HAVE_SYS_STAT_H
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <sys/types.h> header file. */
|
||||||
|
#undef HAVE_SYS_TYPES_H
|
||||||
|
|
||||||
|
/* Define to 1 if you have the <unistd.h> header file. */
|
||||||
|
#undef HAVE_UNISTD_H
|
||||||
|
|
||||||
|
/* Define to the address where bug reports for this package should be sent. */
|
||||||
|
#undef PACKAGE_BUGREPORT
|
||||||
|
|
||||||
|
/* Define to the full name of this package. */
|
||||||
|
#undef PACKAGE_NAME
|
||||||
|
|
||||||
|
/* Define to the full name and version of this package. */
|
||||||
|
#undef PACKAGE_STRING
|
||||||
|
|
||||||
|
/* Define to the one symbol short name of this package. */
|
||||||
|
#undef PACKAGE_TARNAME
|
||||||
|
|
||||||
|
/* Define to the version of this package. */
|
||||||
|
#undef PACKAGE_VERSION
|
||||||
|
|
||||||
|
/* Define if the compiler is configured for setjmp/longjmp exceptions. */
|
||||||
|
#undef SJLJ_EXCEPTIONS
|
||||||
|
|
||||||
|
/* Define to 1 if you have the ANSI C header files. */
|
||||||
|
#undef STDC_HEADERS
|
||||||
|
|
@ -843,6 +843,8 @@ Optional Features:
|
||||||
--enable-static=PKGS build static libraries default=yes
|
--enable-static=PKGS build static libraries default=yes
|
||||||
--enable-fast-install=PKGS optimize for fast installation default=yes
|
--enable-fast-install=PKGS optimize for fast installation default=yes
|
||||||
--disable-libtool-lock avoid locking (might break parallel builds)
|
--disable-libtool-lock avoid locking (might break parallel builds)
|
||||||
|
--enable-sjlj-exceptions
|
||||||
|
force use of builtin_setjmp for exceptions
|
||||||
|
|
||||||
Optional Packages:
|
Optional Packages:
|
||||||
--with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
|
--with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
|
||||||
|
|
@ -953,7 +955,7 @@ esac
|
||||||
else
|
else
|
||||||
echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2
|
echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2
|
||||||
fi
|
fi
|
||||||
cd "$ac_popdir"
|
cd $ac_popdir
|
||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
@ -1536,6 +1538,7 @@ esac
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Export source directory.
|
# Export source directory.
|
||||||
# These need to be absolute paths, yet at the same time need to
|
# These need to be absolute paths, yet at the same time need to
|
||||||
# canonicalize only relative paths, because then amd will not unmount
|
# canonicalize only relative paths, because then amd will not unmount
|
||||||
|
|
@ -1596,6 +1599,9 @@ esac
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
ac_config_headers="$ac_config_headers config.h"
|
||||||
|
|
||||||
|
|
||||||
# --------
|
# --------
|
||||||
# Programs
|
# Programs
|
||||||
# --------
|
# --------
|
||||||
|
|
@ -2209,7 +2215,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
|
||||||
cat conftest.err >&5
|
cat conftest.err >&5
|
||||||
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
||||||
(exit $ac_status); } &&
|
(exit $ac_status); } &&
|
||||||
{ ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
|
{ ac_try='test -z "$ac_c_werror_flag"
|
||||||
|
|| test ! -s conftest.err'
|
||||||
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
|
||||||
(eval $ac_try) 2>&5
|
(eval $ac_try) 2>&5
|
||||||
ac_status=$?
|
ac_status=$?
|
||||||
|
|
@ -2267,7 +2274,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
|
||||||
cat conftest.err >&5
|
cat conftest.err >&5
|
||||||
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
||||||
(exit $ac_status); } &&
|
(exit $ac_status); } &&
|
||||||
{ ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
|
{ ac_try='test -z "$ac_c_werror_flag"
|
||||||
|
|| test ! -s conftest.err'
|
||||||
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
|
||||||
(eval $ac_try) 2>&5
|
(eval $ac_try) 2>&5
|
||||||
ac_status=$?
|
ac_status=$?
|
||||||
|
|
@ -2383,7 +2391,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
|
||||||
cat conftest.err >&5
|
cat conftest.err >&5
|
||||||
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
||||||
(exit $ac_status); } &&
|
(exit $ac_status); } &&
|
||||||
{ ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
|
{ ac_try='test -z "$ac_c_werror_flag"
|
||||||
|
|| test ! -s conftest.err'
|
||||||
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
|
||||||
(eval $ac_try) 2>&5
|
(eval $ac_try) 2>&5
|
||||||
ac_status=$?
|
ac_status=$?
|
||||||
|
|
@ -2437,7 +2446,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
|
||||||
cat conftest.err >&5
|
cat conftest.err >&5
|
||||||
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
||||||
(exit $ac_status); } &&
|
(exit $ac_status); } &&
|
||||||
{ ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
|
{ ac_try='test -z "$ac_c_werror_flag"
|
||||||
|
|| test ! -s conftest.err'
|
||||||
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
|
||||||
(eval $ac_try) 2>&5
|
(eval $ac_try) 2>&5
|
||||||
ac_status=$?
|
ac_status=$?
|
||||||
|
|
@ -2482,7 +2492,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
|
||||||
cat conftest.err >&5
|
cat conftest.err >&5
|
||||||
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
||||||
(exit $ac_status); } &&
|
(exit $ac_status); } &&
|
||||||
{ ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
|
{ ac_try='test -z "$ac_c_werror_flag"
|
||||||
|
|| test ! -s conftest.err'
|
||||||
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
|
||||||
(eval $ac_try) 2>&5
|
(eval $ac_try) 2>&5
|
||||||
ac_status=$?
|
ac_status=$?
|
||||||
|
|
@ -2526,7 +2537,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
|
||||||
cat conftest.err >&5
|
cat conftest.err >&5
|
||||||
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
||||||
(exit $ac_status); } &&
|
(exit $ac_status); } &&
|
||||||
{ ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
|
{ ac_try='test -z "$ac_c_werror_flag"
|
||||||
|
|| test ! -s conftest.err'
|
||||||
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
|
||||||
(eval $ac_try) 2>&5
|
(eval $ac_try) 2>&5
|
||||||
ac_status=$?
|
ac_status=$?
|
||||||
|
|
@ -3632,7 +3644,7 @@ test x"$pic_mode" = xno && libtool_flags="$libtool_flags --prefer-non-pic"
|
||||||
case $host in
|
case $host in
|
||||||
*-*-irix6*)
|
*-*-irix6*)
|
||||||
# Find out which ABI we are using.
|
# Find out which ABI we are using.
|
||||||
echo '#line 3635 "configure"' > conftest.$ac_ext
|
echo '#line 3647 "configure"' > conftest.$ac_ext
|
||||||
if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
|
if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
|
||||||
(eval $ac_compile) 2>&5
|
(eval $ac_compile) 2>&5
|
||||||
ac_status=$?
|
ac_status=$?
|
||||||
|
|
@ -3779,7 +3791,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
|
||||||
cat conftest.err >&5
|
cat conftest.err >&5
|
||||||
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
||||||
(exit $ac_status); } &&
|
(exit $ac_status); } &&
|
||||||
{ ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
|
{ ac_try='test -z "$ac_c_werror_flag"
|
||||||
|
|| test ! -s conftest.err'
|
||||||
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
|
||||||
(eval $ac_try) 2>&5
|
(eval $ac_try) 2>&5
|
||||||
ac_status=$?
|
ac_status=$?
|
||||||
|
|
@ -4241,7 +4254,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
|
||||||
cat conftest.err >&5
|
cat conftest.err >&5
|
||||||
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
||||||
(exit $ac_status); } &&
|
(exit $ac_status); } &&
|
||||||
{ ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
|
{ ac_try='test -z "$ac_c_werror_flag"
|
||||||
|
|| test ! -s conftest.err'
|
||||||
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
|
||||||
(eval $ac_try) 2>&5
|
(eval $ac_try) 2>&5
|
||||||
ac_status=$?
|
ac_status=$?
|
||||||
|
|
@ -4411,7 +4425,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
|
||||||
cat conftest.err >&5
|
cat conftest.err >&5
|
||||||
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
||||||
(exit $ac_status); } &&
|
(exit $ac_status); } &&
|
||||||
{ ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
|
{ ac_try='test -z "$ac_c_werror_flag"
|
||||||
|
|| test ! -s conftest.err'
|
||||||
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
|
||||||
(eval $ac_try) 2>&5
|
(eval $ac_try) 2>&5
|
||||||
ac_status=$?
|
ac_status=$?
|
||||||
|
|
@ -4474,7 +4489,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
|
||||||
cat conftest.err >&5
|
cat conftest.err >&5
|
||||||
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
||||||
(exit $ac_status); } &&
|
(exit $ac_status); } &&
|
||||||
{ ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
|
{ ac_try='test -z "$ac_c_werror_flag"
|
||||||
|
|| test ! -s conftest.err'
|
||||||
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
|
||||||
(eval $ac_try) 2>&5
|
(eval $ac_try) 2>&5
|
||||||
ac_status=$?
|
ac_status=$?
|
||||||
|
|
@ -4631,7 +4647,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
|
||||||
cat conftest.err >&5
|
cat conftest.err >&5
|
||||||
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
||||||
(exit $ac_status); } &&
|
(exit $ac_status); } &&
|
||||||
{ ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
|
{ ac_try='test -z "$ac_c_werror_flag"
|
||||||
|
|| test ! -s conftest.err'
|
||||||
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
|
||||||
(eval $ac_try) 2>&5
|
(eval $ac_try) 2>&5
|
||||||
ac_status=$?
|
ac_status=$?
|
||||||
|
|
@ -4798,7 +4815,8 @@ if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
|
||||||
cat conftest.err >&5
|
cat conftest.err >&5
|
||||||
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
||||||
(exit $ac_status); } &&
|
(exit $ac_status); } &&
|
||||||
{ ac_try='test -z "$ac_c_werror_flag" || test ! -s conftest.err'
|
{ ac_try='test -z "$ac_c_werror_flag"
|
||||||
|
|| test ! -s conftest.err'
|
||||||
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
|
{ (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
|
||||||
(eval $ac_try) 2>&5
|
(eval $ac_try) 2>&5
|
||||||
ac_status=$?
|
ac_status=$?
|
||||||
|
|
@ -4940,6 +4958,75 @@ echo "${ECHO_T}$objc_cv_gthread_flags" >&6
|
||||||
GTHREAD_FLAGS=$objc_cv_gthread_flags
|
GTHREAD_FLAGS=$objc_cv_gthread_flags
|
||||||
|
|
||||||
|
|
||||||
|
echo "$as_me:$LINENO: checking for exception model to use" >&5
|
||||||
|
echo $ECHO_N "checking for exception model to use... $ECHO_C" >&6
|
||||||
|
ac_ext=c
|
||||||
|
ac_cpp='$CPP $CPPFLAGS'
|
||||||
|
ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
|
||||||
|
ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
|
||||||
|
ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
||||||
|
|
||||||
|
# Check whether --enable-sjlj-exceptions or --disable-sjlj-exceptions was given.
|
||||||
|
if test "${enable_sjlj_exceptions+set}" = set; then
|
||||||
|
enableval="$enable_sjlj_exceptions"
|
||||||
|
:
|
||||||
|
else
|
||||||
|
cat > conftest.$ac_ext << EOF
|
||||||
|
#line 4975 "configure"
|
||||||
|
@interface Frob
|
||||||
|
@end
|
||||||
|
@implementation Frob
|
||||||
|
@end
|
||||||
|
int proc();
|
||||||
|
int foo()
|
||||||
|
{
|
||||||
|
@try {
|
||||||
|
return proc();
|
||||||
|
}
|
||||||
|
@catch (Frob* ex) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
EOF
|
||||||
|
old_CFLAGS="$CFLAGS"
|
||||||
|
CFLAGS="-x objective-c -fgnu-runtime -fobjc-exceptions -S"
|
||||||
|
if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
|
||||||
|
(eval $ac_compile) 2>&5
|
||||||
|
ac_status=$?
|
||||||
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
||||||
|
(exit $ac_status); }; then
|
||||||
|
if grep _Unwind_SjLj_Resume conftest.s >/dev/null 2>&1 ; then
|
||||||
|
enable_sjlj_exceptions=yes
|
||||||
|
elif grep _Unwind_Resume conftest.s >/dev/null 2>&1 ; then
|
||||||
|
enable_sjlj_exceptions=no
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
CFLAGS="$old_CFLAGS"
|
||||||
|
rm -f conftest*
|
||||||
|
fi;
|
||||||
|
if test x$enable_sjlj_exceptions = xyes; then
|
||||||
|
|
||||||
|
cat >>confdefs.h <<\_ACEOF
|
||||||
|
#define SJLJ_EXCEPTIONS 1
|
||||||
|
_ACEOF
|
||||||
|
|
||||||
|
ac_exception_model_name=sjlj
|
||||||
|
elif test x$enable_sjlj_exceptions = xno; then
|
||||||
|
ac_exception_model_name="call frame"
|
||||||
|
else
|
||||||
|
{ { echo "$as_me:$LINENO: error: unable to detect exception model" >&5
|
||||||
|
echo "$as_me: error: unable to detect exception model" >&2;}
|
||||||
|
{ (exit 1); exit 1; }; }
|
||||||
|
fi
|
||||||
|
ac_ext=c
|
||||||
|
ac_cpp='$CPP $CPPFLAGS'
|
||||||
|
ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
|
||||||
|
ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
|
||||||
|
ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
||||||
|
|
||||||
|
echo "$as_me:$LINENO: result: $ac_exception_model_name" >&5
|
||||||
|
echo "${ECHO_T}$ac_exception_model_name" >&6
|
||||||
|
|
||||||
# ------
|
# ------
|
||||||
# Output
|
# Output
|
||||||
# ------
|
# ------
|
||||||
|
|
@ -5024,38 +5111,7 @@ s/^[^=]*=[ ]*$//;
|
||||||
}'
|
}'
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Transform confdefs.h into DEFS.
|
DEFS=-DHAVE_CONFIG_H
|
||||||
# Protect against shell expansion while executing Makefile rules.
|
|
||||||
# Protect against Makefile macro expansion.
|
|
||||||
#
|
|
||||||
# If the first sed substitution is executed (which looks for macros that
|
|
||||||
# take arguments), then we branch to the quote section. Otherwise,
|
|
||||||
# look for a macro that doesn't take arguments.
|
|
||||||
cat >confdef2opt.sed <<\_ACEOF
|
|
||||||
t clear
|
|
||||||
: clear
|
|
||||||
s,^[ ]*#[ ]*define[ ][ ]*\([^ (][^ (]*([^)]*)\)[ ]*\(.*\),-D\1=\2,g
|
|
||||||
t quote
|
|
||||||
s,^[ ]*#[ ]*define[ ][ ]*\([^ ][^ ]*\)[ ]*\(.*\),-D\1=\2,g
|
|
||||||
t quote
|
|
||||||
d
|
|
||||||
: quote
|
|
||||||
s,[ `~#$^&*(){}\\|;'"<>?],\\&,g
|
|
||||||
s,\[,\\&,g
|
|
||||||
s,\],\\&,g
|
|
||||||
s,\$,$$,g
|
|
||||||
p
|
|
||||||
_ACEOF
|
|
||||||
# We use echo to avoid assuming a particular line-breaking character.
|
|
||||||
# The extra dot is to prevent the shell from consuming trailing
|
|
||||||
# line-breaks from the sub-command output. A line-break within
|
|
||||||
# single-quotes doesn't work because, if this script is created in a
|
|
||||||
# platform that uses two characters for line-breaks (e.g., DOS), tr
|
|
||||||
# would break.
|
|
||||||
ac_LF_and_DOT=`echo; echo .`
|
|
||||||
DEFS=`sed -n -f confdef2opt.sed confdefs.h | tr "$ac_LF_and_DOT" ' .'`
|
|
||||||
rm -f confdef2opt.sed
|
|
||||||
|
|
||||||
|
|
||||||
ac_libobjs=
|
ac_libobjs=
|
||||||
ac_ltlibobjs=
|
ac_ltlibobjs=
|
||||||
|
|
@ -5389,10 +5445,15 @@ Usage: $0 [OPTIONS] [FILE]...
|
||||||
--recheck update $as_me by reconfiguring in the same conditions
|
--recheck update $as_me by reconfiguring in the same conditions
|
||||||
--file=FILE[:TEMPLATE]
|
--file=FILE[:TEMPLATE]
|
||||||
instantiate the configuration file FILE
|
instantiate the configuration file FILE
|
||||||
|
--header=FILE[:TEMPLATE]
|
||||||
|
instantiate the configuration header FILE
|
||||||
|
|
||||||
Configuration files:
|
Configuration files:
|
||||||
$config_files
|
$config_files
|
||||||
|
|
||||||
|
Configuration headers:
|
||||||
|
$config_headers
|
||||||
|
|
||||||
Configuration commands:
|
Configuration commands:
|
||||||
$config_commands
|
$config_commands
|
||||||
|
|
||||||
|
|
@ -5522,6 +5583,7 @@ do
|
||||||
# Handling of arguments.
|
# Handling of arguments.
|
||||||
"Makefile" ) CONFIG_FILES="$CONFIG_FILES Makefile" ;;
|
"Makefile" ) CONFIG_FILES="$CONFIG_FILES Makefile" ;;
|
||||||
"default" ) CONFIG_COMMANDS="$CONFIG_COMMANDS default" ;;
|
"default" ) CONFIG_COMMANDS="$CONFIG_COMMANDS default" ;;
|
||||||
|
"config.h" ) CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;;
|
||||||
*) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5
|
*) { { echo "$as_me:$LINENO: error: invalid argument: $ac_config_target" >&5
|
||||||
echo "$as_me: error: invalid argument: $ac_config_target" >&2;}
|
echo "$as_me: error: invalid argument: $ac_config_target" >&2;}
|
||||||
{ (exit 1); exit 1; }; };;
|
{ (exit 1); exit 1; }; };;
|
||||||
|
|
@ -5534,6 +5596,7 @@ done
|
||||||
# bizarre bug on SunOS 4.1.3.
|
# bizarre bug on SunOS 4.1.3.
|
||||||
if $ac_need_defaults; then
|
if $ac_need_defaults; then
|
||||||
test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
|
test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files
|
||||||
|
test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers
|
||||||
test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands
|
test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
@ -5819,6 +5882,11 @@ esac
|
||||||
*) ac_INSTALL=$ac_top_builddir$INSTALL ;;
|
*) ac_INSTALL=$ac_top_builddir$INSTALL ;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
if test x"$ac_file" != x-; then
|
||||||
|
{ echo "$as_me:$LINENO: creating $ac_file" >&5
|
||||||
|
echo "$as_me: creating $ac_file" >&6;}
|
||||||
|
rm -f "$ac_file"
|
||||||
|
fi
|
||||||
# Let's still pretend it is `configure' which instantiates (i.e., don't
|
# Let's still pretend it is `configure' which instantiates (i.e., don't
|
||||||
# use $as_me), people would be surprised to read:
|
# use $as_me), people would be surprised to read:
|
||||||
# /* config.h. Generated by config.status. */
|
# /* config.h. Generated by config.status. */
|
||||||
|
|
@ -5857,12 +5925,6 @@ echo "$as_me: error: cannot find input file: $f" >&2;}
|
||||||
fi;;
|
fi;;
|
||||||
esac
|
esac
|
||||||
done` || { (exit 1); exit 1; }
|
done` || { (exit 1); exit 1; }
|
||||||
|
|
||||||
if test x"$ac_file" != x-; then
|
|
||||||
{ echo "$as_me:$LINENO: creating $ac_file" >&5
|
|
||||||
echo "$as_me: creating $ac_file" >&6;}
|
|
||||||
rm -f "$ac_file"
|
|
||||||
fi
|
|
||||||
_ACEOF
|
_ACEOF
|
||||||
cat >>$CONFIG_STATUS <<_ACEOF
|
cat >>$CONFIG_STATUS <<_ACEOF
|
||||||
sed "$ac_vpsub
|
sed "$ac_vpsub
|
||||||
|
|
@ -5894,6 +5956,229 @@ done
|
||||||
_ACEOF
|
_ACEOF
|
||||||
cat >>$CONFIG_STATUS <<\_ACEOF
|
cat >>$CONFIG_STATUS <<\_ACEOF
|
||||||
|
|
||||||
|
#
|
||||||
|
# CONFIG_HEADER section.
|
||||||
|
#
|
||||||
|
|
||||||
|
# These sed commands are passed to sed as "A NAME B NAME C VALUE D", where
|
||||||
|
# NAME is the cpp macro being defined and VALUE is the value it is being given.
|
||||||
|
#
|
||||||
|
# ac_d sets the value in "#define NAME VALUE" lines.
|
||||||
|
ac_dA='s,^\([ ]*\)#\([ ]*define[ ][ ]*\)'
|
||||||
|
ac_dB='[ ].*$,\1#\2'
|
||||||
|
ac_dC=' '
|
||||||
|
ac_dD=',;t'
|
||||||
|
# ac_u turns "#undef NAME" without trailing blanks into "#define NAME VALUE".
|
||||||
|
ac_uA='s,^\([ ]*\)#\([ ]*\)undef\([ ][ ]*\)'
|
||||||
|
ac_uB='$,\1#\2define\3'
|
||||||
|
ac_uC=' '
|
||||||
|
ac_uD=',;t'
|
||||||
|
|
||||||
|
for ac_file in : $CONFIG_HEADERS; do test "x$ac_file" = x: && continue
|
||||||
|
# Support "outfile[:infile[:infile...]]", defaulting infile="outfile.in".
|
||||||
|
case $ac_file in
|
||||||
|
- | *:- | *:-:* ) # input from stdin
|
||||||
|
cat >$tmp/stdin
|
||||||
|
ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
|
||||||
|
ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
|
||||||
|
*:* ) ac_file_in=`echo "$ac_file" | sed 's,[^:]*:,,'`
|
||||||
|
ac_file=`echo "$ac_file" | sed 's,:.*,,'` ;;
|
||||||
|
* ) ac_file_in=$ac_file.in ;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
test x"$ac_file" != x- && { echo "$as_me:$LINENO: creating $ac_file" >&5
|
||||||
|
echo "$as_me: creating $ac_file" >&6;}
|
||||||
|
|
||||||
|
# First look for the input files in the build tree, otherwise in the
|
||||||
|
# src tree.
|
||||||
|
ac_file_inputs=`IFS=:
|
||||||
|
for f in $ac_file_in; do
|
||||||
|
case $f in
|
||||||
|
-) echo $tmp/stdin ;;
|
||||||
|
[\\/$]*)
|
||||||
|
# Absolute (can't be DOS-style, as IFS=:)
|
||||||
|
test -f "$f" || { { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
|
||||||
|
echo "$as_me: error: cannot find input file: $f" >&2;}
|
||||||
|
{ (exit 1); exit 1; }; }
|
||||||
|
# Do quote $f, to prevent DOS paths from being IFS'd.
|
||||||
|
echo "$f";;
|
||||||
|
*) # Relative
|
||||||
|
if test -f "$f"; then
|
||||||
|
# Build tree
|
||||||
|
echo "$f"
|
||||||
|
elif test -f "$srcdir/$f"; then
|
||||||
|
# Source tree
|
||||||
|
echo "$srcdir/$f"
|
||||||
|
else
|
||||||
|
# /dev/null tree
|
||||||
|
{ { echo "$as_me:$LINENO: error: cannot find input file: $f" >&5
|
||||||
|
echo "$as_me: error: cannot find input file: $f" >&2;}
|
||||||
|
{ (exit 1); exit 1; }; }
|
||||||
|
fi;;
|
||||||
|
esac
|
||||||
|
done` || { (exit 1); exit 1; }
|
||||||
|
# Remove the trailing spaces.
|
||||||
|
sed 's/[ ]*$//' $ac_file_inputs >$tmp/in
|
||||||
|
|
||||||
|
_ACEOF
|
||||||
|
|
||||||
|
# Transform confdefs.h into two sed scripts, `conftest.defines' and
|
||||||
|
# `conftest.undefs', that substitutes the proper values into
|
||||||
|
# config.h.in to produce config.h. The first handles `#define'
|
||||||
|
# templates, and the second `#undef' templates.
|
||||||
|
# And first: Protect against being on the right side of a sed subst in
|
||||||
|
# config.status. Protect against being in an unquoted here document
|
||||||
|
# in config.status.
|
||||||
|
rm -f conftest.defines conftest.undefs
|
||||||
|
# Using a here document instead of a string reduces the quoting nightmare.
|
||||||
|
# Putting comments in sed scripts is not portable.
|
||||||
|
#
|
||||||
|
# `end' is used to avoid that the second main sed command (meant for
|
||||||
|
# 0-ary CPP macros) applies to n-ary macro definitions.
|
||||||
|
# See the Autoconf documentation for `clear'.
|
||||||
|
cat >confdef2sed.sed <<\_ACEOF
|
||||||
|
s/[\\&,]/\\&/g
|
||||||
|
s,[\\$`],\\&,g
|
||||||
|
t clear
|
||||||
|
: clear
|
||||||
|
s,^[ ]*#[ ]*define[ ][ ]*\([^ (][^ (]*\)\(([^)]*)\)[ ]*\(.*\)$,${ac_dA}\1${ac_dB}\1\2${ac_dC}\3${ac_dD},gp
|
||||||
|
t end
|
||||||
|
s,^[ ]*#[ ]*define[ ][ ]*\([^ ][^ ]*\)[ ]*\(.*\)$,${ac_dA}\1${ac_dB}\1${ac_dC}\2${ac_dD},gp
|
||||||
|
: end
|
||||||
|
_ACEOF
|
||||||
|
# If some macros were called several times there might be several times
|
||||||
|
# the same #defines, which is useless. Nevertheless, we may not want to
|
||||||
|
# sort them, since we want the *last* AC-DEFINE to be honored.
|
||||||
|
uniq confdefs.h | sed -n -f confdef2sed.sed >conftest.defines
|
||||||
|
sed 's/ac_d/ac_u/g' conftest.defines >conftest.undefs
|
||||||
|
rm -f confdef2sed.sed
|
||||||
|
|
||||||
|
# This sed command replaces #undef with comments. This is necessary, for
|
||||||
|
# example, in the case of _POSIX_SOURCE, which is predefined and required
|
||||||
|
# on some systems where configure will not decide to define it.
|
||||||
|
cat >>conftest.undefs <<\_ACEOF
|
||||||
|
s,^[ ]*#[ ]*undef[ ][ ]*[a-zA-Z_][a-zA-Z_0-9]*,/* & */,
|
||||||
|
_ACEOF
|
||||||
|
|
||||||
|
# Break up conftest.defines because some shells have a limit on the size
|
||||||
|
# of here documents, and old seds have small limits too (100 cmds).
|
||||||
|
echo ' # Handle all the #define templates only if necessary.' >>$CONFIG_STATUS
|
||||||
|
echo ' if grep "^[ ]*#[ ]*define" $tmp/in >/dev/null; then' >>$CONFIG_STATUS
|
||||||
|
echo ' # If there are no defines, we may have an empty if/fi' >>$CONFIG_STATUS
|
||||||
|
echo ' :' >>$CONFIG_STATUS
|
||||||
|
rm -f conftest.tail
|
||||||
|
while grep . conftest.defines >/dev/null
|
||||||
|
do
|
||||||
|
# Write a limited-size here document to $tmp/defines.sed.
|
||||||
|
echo ' cat >$tmp/defines.sed <<CEOF' >>$CONFIG_STATUS
|
||||||
|
# Speed up: don't consider the non `#define' lines.
|
||||||
|
echo '/^[ ]*#[ ]*define/!b' >>$CONFIG_STATUS
|
||||||
|
# Work around the forget-to-reset-the-flag bug.
|
||||||
|
echo 't clr' >>$CONFIG_STATUS
|
||||||
|
echo ': clr' >>$CONFIG_STATUS
|
||||||
|
sed ${ac_max_here_lines}q conftest.defines >>$CONFIG_STATUS
|
||||||
|
echo 'CEOF
|
||||||
|
sed -f $tmp/defines.sed $tmp/in >$tmp/out
|
||||||
|
rm -f $tmp/in
|
||||||
|
mv $tmp/out $tmp/in
|
||||||
|
' >>$CONFIG_STATUS
|
||||||
|
sed 1,${ac_max_here_lines}d conftest.defines >conftest.tail
|
||||||
|
rm -f conftest.defines
|
||||||
|
mv conftest.tail conftest.defines
|
||||||
|
done
|
||||||
|
rm -f conftest.defines
|
||||||
|
echo ' fi # grep' >>$CONFIG_STATUS
|
||||||
|
echo >>$CONFIG_STATUS
|
||||||
|
|
||||||
|
# Break up conftest.undefs because some shells have a limit on the size
|
||||||
|
# of here documents, and old seds have small limits too (100 cmds).
|
||||||
|
echo ' # Handle all the #undef templates' >>$CONFIG_STATUS
|
||||||
|
rm -f conftest.tail
|
||||||
|
while grep . conftest.undefs >/dev/null
|
||||||
|
do
|
||||||
|
# Write a limited-size here document to $tmp/undefs.sed.
|
||||||
|
echo ' cat >$tmp/undefs.sed <<CEOF' >>$CONFIG_STATUS
|
||||||
|
# Speed up: don't consider the non `#undef'
|
||||||
|
echo '/^[ ]*#[ ]*undef/!b' >>$CONFIG_STATUS
|
||||||
|
# Work around the forget-to-reset-the-flag bug.
|
||||||
|
echo 't clr' >>$CONFIG_STATUS
|
||||||
|
echo ': clr' >>$CONFIG_STATUS
|
||||||
|
sed ${ac_max_here_lines}q conftest.undefs >>$CONFIG_STATUS
|
||||||
|
echo 'CEOF
|
||||||
|
sed -f $tmp/undefs.sed $tmp/in >$tmp/out
|
||||||
|
rm -f $tmp/in
|
||||||
|
mv $tmp/out $tmp/in
|
||||||
|
' >>$CONFIG_STATUS
|
||||||
|
sed 1,${ac_max_here_lines}d conftest.undefs >conftest.tail
|
||||||
|
rm -f conftest.undefs
|
||||||
|
mv conftest.tail conftest.undefs
|
||||||
|
done
|
||||||
|
rm -f conftest.undefs
|
||||||
|
|
||||||
|
cat >>$CONFIG_STATUS <<\_ACEOF
|
||||||
|
# Let's still pretend it is `configure' which instantiates (i.e., don't
|
||||||
|
# use $as_me), people would be surprised to read:
|
||||||
|
# /* config.h. Generated by config.status. */
|
||||||
|
if test x"$ac_file" = x-; then
|
||||||
|
echo "/* Generated by configure. */" >$tmp/config.h
|
||||||
|
else
|
||||||
|
echo "/* $ac_file. Generated by configure. */" >$tmp/config.h
|
||||||
|
fi
|
||||||
|
cat $tmp/in >>$tmp/config.h
|
||||||
|
rm -f $tmp/in
|
||||||
|
if test x"$ac_file" != x-; then
|
||||||
|
if diff $ac_file $tmp/config.h >/dev/null 2>&1; then
|
||||||
|
{ echo "$as_me:$LINENO: $ac_file is unchanged" >&5
|
||||||
|
echo "$as_me: $ac_file is unchanged" >&6;}
|
||||||
|
else
|
||||||
|
ac_dir=`(dirname "$ac_file") 2>/dev/null ||
|
||||||
|
$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
|
||||||
|
X"$ac_file" : 'X\(//\)[^/]' \| \
|
||||||
|
X"$ac_file" : 'X\(//\)$' \| \
|
||||||
|
X"$ac_file" : 'X\(/\)' \| \
|
||||||
|
. : '\(.\)' 2>/dev/null ||
|
||||||
|
echo X"$ac_file" |
|
||||||
|
sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
|
||||||
|
/^X\(\/\/\)[^/].*/{ s//\1/; q; }
|
||||||
|
/^X\(\/\/\)$/{ s//\1/; q; }
|
||||||
|
/^X\(\/\).*/{ s//\1/; q; }
|
||||||
|
s/.*/./; q'`
|
||||||
|
{ if $as_mkdir_p; then
|
||||||
|
mkdir -p "$ac_dir"
|
||||||
|
else
|
||||||
|
as_dir="$ac_dir"
|
||||||
|
as_dirs=
|
||||||
|
while test ! -d "$as_dir"; do
|
||||||
|
as_dirs="$as_dir $as_dirs"
|
||||||
|
as_dir=`(dirname "$as_dir") 2>/dev/null ||
|
||||||
|
$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
|
||||||
|
X"$as_dir" : 'X\(//\)[^/]' \| \
|
||||||
|
X"$as_dir" : 'X\(//\)$' \| \
|
||||||
|
X"$as_dir" : 'X\(/\)' \| \
|
||||||
|
. : '\(.\)' 2>/dev/null ||
|
||||||
|
echo X"$as_dir" |
|
||||||
|
sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
|
||||||
|
/^X\(\/\/\)[^/].*/{ s//\1/; q; }
|
||||||
|
/^X\(\/\/\)$/{ s//\1/; q; }
|
||||||
|
/^X\(\/\).*/{ s//\1/; q; }
|
||||||
|
s/.*/./; q'`
|
||||||
|
done
|
||||||
|
test ! -n "$as_dirs" || mkdir $as_dirs
|
||||||
|
fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5
|
||||||
|
echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;}
|
||||||
|
{ (exit 1); exit 1; }; }; }
|
||||||
|
|
||||||
|
rm -f $ac_file
|
||||||
|
mv $tmp/config.h $ac_file
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
cat $tmp/config.h
|
||||||
|
rm -f $tmp/config.h
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
_ACEOF
|
||||||
|
cat >>$CONFIG_STATUS <<\_ACEOF
|
||||||
|
|
||||||
#
|
#
|
||||||
# CONFIG_COMMANDS section.
|
# CONFIG_COMMANDS section.
|
||||||
#
|
#
|
||||||
|
|
|
||||||
|
|
@ -167,6 +167,8 @@ esac
|
||||||
AC_SUBST(includedirname)
|
AC_SUBST(includedirname)
|
||||||
AC_SUBST(libext)
|
AC_SUBST(libext)
|
||||||
|
|
||||||
|
AC_CONFIG_HEADERS(config.h)
|
||||||
|
|
||||||
# --------
|
# --------
|
||||||
# Programs
|
# Programs
|
||||||
# --------
|
# --------
|
||||||
|
|
@ -228,6 +230,60 @@ fi])
|
||||||
GTHREAD_FLAGS=$objc_cv_gthread_flags
|
GTHREAD_FLAGS=$objc_cv_gthread_flags
|
||||||
AC_SUBST(GTHREAD_FLAGS)
|
AC_SUBST(GTHREAD_FLAGS)
|
||||||
|
|
||||||
|
AC_MSG_CHECKING([for exception model to use])
|
||||||
|
AC_LANG_PUSH(C)
|
||||||
|
AC_ARG_ENABLE(sjlj-exceptions,
|
||||||
|
AS_HELP_STRING([--enable-sjlj-exceptions],
|
||||||
|
[force use of builtin_setjmp for exceptions]),
|
||||||
|
[:],
|
||||||
|
[dnl Botheration. Now we've got to detect the exception model.
|
||||||
|
dnl Link tests against libgcc.a are problematic since -- at least
|
||||||
|
dnl as of this writing -- we've not been given proper -L bits for
|
||||||
|
dnl single-tree newlib and libgloss.
|
||||||
|
dnl
|
||||||
|
dnl This is what AC_TRY_COMPILE would do if it didn't delete the
|
||||||
|
dnl conftest files before we got a change to grep them first.
|
||||||
|
cat > conftest.$ac_ext << EOF
|
||||||
|
[#]line __oline__ "configure"
|
||||||
|
@interface Frob
|
||||||
|
@end
|
||||||
|
@implementation Frob
|
||||||
|
@end
|
||||||
|
int proc();
|
||||||
|
int foo()
|
||||||
|
{
|
||||||
|
@try {
|
||||||
|
return proc();
|
||||||
|
}
|
||||||
|
@catch (Frob* ex) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
EOF
|
||||||
|
old_CFLAGS="$CFLAGS"
|
||||||
|
dnl work around that we don't have Objective-C support in autoconf
|
||||||
|
CFLAGS="-x objective-c -fgnu-runtime -fobjc-exceptions -S"
|
||||||
|
if AC_TRY_EVAL(ac_compile); then
|
||||||
|
if grep _Unwind_SjLj_Resume conftest.s >/dev/null 2>&1 ; then
|
||||||
|
enable_sjlj_exceptions=yes
|
||||||
|
elif grep _Unwind_Resume conftest.s >/dev/null 2>&1 ; then
|
||||||
|
enable_sjlj_exceptions=no
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
CFLAGS="$old_CFLAGS"
|
||||||
|
rm -f conftest*])
|
||||||
|
if test x$enable_sjlj_exceptions = xyes; then
|
||||||
|
AC_DEFINE(SJLJ_EXCEPTIONS, 1,
|
||||||
|
[Define if the compiler is configured for setjmp/longjmp exceptions.])
|
||||||
|
ac_exception_model_name=sjlj
|
||||||
|
elif test x$enable_sjlj_exceptions = xno; then
|
||||||
|
ac_exception_model_name="call frame"
|
||||||
|
else
|
||||||
|
AC_MSG_ERROR([unable to detect exception model])
|
||||||
|
fi
|
||||||
|
AC_LANG_POP(C)
|
||||||
|
AC_MSG_RESULT($ac_exception_model_name)
|
||||||
|
|
||||||
# ------
|
# ------
|
||||||
# Output
|
# Output
|
||||||
# ------
|
# ------
|
||||||
|
|
|
||||||
|
|
@ -25,6 +25,7 @@ Boston, MA 02111-1307, USA. */
|
||||||
executable file might be covered by the GNU General Public License. */
|
executable file might be covered by the GNU General Public License. */
|
||||||
|
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
#include "config.h"
|
||||||
#include "objc/objc-api.h"
|
#include "objc/objc-api.h"
|
||||||
#include "unwind.h"
|
#include "unwind.h"
|
||||||
#include "unwind-pe.h"
|
#include "unwind-pe.h"
|
||||||
|
|
@ -356,7 +357,7 @@ objc_exception_throw (id value)
|
||||||
header->base.exception_cleanup = __objc_exception_cleanup;
|
header->base.exception_cleanup = __objc_exception_cleanup;
|
||||||
header->value = value;
|
header->value = value;
|
||||||
|
|
||||||
#ifdef _GLIBCXX_SJLJ_EXCEPTIONS
|
#ifdef SJLJ_EXCEPTIONS
|
||||||
_Unwind_SjLj_RaiseException (&header->base);
|
_Unwind_SjLj_RaiseException (&header->base);
|
||||||
#else
|
#else
|
||||||
_Unwind_RaiseException (&header->base);
|
_Unwind_RaiseException (&header->base);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue