summaryrefslogtreecommitdiffstats
path: root/c/src/aclocal/gcc-isystem.m4
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/aclocal/gcc-isystem.m4')
-rw-r--r--c/src/aclocal/gcc-isystem.m422
1 files changed, 0 insertions, 22 deletions
diff --git a/c/src/aclocal/gcc-isystem.m4 b/c/src/aclocal/gcc-isystem.m4
deleted file mode 100644
index c0eebf6432..0000000000
--- a/c/src/aclocal/gcc-isystem.m4
+++ /dev/null
@@ -1,22 +0,0 @@
-dnl Check whether the gcc accepts -isystem
-dnl
-
-AC_DEFUN([RTEMS_GCC_ISYSTEM],
-[AC_REQUIRE([RTEMS_PROG_CC])
-AC_CACHE_CHECK(whether $CC accepts -isystem,rtems_cv_gcc_isystem,
-[
-rtems_cv_gcc_isystem=no
-if test x"$GCC" = x"yes"; then
-cat << EOF > conftest.h
-int conftest123();
-EOF
-cat << EOF > conftest.c
-#include <conftest.h>
-int conftest123() {}
-EOF
- if test -z "`${CC} -isystem./ -c conftest.c 2>&1`";then
- rtems_cv_gcc_isystem=yes
- fi
-fi
-rm -f conftest*
-])])