source: rtems/aclocal/canonical-target-name.m4 @ 9078e097

4.104.114.84.95
Last change on this file since 9078e097 was 3959276e, checked in by Ralf Corsepius <ralf.corsepius@…>, on 11/26/03 at 05:32:03

2003-11-26 Ralf Corsepius <corsepiu@…>

  • aclocal/bsp-alias.m4, aclocal/canonical-target-name.m4, aclocal/check-bsps.m4, aclocal/check-custom-bsp.m4, aclocal/enable-bare.m4, aclocal/enable-cxx.m4, aclocal/enable-inlines.m4, aclocal/enable-itron.m4, aclocal/enable-multiprocessing.m4, aclocal/enable-networking.m4, aclocal/enable-posix.m4, aclocal/enable-rdbg.m4, aclocal/enable-rtems-debug.m4, aclocal/enable-rtemsbsp.m4, aclocal/enable-tests.m4, aclocal/multilib.m4, aclocal/path-ksh.m4, aclocal/project-root.m4, aclocal/rtems-top.m4, aclocal/tool-paths.m4, acinclude.m4: Fix underquoting to silence automake-1.8.
  • Property mode set to 100644
File size: 956 bytes
RevLine 
[b931d05a]1dnl
[6c77bba]2dnl $Id$
[b931d05a]3dnl
[6c77bba]4
[dfe7746e]5dnl canonicalize target cpu
[6c77bba]6dnl NOTE: Most rtems targets do not fullfil autoconf's
7dnl target naming conventions "processor-vendor-os"
8dnl Therefore autoconf's AC_CANONICAL_TARGET will fail for them
9dnl and we have to fix it for rtems ourselves
10
[3959276e]11AC_DEFUN([RTEMS_CANONICAL_TARGET_CPU],
[dfe7746e]12[
[37b5d78]13AC_CANONICAL_TARGET
[dfe7746e]14AC_MSG_CHECKING(rtems target cpu)
[8c92fa3]15case "${target}" in
[dfe7746e]16  # hpux unix port should go here
[a86c171]17  i[[34567]]86-*linux*)         # unix "simulator" port
[15aa5ffb]18        RTEMS_CPU=unix
[dfe7746e]19        ;;
[a86c171]20  i[[34567]]86-*freebsd*)       # unix "simulator" port
[df49c60]21        RTEMS_CPU=unix
22        ;;
[a86c171]23  i[[34567]]86-pc-cygwin*)      # Cygwin is just enough unix like :)
[15aa5ffb]24        RTEMS_CPU=unix
[dfe7746e]25        ;;
26  no_cpu-*rtems*)
[15aa5ffb]27        RTEMS_CPU=no_cpu
[dfe7746e]28        ;;
29  sparc-sun-solaris*)           # unix "simulator" port
[15aa5ffb]30        RTEMS_CPU=unix
[dfe7746e]31        ;;
[6b2b4a36]32  tic4x-*rtems*)                # gcc changed the name
33        RTEMS_CPU=c4x
34        ;;
[dfe7746e]35  *)
[a86c171]36        RTEMS_CPU=`echo $target | sed 's%^\([[^-]]*\)-\(.*\)$%\1%'`
[dfe7746e]37        ;;
38esac
[d2d22780]39AC_SUBST(RTEMS_CPU)
[15aa5ffb]40AC_MSG_RESULT($RTEMS_CPU)
[6c77bba]41])
Note: See TracBrowser for help on using the repository browser.