forked from Imagelibrary/rtems
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:
@@ -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>
|
2001-02-03 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
* aclocal/config-subdirs.m4: New file.
|
* aclocal/config-subdirs.m4: New file.
|
||||||
|
|||||||
@@ -16,6 +16,7 @@ AC_DEFUN(_RTEMS_BSP_ALIAS,
|
|||||||
p4600) $2=p4000 ;; # mips64orion - p4000 board w/IDT 4600
|
p4600) $2=p4000 ;; # mips64orion - p4000 board w/IDT 4600
|
||||||
p4650) $2=p4000 ;; # mips64orion - p4000 board w/IDT 4650
|
p4650) $2=p4000 ;; # mips64orion - p4000 board w/IDT 4650
|
||||||
mbx8*) $2=mbx8xx ;; # MBX821/MBX860 board
|
mbx8*) $2=mbx8xx ;; # MBX821/MBX860 board
|
||||||
|
pc386dx) $2=pc386 ;; # i386 - PC w/o FPU
|
||||||
pc486) $2=pc386 ;; # i386 - PC with i486DX
|
pc486) $2=pc386 ;; # i386 - PC with i486DX
|
||||||
pc586) $2=pc386 ;; # i386 - PC with Pentium
|
pc586) $2=pc386 ;; # i386 - PC with Pentium
|
||||||
pc686) $2=pc386 ;; # i386 - PC with PentiumPro
|
pc686) $2=pc386 ;; # i386 - PC with PentiumPro
|
||||||
|
|||||||
@@ -27,7 +27,7 @@ AC_MSG_CHECKING([for bsps])
|
|||||||
mvme162) rtems_bsp="$rtems_bsp mvme162 mvme162lx";;
|
mvme162) rtems_bsp="$rtems_bsp mvme162 mvme162lx";;
|
||||||
mbx8xx) rtems_bsp="$rtems_bsp mbx821_001 mbx860_002";;
|
mbx8xx) rtems_bsp="$rtems_bsp mbx821_001 mbx860_002";;
|
||||||
motorola_powerpc) rtems_bsp="$rtems_bsp mvme2307 mcp750";;
|
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";;
|
erc32) rtems_bsp="$rtems_bsp erc32 erc32nfp";;
|
||||||
leon) rtems_bsp="$rtems_bsp leon1 leon2";;
|
leon) rtems_bsp="$rtems_bsp leon1 leon2";;
|
||||||
sim68000) rtems_bsp="$rtems_bsp sim68000 simcpu32";;
|
sim68000) rtems_bsp="$rtems_bsp sim68000 simcpu32";;
|
||||||
|
|||||||
@@ -230,7 +230,7 @@ if test "$no_recursion" != yes; then
|
|||||||
_RTEMS_GIVEN_INSTALL
|
_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"
|
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.
|
# The eval makes quoting arguments work.
|
||||||
if eval ${CONFIG_SHELL-/bin/sh} $ac_sub_configure \
|
if eval ${CONFIG_SHELL-/bin/sh} $ac_sub_configure \
|
||||||
$ac_sub_configure_args --srcdir=$ac_sub_srcdir \
|
$ac_sub_configure_args --srcdir=$ac_sub_srcdir \
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ AC_DEFUN(RTEMS_ENABLE_RTEMSBSP,
|
|||||||
[
|
[
|
||||||
AC_BEFORE([$0], [RTEMS_ENV_RTEMSBSP])dnl
|
AC_BEFORE([$0], [RTEMS_ENV_RTEMSBSP])dnl
|
||||||
AC_ARG_ENABLE(rtemsbsp,
|
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
|
[case "${enableval}" in
|
||||||
yes|no) AC_MSG_ERROR([missing argument to --enable-rtemsbsp=\"bsp1 bsp2\"]);;
|
yes|no) AC_MSG_ERROR([missing argument to --enable-rtemsbsp=\"bsp1 bsp2\"]);;
|
||||||
*) $1=$enableval;;
|
*) $1=$enableval;;
|
||||||
|
|||||||
Reference in New Issue
Block a user