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

4.115
Last change on this file since 9b4422a2 was 94f37add, checked in by Sebastian Huber <sebastian.huber@…>, on 06/07/11 at 13:27:06

2011-06-07 Sebastian Huber <sebastian.huber@…>

  • configure.ac: Use standard cache BSP options.
  • Property mode set to 100644
File size: 1.4 KB
Line 
1## Process this file with autoconf to produce a configure script.
2##
3## configure.ac,v 1.9.2.2 2003/03/06 10:42:42 ralf Exp
4
5AC_PREREQ([2.68])
6AC_INIT([rtems-c-src-lib-libbsp-powerpc-mvme5500],[_RTEMS_VERSION],[rtems-bugs@OARcorp.com])
7AC_CONFIG_SRCDIR([bsp_specs])
8RTEMS_TOP(../../../../../..)
9
10RTEMS_CANONICAL_TARGET_CPU
11AM_INIT_AUTOMAKE([no-define nostdinc foreign 1.11.1])
12RTEMS_BSP_CONFIGURE
13
14RTEMS_PROG_CC_FOR_TARGET
15RTEMS_CANONICALIZE_TOOLS
16RTEMS_CHECK_TOOL(NM,nm,no)
17RTEMS_PROG_CCAS
18
19RTEMS_CHECK_NETWORKING
20AM_CONDITIONAL(HAS_NETWORKING,test "$HAS_NETWORKING" = "yes")
21
22AS=$CC
23AM_PROG_AS
24
25RTEMS_BSPOPTS_SET_DATA_CACHE_ENABLED([*],[1])
26RTEMS_BSPOPTS_HELP_DATA_CACHE_ENABLED
27
28RTEMS_BSPOPTS_SET_INSTRUCTION_CACHE_ENABLED([*],[1])
29RTEMS_BSPOPTS_HELP_INSTRUCTION_CACHE_ENABLED
30
31RTEMS_BSPOPTS_SET([CONFIGURE_MALLOC_BSP_SUPPORTS_SBRK], [*], [1])
32RTEMS_BSPOPTS_HELP([CONFIGURE_MALLOC_BSP_SUPPORTS_SBRK],
33[If defined then the BSP may reduce the available memory size
34initially. This can be useful for debugging (reduce the core
35size) or dynamic loading (std gcc text offsets/jumps are < +/-32M).
36Note that the policy can still be defined by the application
37(see sbrk.c, BSP_sbrk_policy). By undefining
38CONFIGURE_MALLOC_BSP_SUPPORTS_SBRK this feature is removed
39and a little memory is saved.])
40
41RTEMS_BSP_CLEANUP_OPTIONS(0, 0)
42
43# Explicitly list all Makefiles here
44AC_CONFIG_FILES([Makefile])
45
46RTEMS_PPC_EXCEPTIONS
47
48AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.