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

4.115
Last change on this file since 9b4422a2 was 9b4422a2, checked in by Joel Sherrill <joel.sherrill@…>, on 05/03/12 at 15:09:24

Remove All CVS Id Strings Possible Using a Script

Script does what is expected and tries to do it as
smartly as possible.

+ remove occurrences of two blank comment lines

next to each other after Id string line removed.

+ remove entire comment blocks which only exited to

contain CVS Ids

+ If the processing left a blank line at the top of

a file, it was removed.

  • 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.68)
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.11.1])
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.