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

4.115
Last change on this file since 12072880 was 12072880, checked in by Sebastian Huber <sebastian.huber@…>, on 12/04/14 at 09:03:50

Update bug report URL

  • Property mode set to 100644
File size: 2.1 KB
Line 
1## Process this file with autoconf to produce a configure script.
2
3AC_PREREQ([2.69])
4AC_INIT([rtems-c-src-lib-libbsp-powerpc-psim],[_RTEMS_VERSION],[https://devel.rtems.org/newticket])
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
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_BSPOPTS_SET([BSP_INTERRUPT_STACK_AT_WORK_AREA_BEGIN],[*],[1])
49RTEMS_BSPOPTS_HELP([BSP_INTERRUPT_STACK_AT_WORK_AREA_BEGIN],[indicate that the interrupt stack is at the work area begin])
50
51RTEMS_BSP_CLEANUP_OPTIONS(0, 1, 1)
52
53# Explicitly list all Makefiles here
54AC_CONFIG_FILES([Makefile])
55
56RTEMS_PPC_EXCEPTIONS
57
58AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.