Changeset 2dbd07f8 in rtems


Ignore:
Timestamp:
11/09/00 17:04:53 (22 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
5fa7205
Parents:
5913d94
Message:

2000-11-09 Ralf Corsepius <corsepiu@…>

  • aclocal/gcc-pipe.m4: Use $GCC instead of ac_cv_prog_gcc (autoconf standard).
  • aclocal/gcc-specs.m4: Use $GCC instead of ac_cv_prog_gcc (autoconf standard).
  • aclocal/multilib.m4: Fix m4-quoting (BUG-FIX).
  • aclocal/check-bsp-cache.m4: Fix m4-quoting (autoconf-2.49b).
  • aclocal/prog-cc.m4: Use $GCC instead of ac_cv_prog_gcc (autoconf standard), replace CC_FOR_TARGET with CC (BUG-FIX).
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • ChangeLog

    r5913d94 r2dbd07f8  
     12000-11-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * aclocal/gcc-pipe.m4: Use $GCC instead of ac_cv_prog_gcc (autoconf
     4        standard).
     5        * aclocal/gcc-specs.m4: Use $GCC instead of ac_cv_prog_gcc (autoconf
     6        standard).
     7        * aclocal/multilib.m4: Fix m4-quoting (BUG-FIX).
     8        * aclocal/check-bsp-cache.m4: Fix m4-quoting (autoconf-2.49b).
     9        * aclocal/prog-cc.m4: Use $GCC instead of ac_cv_prog_gcc (autoconf
     10        standard), replace CC_FOR_TARGET with CC (BUG-FIX).
     11
    1122000-11-09      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    213
  • aclocal/check-bsp-cache.m4

    r5913d94 r2dbd07f8  
    77AC_REQUIRE([RTEMS_ENV_RTEMSBSP])dnl set RTEMS_BSP
    88AC_REQUIRE([RTEMS_TOP])dnl sets RTEMS_TOPdir
    9 AC_CACHE_CHECK("for RTEMS_CPU_MODEL", rtems_cv_RTEMS_CPU_MODEL,
     9AC_CACHE_CHECK([for RTEMS_CPU_MODEL], rtems_cv_RTEMS_CPU_MODEL,
    1010. $RTEMS_TOPdir/c/[$]$1/make/[$]$1.cache)
    1111RTEMS_CPU_MODEL=$rtems_cv_RTEMS_CPU_MODEL
    1212AC_SUBST(RTEMS_CPU_MODEL)
    13 AC_CACHE_CHECK("for RTEMS_BSP_FAMILY", rtems_cv_RTEMS_BSP_FAMILY,
     13AC_CACHE_CHECK([for RTEMS_BSP_FAMILY], rtems_cv_RTEMS_BSP_FAMILY,
    1414. $RTEMS_TOPdir/c/[$]$1/make/[$]$1.cache)
    1515RTEMS_BSP_FAMILY=$rtems_cv_RTEMS_BSP_FAMILY
  • aclocal/gcc-pipe.m4

    r5913d94 r2dbd07f8  
    1111[
    1212rtems_cv_gcc_pipe=no
    13 if test "$ac_cv_prog_gcc" = "yes"; then
     13if test x"$GCC" = x"yes"; then
    1414    echo 'void f(){}' >conftest.c
    1515    if test -z "`${CC} --pipe -c conftest.c 2>&1`";then
  • aclocal/gcc-specs.m4

    r5913d94 r2dbd07f8  
    1010[
    1111rtems_cv_gcc_specs=no
    12 if test "$ac_cv_prog_gcc" = "yes"; then
     12if test x"$GCC" = x"yes"; then
    1313  touch confspec
    1414  echo 'void f(){}' >conftest.c
  • aclocal/multilib.m4

    r5913d94 r2dbd07f8  
    4141
    4242AC_OUTPUT_COMMANDS(
    43   if test -n "$CONFIG_FILES"; then
    44     ac_file=[]ifelse([$1],,Makefile,[$1]) \
    45     . ${multilib_basedir}/../config-ml.in
    46   fi,[
     43[if test -n "$CONFIG_FILES"; then
     44    ac_file=]ifelse([$1],,Makefile,[$1])[ \
     45      . ${multilib_basedir}/../config-ml.in
     46fi],[
    4747  srcdir=${srcdir}
    4848  host=${host}
  • aclocal/prog-cc.m4

    r5913d94 r2dbd07f8  
    1818AC_PROG_CC
    1919
    20 AM_CONDITIONAL(RTEMS_USE_GCC,test x"$ac_cv_prog_gcc" = x"yes")
     20AM_CONDITIONAL(RTEMS_USE_GCC,test x"$GCC" = x"yes")
    2121])
    2222
     
    3636  fi
    3737fi
    38 test "$rtems_cv_gcc_pipe" = "yes" && CC_FOR_TARGET="$CC_FOR_TARGET --pipe"
     38test "$rtems_cv_gcc_pipe" = "yes" && CC="$CC --pipe"
    3939
    4040## Conditional for automake files
Note: See TracChangeset for help on using the changeset viewer.