source: rtems/testsuites/aclocal/check-cpuopts.m4 @ bc931b8e

4.104.114.84.95
Last change on this file since bc931b8e was bc931b8e, checked in by Ralf Corsepius <ralf.corsepius@…>, on 11/09/05 at 03:44:30

Add config.cache support.

  • Property mode set to 100644
File size: 252 bytes
Line 
1# RTEMS_CHECK_CPUOPTS(define)
2AC_DEFUN([RTEMS_CHECK_CPUOPTS],
3[
4AC_CACHE_CHECK(
5  [for $1],
6  [rtems_cv_$1],
7  [AC_COMPILE_IFELSE([
8#include <rtems/score/cpuopts.h>
9#ifndef $1
10choke me
11#endif
12    ],
13    [rtems_cv_$1=yes],
14    [rtems_cv_$1=no])
15  ])
16])
Note: See TracBrowser for help on using the repository browser.