source: rtems/c/src/lib/libbsp/powerpc/mvme3100/configure.ac @ 94f37add

4.115
Last change on this file since 94f37add 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.5 KB
Line 
1## Process this file with autoconf to produce a configure script.
2##
3## $Id$
4
5AC_PREREQ([2.68])
6AC_INIT([rtems-c-src-lib-libbsp-powerpc-mvme3100],[_RTEMS_VERSION],[http://www.rtems.org/bugzilla])
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
25dnl AC_PATH_PROG([AMPOLISH3],[ampolish3],[])
26dnl AM_CONDITIONAL([AMPOLISH3],[test x"$USE_MAINTAINER_MODE" = x"yes" \
27dnl   && test -n "$AMPOLISH3"])
28
29RTEMS_BSPOPTS_SET_DATA_CACHE_ENABLED([*],[1])
30RTEMS_BSPOPTS_HELP_DATA_CACHE_ENABLED
31
32RTEMS_BSPOPTS_SET_INSTRUCTION_CACHE_ENABLED([*],[1])
33RTEMS_BSPOPTS_HELP_INSTRUCTION_CACHE_ENABLED
34
35RTEMS_BSPOPTS_SET([CONFIGURE_MALLOC_BSP_SUPPORTS_SBRK], [*], [1])
36RTEMS_BSPOPTS_HELP([CONFIGURE_MALLOC_BSP_SUPPORTS_SBRK],
37[If defined then the BSP may reduce the available memory size
38initially. This can be useful for debugging (reduce the core
39size) or dynamic loading (std gcc text offsets/jumps are < +/-32M).
40Note that the policy can still be defined by the application
41(see sbrk.c, BSP_sbrk_policy). By undefining
42CONFIGURE_MALLOC_BSP_SUPPORTS_SBRK this feature is removed
43and a little memory is saved.])
44
45RTEMS_BSP_CLEANUP_OPTIONS(0, 1)
46
47# Explicitly list all Makefiles here
48AC_CONFIG_FILES([Makefile])
49
50RTEMS_PPC_EXCEPTIONS
51
52AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.