source: rtems/c/src/aclocal/gcc-pipe.m4 @ f619250

4.115
Last change on this file since f619250 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: 411 bytes
Line 
1dnl Check whether the target compiler accepts -pipe
2
3AC_DEFUN([RTEMS_GCC_PIPE],
4[AC_REQUIRE([RTEMS_PROG_CC])
5AC_REQUIRE([AC_CANONICAL_HOST])
6AC_CACHE_CHECK(whether $CC accepts --pipe,rtems_cv_gcc_pipe,
7[
8rtems_cv_gcc_pipe=no
9if test x"$GCC" = x"yes"; then
10    echo 'void f(){}' >conftest.c
11    if test -z "`${CC} --pipe -c conftest.c 2>&1`";then
12      rtems_cv_gcc_pipe=yes
13    fi
14    rm -f conftest*
15fi
16])
17])
Note: See TracBrowser for help on using the repository browser.