source: rtems/testsuites/aclocal/canonical-target-name.m4 @ 9c34c02

4.104.115
Last change on this file since 9c34c02 was ab922554, checked in by Ralf Corsepius <ralf.corsepius@…>, on 12/22/08 at 03:58:22

Remove tic4x.

  • Property mode set to 100644
File size: 1.0 KB
Line 
1dnl
2dnl $Id$
3dnl
4
5dnl canonicalize target cpu
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
11AC_DEFUN([RTEMS_CANONICAL_TARGET_CPU],
12[
13AC_CANONICAL_HOST
14AC_MSG_CHECKING(rtems target cpu)
15case "${host}" in
16  # hpux unix port should go here
17  i[[34567]]86-*linux*)         # unix "simulator" port
18        RTEMS_CPU=unix
19        RTEMS_HOST=Linux
20        ;;
21  i[[34567]]86-*freebsd*)       # unix "simulator" port
22        RTEMS_CPU=unix
23        RTEMS_HOST=FreeBSD
24        ;;
25  i[[34567]]86-pc-cygwin*)      # Cygwin is just enough unix like :)
26        RTEMS_CPU=unix
27        RTEMS_HOST=Cygwin
28        ;;
29  no_cpu-*rtems*)
30        RTEMS_CPU=no_cpu
31        RTEMS_HOST=$host_os
32        ;;
33  sparc-sun-solaris*)           # unix "simulator" port
34        RTEMS_CPU=unix
35        RTEMS_HOST=Solaris
36        ;;
37  *)
38        RTEMS_CPU=`echo $host | sed 's%^\([[^-]]*\)-\(.*\)$%\1%'`
39        RTEMS_HOST=$host_os
40        ;;
41esac
42AC_SUBST(RTEMS_CPU)
43AC_SUBST(RTEMS_HOST)
44AC_MSG_RESULT($RTEMS_CPU)
45])
Note: See TracBrowser for help on using the repository browser.