source: rtems/c/src/lib/libbsp/powerpc/psim/configure.ac @ 6273201

4.115
Last change on this file since 6273201 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.9 KB
Line 
1## Process this file with autoconf to produce a configure script.
2
3AC_PREREQ([2.68])
4AC_INIT([rtems-c-src-lib-libbsp-powerpc-psim],[_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
17
18AM_CONDITIONAL(HAS_NETWORKING,test "$HAS_NETWORKING" = "yes")
19
20RTEMS_BSPOPTS_SET([PPC_USE_SPRG],[*],[0])
21RTEMS_BSPOPTS_HELP([PPC_USE_SPRG],
22[If defined, then the PowerPC specific code in RTEMS will use some
23of the special purpose registers to slightly optimize interrupt
24response time.  The use of these registers can conflict with
25other tools like debuggers.])
26
27RTEMS_BSPOPTS_SET([PPC_VECTOR_FILE_BASE],[*],[0xFFF00100])
28RTEMS_BSPOPTS_HELP([PPC_VECTOR_FILE_BASE],
29[This defines the base address of the exception table.
30 NOTE: Vectors are actually at 0xFFF00000 but file starts at offset.])
31
32RTEMS_BSPOPTS_SET([CLOCK_DRIVER_USE_FAST_IDLE],[psim],[1])
33RTEMS_BSPOPTS_HELP([CLOCK_DRIVER_USE_FAST_IDLE],
34[This sets a mode where the time runs as fast as possible when
35 a clock ISR occurs while the IDLE thread is executing.  This can
36 significantly reduce simulation times.])
37
38RTEMS_BSPOPTS_SET([CONFIGURE_MALLOC_BSP_SUPPORTS_SBRK], [*], [1])
39RTEMS_BSPOPTS_HELP([CONFIGURE_MALLOC_BSP_SUPPORTS_SBRK],
40[If defined then the BSP may reduce the available memory size
41initially. This can be useful for debugging (reduce the core
42size) or dynamic loading (std gcc text offsets/jumps are < +/-32M).
43Note that the policy can still be defined by the application
44(see sbrk.c, BSP_sbrk_policy). By undefining
45CONFIGURE_MALLOC_BSP_SUPPORTS_SBRK this feature is removed
46and a little memory is saved.])
47
48RTEMS_BSP_CLEANUP_OPTIONS(0, 0)
49
50# Explicitly list all Makefiles here
51AC_CONFIG_FILES([Makefile])
52
53RTEMS_PPC_EXCEPTIONS
54
55AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.