1
dnl as-compiler-flag.m4 0.1.0
3
dnl autostars m4 macro for detection of compiler flags
5
dnl David Schleef <ds@schleef.org>
7
dnl $Id: as-compiler-flag.m4,v 1.1 2004/06/01 09:33:45 thomasvs Exp $
9
dnl AS_COMPILER_FLAG(CFLAGS, ACTION-IF-ACCEPTED, [ACTION-IF-NOT-ACCEPTED])
10
dnl Tries to compile with the given CFLAGS.
11
dnl Runs ACTION-IF-ACCEPTED if the compiler can compile with the flags,
12
dnl and ACTION-IF-NOT-ACCEPTED otherwise.
14
AC_DEFUN([AS_COMPILER_FLAG],
16
AC_MSG_CHECKING([to see if compiler understands $1])
21
AC_TRY_COMPILE([ ], [], [flag_ok=yes], [flag_ok=no])
24
if test "X$flag_ok" = Xyes ; then
31
AC_MSG_RESULT([$flag_ok])