source: rtems/c/src/aclocal/ppc.m4 @ 333a312

4.115
Last change on this file since 333a312 was 91d2e18, checked in by Ralf Corsépius <ralf.corsepius@…>, on 05/04/12 at 06:53:58

Remove CVS-Ids.

  • Property mode set to 100644
File size: 515 bytes
Line 
1#
2# Some hacks for handling powerpc-exception subdirectories
3#
4# Note: Consider this file a temporary band-aid until a better, more general
5# subdirectory handling solution is introduced to RTEMS.
6
7AC_DEFUN([RTEMS_PPC_EXCEPTIONS],
8[
9AC_MSG_CHECKING([for style of powerpc exceptions])
10AC_COMPILE_IFELSE(
11  [AC_LANG_PROGRAM(
12    [],
13    [#if defined(_OLD_EXCEPTIONS)
14     choke me
15     #endif])],
16  [EXCEPTIONS=new],
17  [EXCEPTIONS=old])
18AC_MSG_RESULT([$EXCEPTIONS])
19AC_SUBST([exceptions],[$EXCEPTIONS-exceptions])
20])
Note: See TracBrowser for help on using the repository browser.