source: trunk/libs/newlib/src/config/sjlj.m4 @ 444

Last change on this file since 444 was 444, checked in by satin@…, 6 years ago

add newlib,libalmos-mkh, restructure shared_syscalls.h and mini-libc

File size: 453 bytes
Line 
1dnl Check if the compiler is configured for setjmp/longjmp exceptions.
2AC_DEFUN([GCC_CHECK_SJLJ_EXCEPTIONS],
3  [AC_CACHE_CHECK([whether the compiler is configured for setjmp/longjmp exceptions],
4    ac_cv_sjlj_exceptions,
5    [AC_COMPILE_IFELSE(
6      [AC_LANG_PROGRAM(
7        [[#ifdef __USING_SJLJ_EXCEPTIONS__
8          this will fail
9          #endif]],
10        [[int i;]])],
11      [ac_cv_sjlj_exceptions=no],
12      [ac_cv_sjlj_exceptions=yes])])])
Note: See TracBrowser for help on using the repository browser.