source: rtems/c/src/aclocal/gcc-specs.m4 @ 19260fb

4.115
Last change on this file since 19260fb was 65c6425, checked in by Joel Sherrill <joel.sherrill@…>, on 05/03/12 at 17:24:46

Remove CVS Id Strings (manual edits after script)

These modifications were required by hand after running the script.
In some cases, the file names did not match patterns. In others,
the format of the file did not match any common patterns.

  • Property mode set to 100644
File size: 405 bytes
Line 
1dnl Check whether the target compiler accepts -specs
2
3AC_DEFUN([RTEMS_GCC_SPECS],
4[AC_REQUIRE([RTEMS_PROG_CC])
5AC_CACHE_CHECK(whether $CC accepts -specs,rtems_cv_gcc_specs,
6[
7rtems_cv_gcc_specs=no
8if test x"$GCC" = x"yes"; then
9  touch confspec
10  echo 'void f(){}' >conftest.c
11  if test -z "`${CC} -specs confspec -c conftest.c 2>&1`";then
12    rtems_cv_gcc_specs=yes
13  fi
14fi
15rm -f confspec conftest*
16])])
Note: See TracBrowser for help on using the repository browser.