source: rtems/c/src/lib/libcpu/powerpc/configure.ac @ de202e7

4.104.114.84.95
Last change on this file since de202e7 was ff79cc57, checked in by Joel Sherrill <joel.sherrill@…>, on 11/07/01 at 23:43:18

2001-11-07 Joel Sherrill <joel@…>

  • configure.ac: Delete the commented out line that said that the mpc8260 used the old exception processing model. This line also appears to have caused ppc603e to miss this test.
  • Property mode set to 100644
File size: 2.9 KB
Line 
1## Process this file with autoconf to produce a configure script.
2##
3## $Id$
4
5AC_PREREQ(2.52)
6AC_INIT
7AC_CONFIG_SRCDIR([mpc6xx])
8RTEMS_TOP(../../../../..)
9AC_CONFIG_AUX_DIR(../../../../..)
10
11RTEMS_CANONICAL_TARGET_CPU
12
13AM_INIT_AUTOMAKE(rtems-c-src-lib-libcpu-powerpc,$RTEMS_VERSION,no)
14AM_MAINTAINER_MODE
15
16RTEMS_ENABLE_BARE
17RTEMS_ENV_RTEMSBSP
18
19RTEMS_CHECK_CPU
20RTEMS_CANONICAL_HOST
21
22RTEMS_PROJECT_ROOT
23
24RTEMS_PROG_CC_FOR_TARGET
25RTEMS_CANONICALIZE_TOOLS
26
27RTEMS_CHECK_CUSTOM_BSP(RTEMS_BSP)
28RTEMS_CHECK_BSP_CACHE(RTEMS_BSP)
29
30AM_CONDITIONAL(shared, test "$RTEMS_CPU_MODEL" = "mpc750" \
31|| test "$RTEMS_CPU_MODEL" = "ppc603e" \
32|| test "$RTEMS_CPU_MODEL" = "mpc604" \
33|| test "$RTEMS_CPU_MODEL" = "mpc6xx" \
34|| test "$RTEMS_CPU_MODEL" = "mpc821" \
35|| test "$RTEMS_CPU_MODEL" = "mpc860" \
36|| test "$RTEMS_CPU_MODEL" = "mpc8260" \
37|| test "$RTEMS_CPU_MODEL" = "mpc8xx" )
38
39## there are no 601 or 602 BSPs currently.  The 505 BSPs are in user land.
40AM_CONDITIONAL(new_exception_processing, \
41test "$RTEMS_CPU_MODEL" = "mpc750" || \
42test "$RTEMS_CPU_MODEL" = "mpc604" || \
43test "$RTEMS_CPU_MODEL" = "mpc8xx" || \
44test "$RTEMS_CPU_MODEL" = "mpc8260" || \
45test "$RTEMS_CPU_MODEL" = "mpc860" \
46)
47
48## The goal is to get rid of the old exception processing code but
49## but all BSPs in the distribution must be migrated to the new model
50## first.
51AM_CONDITIONAL(old_exception_processing, \
52test "$RTEMS_CPU_MODEL" = "ppc403" || \
53test "$RTEMS_CPU_MODEL" = "mpc505" || \
54test "$RTEMS_CPU_MODEL" = "ppc603e" \
55)
56
57## test on CPU type
58AM_CONDITIONAL(mpc505, test "$RTEMS_CPU_MODEL" = "mpc505")
59AM_CONDITIONAL(mpc6xx, test "$RTEMS_CPU_MODEL" = "mpc6xx" \
60|| test "$RTEMS_CPU_MODEL" = "mpc604" \
61|| test "$RTEMS_CPU_MODEL" = "mpc750" )
62AM_CONDITIONAL(mpc8xx, test "$RTEMS_CPU_MODEL" = "mpc8xx" \
63|| test "$RTEMS_CPU_MODEL" = "mpc821" \
64|| test "$RTEMS_CPU_MODEL" = "mpc860" )
65AM_CONDITIONAL(mpc8260, test "$RTEMS_CPU_MODEL" = "mpc8260")
66AM_CONDITIONAL(ppc403, test "$RTEMS_CPU_MODEL" = "ppc403")
67
68# Explicitly list all Makefiles here
69AC_CONFIG_FILES([Makefile
70mpc505/Makefile
71mpc505/timer/Makefile
72mpc505/vectors/Makefile
73mpc505/ictrl/Makefile
74mpc8xx/Makefile
75mpc8xx/clock/Makefile
76mpc8xx/console-generic/Makefile
77mpc8xx/cpm/Makefile
78mpc8xx/exceptions/Makefile
79mpc8xx/include/Makefile
80mpc8xx/mmu/Makefile
81mpc8xx/timer/Makefile
82ppc403/Makefile
83ppc403/clock/Makefile
84ppc403/console/Makefile
85ppc403/ictrl/Makefile
86ppc403/timer/Makefile
87ppc403/vectors/Makefile
88mpc6xx/Makefile
89mpc6xx/clock/Makefile
90mpc6xx/timer/Makefile
91mpc6xx/exceptions/Makefile
92mpc6xx/mmu/Makefile
93mpc6xx/timer/Makefile
94mpc6xx/wrapup/Makefile
95mpc8260/Makefile
96mpc8260/clock/Makefile
97mpc8260/console-generic/Makefile
98mpc8260/include/Makefile
99mpc8260/timer/Makefile
100mpc8260/exceptions/Makefile
101mpc8260/mmu/Makefile
102mpc8260/cpm/Makefile
103new_exception_processing/Makefile
104old_exception_processing/Makefile
105shared/Makefile
106shared/include/Makefile
107shared/src/Makefile
108wrapup/Makefile])
109AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.