forked from Imagelibrary/rtems
* macros: New directory. * macros/bsp-alias.m4: new file. * macros/canonical-host.m4: new file. * macros/canonical-target-name.m4: new file. * macros/canonicalize-tools.m4: new file. * macros/check-bsp-cache.m4: new file. * macros/check-bsps.m4: new file. * macros/check-cpu.m4: new file. * macros/rtems-debug.m4: new file. * macros/check-cxx.m4: new file. * macros/check-itron.m4: new file. * macros/check-multiprocessing.m4: new file. * macros/check-networking.m4: new file. * macros/check-newlib.m4: new file. * macros/check-posix.m4: new file. * macros/check-rdbg.m4: new file. * macros/enable-bare.m4: new file. * macros/enable-cxx.m4: new file. * macros/enable-gcc28.m4: new file. * macros/enable-inlines.m4: new file. * macros/enable-itron.m4: new file. * macros/enable-libcdir.m4: new file. * macros/enable-multiprocessing.m4: new file. * macros/enable-networking.m4: new file. * macros/enable-posix.m4: new file. * macros/enable-rdbg.m4: new file. * macros/enable-rtemsbsp.m4: new file. * macros/enable-tests.m4: new file. * macros/gcc-pipe.m4: new file. * macros/gcc-specs.m4: new file. * macros/i386-gas-code16.m4: new file. * macros/path-ksh.m4: new file. * macros/path-perl.m4: new file. * macros/prog-cc.m4: new file. * macros/prog-cxx.m4: new file. * macros/project-root.m4: new file. * macros/rtems-top.m4: new file. * macros/sysv-ipc.m4: new file. * macros/target.m4: new file. * macros/rtems-test-no-pause.m4: new file. * macros/multilib.m4: new file. * macros/tool-paths.m4: new file. * macros/tool-prefix.m4: new file.
34 lines
1.4 KiB
Plaintext
34 lines
1.4 KiB
Plaintext
dnl
|
|
dnl $Id$
|
|
dnl
|
|
|
|
dnl _RTEMS_BSP_ALIAS(BSP_ALIAS,RTEMS_BSP_FAMILY)
|
|
dnl Internal subroutine to RTEMS_BSP_ALIAS
|
|
AC_DEFUN(_RTEMS_BSP_ALIAS,
|
|
[# account for "aliased" bsps which share source code
|
|
case $1 in
|
|
simcpu32) $2=sim68000 ;; # BSVC CPU32 variant
|
|
c3xsim) $2=c4xsim ;; # TI C3x Simulator in gdb
|
|
mcp750) $2=motorola_powerpc ;; # Motorola PPC board variant
|
|
mvme2307) $2=motorola_powerpc ;; # Motorola PPC board variant
|
|
mvme162lx) $2=mvme162 ;; # m68k - mvme162 board variant
|
|
gen68360_040) $2=gen68360 ;; # m68k - 68360 in companion mode
|
|
p4600) $2=p4000 ;; # mips64orion - p4000 board w/IDT 4600
|
|
p4650) $2=p4000 ;; # mips64orion - p4000 board w/IDT 4650
|
|
mbx8*) $2=mbx8xx ;; # MBX821/MBX860 board
|
|
pc486) $2=pc386 ;; # i386 - PC with i486DX
|
|
pc586) $2=pc386 ;; # i386 - PC with Pentium
|
|
pc686) $2=pc386 ;; # i386 - PC with PentiumPro
|
|
pck6) $2=pc386 ;; # i386 - PC with K6
|
|
bare*) $2=bare ;; # EXP: bare-aliases
|
|
*) $2=$1;;
|
|
esac]
|
|
)
|
|
|
|
dnl RTEMS_BSP_ALIAS(BSP_ALIAS,RTEMS_BSP_FAMILY)
|
|
dnl convert a bsp alias $1 into its bsp directory RTEMS_BSP_FAMILY
|
|
AC_DEFUN(RTEMS_BSP_ALIAS,
|
|
[_RTEMS_BSP_ALIAS(ifelse([$1],,[$RTEMS_BSP],[$1]),
|
|
ifelse([$2],,[RTEMS_BSP_FAMILY],[$2]))]
|
|
)
|