2001-02-20 Ralf Corsepius <corsepiu@faw.uni-ulm.de>

* aclocal/config-subdirs.m4: Let CC default to $host_alias-gcc in
	TARGET_CONFIG_SUBDIRS.
	* aclocal/enable-bsp.m4: fix quoting.
	* aclocal/check-bsps.m4, aclocal/bsp-alias.m4: Add pc386dx.
This commit is contained in:
Joel Sherrill
2001-02-21 14:20:50 +00:00
parent 85371f786b
commit b50b3c841a
5 changed files with 11 additions and 3 deletions

View File

@@ -1,3 +1,10 @@
2001-02-20 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* aclocal/config-subdirs.m4: Let CC default to $host_alias-gcc in
TARGET_CONFIG_SUBDIRS.
* aclocal/enable-bsp.m4: fix quoting.
* aclocal/check-bsps.m4, aclocal/bsp-alias.m4: Add pc386dx.
2001-02-03 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* aclocal/config-subdirs.m4: New file.

View File

@@ -16,6 +16,7 @@ AC_DEFUN(_RTEMS_BSP_ALIAS,
p4600) $2=p4000 ;; # mips64orion - p4000 board w/IDT 4600
p4650) $2=p4000 ;; # mips64orion - p4000 board w/IDT 4650
mbx8*) $2=mbx8xx ;; # MBX821/MBX860 board
pc386dx) $2=pc386 ;; # i386 - PC w/o FPU
pc486) $2=pc386 ;; # i386 - PC with i486DX
pc586) $2=pc386 ;; # i386 - PC with Pentium
pc686) $2=pc386 ;; # i386 - PC with PentiumPro

View File

@@ -27,7 +27,7 @@ AC_MSG_CHECKING([for bsps])
mvme162) rtems_bsp="$rtems_bsp mvme162 mvme162lx";;
mbx8xx) rtems_bsp="$rtems_bsp mbx821_001 mbx860_002";;
motorola_powerpc) rtems_bsp="$rtems_bsp mvme2307 mcp750";;
pc386) rtems_bsp="$rtems_bsp pc386 pc486 pc586 pc686 pck6";;
pc386) rtems_bsp="$rtems_bsp pc386 pc386dx pc486 pc586 pc686 pck6";;
erc32) rtems_bsp="$rtems_bsp erc32 erc32nfp";;
leon) rtems_bsp="$rtems_bsp leon1 leon2";;
sim68000) rtems_bsp="$rtems_bsp sim68000 simcpu32";;

View File

@@ -230,7 +230,7 @@ if test "$no_recursion" != yes; then
_RTEMS_GIVEN_INSTALL
echo "[running ${CONFIG_SHELL-/bin/sh} $ac_sub_configure $ac_sub_configure_args --cache-file=$ac_sub_cache_file] --srcdir=$ac_sub_srcdir"
CC=${CC_FOR_HOST}; export CC;
CC=${CC_FOR_HOST-$host_alias-gcc}; export CC;
# The eval makes quoting arguments work.
if eval ${CONFIG_SHELL-/bin/sh} $ac_sub_configure \
$ac_sub_configure_args --srcdir=$ac_sub_srcdir \

View File

@@ -7,7 +7,7 @@ AC_DEFUN(RTEMS_ENABLE_RTEMSBSP,
[
AC_BEFORE([$0], [RTEMS_ENV_RTEMSBSP])dnl
AC_ARG_ENABLE(rtemsbsp,
[ --enable-rtemsbsp=bsp1 bsp2 .. BSPs to include in build],
[ --enable-rtemsbsp=\"bsp1 bsp2 ..\" BSPs to include in build],
[case "${enableval}" in
yes|no) AC_MSG_ERROR([missing argument to --enable-rtemsbsp=\"bsp1 bsp2\"]);;
*) $1=$enableval;;