OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [rtems/] [aclocal/] [canonical-target-name.m4] - Blame information for rev 778

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 30 unneback
dnl
2
dnl $Id: canonical-target-name.m4,v 1.2 2001-09-27 11:59:11 chris Exp $
3
dnl
4
 
5
dnl canonicalize target cpu
6
dnl NOTE: Most rtems targets do not fullfil autoconf's
7
dnl target naming conventions "processor-vendor-os"
8
dnl Therefore autoconf's AC_CANONICAL_TARGET will fail for them
9
dnl and we have to fix it for rtems ourselves
10
 
11
AC_DEFUN(RTEMS_CANONICAL_TARGET_CPU,
12
[
13
AC_CANONICAL_SYSTEM
14
AC_MSG_CHECKING(rtems target cpu)
15
changequote(,)dnl
16
case "${target}" in
17
  # hpux unix port should go here
18
  i[34567]86-*linux*)           # unix "simulator" port
19
        RTEMS_CPU=unix
20
        ;;
21
  i[34567]86-*freebsd*)         # unix "simulator" port
22
        RTEMS_CPU=unix
23
        ;;
24
  i[34567]86-pc-cygwin*)        # Cygwin is just enough unix like :)
25
        RTEMS_CPU=unix
26
        ;;
27
  no_cpu-*rtems*)
28
        RTEMS_CPU=no_cpu
29
        ;;
30
  sparc-sun-solaris*)           # unix "simulator" port
31
        RTEMS_CPU=unix
32
        ;;
33
  *)
34
        RTEMS_CPU=`echo $target | sed 's%^\([^-]*\)-\(.*\)$%\1%'`
35
        ;;
36
esac
37
changequote([,])dnl
38
AC_SUBST(RTEMS_CPU)
39
AC_MSG_RESULT($RTEMS_CPU)
40
])

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.