source: rtems/c/src/lib/libbsp/powerpc/virtex5/configure.ac @ bb2b825

4.115
Last change on this file since bb2b825 was bb2b825, checked in by Ralf Corsépius <ralf.corsepius@…>, on 07/19/12 at 13:47:55

Require automake-1.12.2.

  • Property mode set to 100644
File size: 1.5 KB
Line 
1dnl Process this file with autoconf to produce a configure script.
2
3AC_PREREQ([2.69])
4AC_INIT([rtems-c-src-lib-libbsp-powerpc-virtex5],[_RTEMS_VERSION],[http://www.rtems.org/bugzilla])
5AC_CONFIG_SRCDIR([bsp_specs])
6RTEMS_TOP(../../../../../..)
7
8RTEMS_CANONICAL_TARGET_CPU
9AM_INIT_AUTOMAKE([no-define nostdinc foreign 1.12.2])
10RTEMS_BSP_CONFIGURE
11
12RTEMS_PROG_CC_FOR_TARGET
13RTEMS_CANONICALIZE_TOOLS
14RTEMS_PROG_CCAS
15
16RTEMS_CHECK_NETWORKING
17AM_CONDITIONAL(HAS_NETWORKING,test "$HAS_NETWORKING" = "yes")
18
19RTEMS_BSPOPTS_SET([PPC_USE_DATA_CACHE],[*],[1])
20RTEMS_BSPOPTS_HELP([PPC_USE_DATA_CACHE],
21[If defined, then the PowerPC specific code in RTEMS will use
22 data cache instructions to optimize the context switch code.
23 This code can conflict with debuggers or emulators.  It is known
24 to break the Corelis PowerPC emulator with at least some combinations
25 of PowerPC 603e revisions and emulator versions.
26 The BSP actually contains the call that enables this.])
27
28RTEMS_BSPOPTS_SET([PPC_USE_SPRG],[*],[1])
29RTEMS_BSPOPTS_HELP([PPC_USE_SPRG],
30[If defined, then the PowerPC specific code in RTEMS will use some
31 of the special purpose registers to slightly optimize interrupt
32 response time.  The use of these registers can conflict with
33 other tools like debuggers.])
34
35RTEMS_BSPOPTS_SET([PPC_VECTOR_FILE_BASE],[*],[0x0100])
36RTEMS_BSPOPTS_HELP([PPC_VECTOR_FILE_BASE],
37[This defines the base address of the exception table.])
38
39RTEMS_BSP_CLEANUP_OPTIONS(0, 1)
40
41# Explicitly list all Makefiles here
42AC_CONFIG_FILES([Makefile])
43
44RTEMS_PPC_EXCEPTIONS
45
46AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.