source: rtems/c/src/lib/libbsp/powerpc/dmv177/configure.ac @ 328876c

Last change on this file since 328876c was b18646c9, checked in by Ralf Corsepius <ralf.corsepius@…>, on 03/06/03 at 10:45:24

2003-03-06 Ralf Corsepius <corsepiu@…>

  • configure.ac: Remove AC_CONFIG_AUX_DIR.
  • Property mode set to 100644
File size: 2.0 KB
Line 
1## Process this file with autoconf to produce a configure script.
2##
3## $Id$
4
5AC_PREREQ(2.57)
6AC_INIT([rtems-c-src-lib-libbsp-powerpc-dmv177],[_RTEMS_VERSION],[rtems-bugs@OARcorp.com])
7AC_CONFIG_SRCDIR([bsp_specs])
8RTEMS_TOP(../../../../../..)
9
10RTEMS_CANONICAL_TARGET_CPU
11AM_INIT_AUTOMAKE([no-define foreign 1.7.2])
12RTEMS_BSP_CONFIGURE
13
14RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm])
15RTEMS_CANONICALIZE_TOOLS
16
17RTEMS_CHECK_NETWORKING
18AM_CONDITIONAL(HAS_NETWORKING,test "$HAS_NETWORKING" = "yes")
19
20## bsp-specific options
21RTEMS_BSPOPTS_SET([CONSOLE_USE_INTERRUPTS],[*],[0])
22RTEMS_BSPOPTS_HELP([CONSOLE_USE_INTERRUPTS],
23[whether using console interrupts])
24
25RTEMS_BSPOPTS_SET([PPC_USE_SPRG],[*],[0])
26RTEMS_BSPOPTS_HELP([PPC_USE_SPRG],
27[If defined, then the PowerPC specific code in RTEMS will use some
28of the special purpose registers to slightly optimize interrupt
29response time.  The use of these registers can conflict with
30other tools like debuggers.])
31
32RTEMS_BSPOPTS_SET([PPC_USE_DATA_CACHE],[*],[0])
33RTEMS_BSPOPTS_HELP([PPC_USE_DATA_CACHE],
34[If set != 0, then the PowerPC specific code in RTEMS will use
35 data cache instructions to optimize the context switch code.
36 This code can conflict with debuggers or emulators.  It is known
37 to break the Corelis PowerPC emulator with at least some combinations
38 of PowerPC 603e revisions and emulator versions.
39 The BSP actually contains the call that enables this.])
40
41RTEMS_BSPOPTS_SET([DMV177_USE_INSTRUCTION_CACHE],[*],[1])
42RTEMS_BSPOPTS_HELP([DMV177_USE_INSTRUCTION_CACHE],
43[If set != 0, then the PowerPC specific code in RTEMS will use
44 data cache instructions to optimize the context switch code.
45 This code can conflict with debuggers or emulators.
46 The BSP actually contains the call that enables this.])
47
48
49# Explicitly list all Makefiles here
50AC_CONFIG_FILES([Makefile
51clock/Makefile
52console/Makefile
53include/Makefile
54scv64/Makefile
55sonic/Makefile
56start/Makefile
57startup/Makefile
58timer/Makefile
59tod/Makefile
60wrapup/Makefile
61])
62
63RTEMS_PPC_EXCEPTIONS([old])
64
65AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.