summaryrefslogtreecommitdiffstats
path: root/c/src/exec/aclocal/prog-cc.m4
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2002-07-22 09:37:05 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2002-07-22 09:37:05 +0000
commitb7b3e5e9397547b4af92c5727c92f58376a08832 (patch)
tree64f95b369d3edcda61ec26d149344516d621ccee /c/src/exec/aclocal/prog-cc.m4
parent2002-07-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-b7b3e5e9397547b4af92c5727c92f58376a08832.tar.bz2
Remove everything.
Diffstat (limited to 'c/src/exec/aclocal/prog-cc.m4')
-rw-r--r--c/src/exec/aclocal/prog-cc.m445
1 files changed, 0 insertions, 45 deletions
diff --git a/c/src/exec/aclocal/prog-cc.m4 b/c/src/exec/aclocal/prog-cc.m4
deleted file mode 100644
index c3738bec09..0000000000
--- a/c/src/exec/aclocal/prog-cc.m4
+++ /dev/null
@@ -1,45 +0,0 @@
-dnl
-dnl $Id$
-dnl
-dnl Check for target gcc
-dnl
-
-AC_DEFUN(RTEMS_PROG_CC,
-[
-AC_BEFORE([$0], [AC_PROG_CPP])dnl
-AC_BEFORE([$0], [AC_PROG_CC])dnl
-AC_BEFORE([$0], [RTEMS_CANONICALIZE_TOOLS])dnl
-
-RTEMS_CHECK_TOOL(CC,gcc)
-test -z "$CC" && \
- AC_MSG_ERROR([no acceptable cc found in \$PATH])
-AC_PROG_CC
-AC_PROG_CPP
-
-AM_CONDITIONAL(RTEMS_USE_GCC,test x"$GCC" = x"yes")
-])
-
-AC_DEFUN(RTEMS_PROG_CC_FOR_TARGET,
-[
-dnl check target cc
-RTEMS_PROG_CC
-dnl check if the compiler supports --specs
-RTEMS_GCC_SPECS
-dnl check if the target compiler may use --pipe
-RTEMS_GCC_PIPE
-test "$rtems_cv_gcc_pipe" = "yes" && CC="$CC --pipe"
-
-if test "$GCC" = yes; then
-]
-m4_if([$1],,[],[CPPFLAGS="$CPPFLAGS $1"])
-[
-CFLAGS="-g -Wall"
-fi
-
-dnl FIXME: HACK for egcs/cygwin mixing '\\' and '/' in gcc -print-*
-#case $build_os in
-#*cygwin*) GCCSED="| sed 's%\\\\%/%g'" ;;
-#*) ;;
-#esac
-AC_SUBST(GCCSED)
-])