Changeset 2dbd07f8 in rtems
- Timestamp:
- 11/09/00 17:04:53 (22 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 5fa7205
- Parents:
- 5913d94
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
ChangeLog
r5913d94 r2dbd07f8 1 2000-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 1 12 2000-11-09 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 13 -
aclocal/check-bsp-cache.m4
r5913d94 r2dbd07f8 7 7 AC_REQUIRE([RTEMS_ENV_RTEMSBSP])dnl set RTEMS_BSP 8 8 AC_REQUIRE([RTEMS_TOP])dnl sets RTEMS_TOPdir 9 AC_CACHE_CHECK( "for RTEMS_CPU_MODEL", rtems_cv_RTEMS_CPU_MODEL,9 AC_CACHE_CHECK([for RTEMS_CPU_MODEL], rtems_cv_RTEMS_CPU_MODEL, 10 10 . $RTEMS_TOPdir/c/[$]$1/make/[$]$1.cache) 11 11 RTEMS_CPU_MODEL=$rtems_cv_RTEMS_CPU_MODEL 12 12 AC_SUBST(RTEMS_CPU_MODEL) 13 AC_CACHE_CHECK( "for RTEMS_BSP_FAMILY", rtems_cv_RTEMS_BSP_FAMILY,13 AC_CACHE_CHECK([for RTEMS_BSP_FAMILY], rtems_cv_RTEMS_BSP_FAMILY, 14 14 . $RTEMS_TOPdir/c/[$]$1/make/[$]$1.cache) 15 15 RTEMS_BSP_FAMILY=$rtems_cv_RTEMS_BSP_FAMILY -
aclocal/gcc-pipe.m4
r5913d94 r2dbd07f8 11 11 [ 12 12 rtems_cv_gcc_pipe=no 13 if test "$ac_cv_prog_gcc" ="yes"; then13 if test x"$GCC" = x"yes"; then 14 14 echo 'void f(){}' >conftest.c 15 15 if test -z "`${CC} --pipe -c conftest.c 2>&1`";then -
aclocal/gcc-specs.m4
r5913d94 r2dbd07f8 10 10 [ 11 11 rtems_cv_gcc_specs=no 12 if test "$ac_cv_prog_gcc" ="yes"; then12 if test x"$GCC" = x"yes"; then 13 13 touch confspec 14 14 echo 'void f(){}' >conftest.c -
aclocal/multilib.m4
r5913d94 r2dbd07f8 41 41 42 42 AC_OUTPUT_COMMANDS( 43 44 ac_file= []ifelse([$1],,Makefile,[$1])\45 . ${multilib_basedir}/../config-ml.in46 fi,[43 [if test -n "$CONFIG_FILES"; then 44 ac_file=]ifelse([$1],,Makefile,[$1])[ \ 45 . ${multilib_basedir}/../config-ml.in 46 fi],[ 47 47 srcdir=${srcdir} 48 48 host=${host} -
aclocal/prog-cc.m4
r5913d94 r2dbd07f8 18 18 AC_PROG_CC 19 19 20 AM_CONDITIONAL(RTEMS_USE_GCC,test x"$ ac_cv_prog_gcc" = x"yes")20 AM_CONDITIONAL(RTEMS_USE_GCC,test x"$GCC" = x"yes") 21 21 ]) 22 22 … … 36 36 fi 37 37 fi 38 test "$rtems_cv_gcc_pipe" = "yes" && CC _FOR_TARGET="$CC_FOR_TARGET--pipe"38 test "$rtems_cv_gcc_pipe" = "yes" && CC="$CC --pipe" 39 39 40 40 ## Conditional for automake files
Note: See TracChangeset
for help on using the changeset viewer.