summaryrefslogblamecommitdiffstats
path: root/testsuites/aclocal/check-cpuopts.m4
blob: f7fc99ed740c4bf0ba621f8beb04302e3eabc1b5 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11


                               



                      



                                



                      
  
# RTEMS_CHECK_CPUOPTS(define)
AC_DEFUN([RTEMS_CHECK_CPUOPTS],
[
AC_CACHE_CHECK(
  [for $1],
  [rtems_cv_$1],
  [AC_COMPILE_IFELSE([
#include <rtems/score/cpuopts.h>
#ifndef $1
choke me
#endif
    ],
    [rtems_cv_$1=yes],
    [rtems_cv_$1=no])
  ])
])