source: rtems/c/src/lib/libbsp/powerpc/beatnik/configure.ac @ 39ee704e

4.115
Last change on this file since 39ee704e was e5da4340, checked in by Sebastian Huber <sebastian.huber@…>, on 06/07/11 at 13:35:43

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.3 2003/08/11 14:37:22 ralf Exp
4
5AC_PREREQ([2.68])
6AC_INIT([rtems-c-src-lib-libbsp-powerpc-beatnik],[_RTEMS_VERSION],[rtems-bugs@rtems.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([-ansi -fasm])
15RTEMS_CANONICALIZE_TOOLS
16RTEMS_PROG_CCAS
17
18RTEMS_CHECK_TOOL([OBJCOPY],[objcopy])
19
20RTEMS_CHECK_NETWORKING
21AM_CONDITIONAL(HAS_NETWORKING,test "$HAS_NETWORKING" = "yes")
22
23AS=$CC
24AM_PROG_AS
25
26RTEMS_BSPOPTS_SET_DATA_CACHE_ENABLED([*],[1])
27RTEMS_BSPOPTS_HELP_DATA_CACHE_ENABLED
28
29RTEMS_BSPOPTS_SET_INSTRUCTION_CACHE_ENABLED([*],[1])
30RTEMS_BSPOPTS_HELP_INSTRUCTION_CACHE_ENABLED
31
32RTEMS_BSPOPTS_SET([CONFIGURE_MALLOC_BSP_SUPPORTS_SBRK], [*], [1])
33RTEMS_BSPOPTS_HELP([CONFIGURE_MALLOC_BSP_SUPPORTS_SBRK],
34[If defined then the BSP may reduce the available memory size
35initially. This can be useful for debugging (reduce the core
36size) or dynamic loading (std gcc text offsets/jumps are < +/-32M).
37Note that the policy can still be defined by the application
38(see sbrk.c, BSP_sbrk_policy). By undefining
39CONFIGURE_MALLOC_BSP_SUPPORTS_SBRK this feature is removed
40and a little memory is saved.])
41
42# Explicitly list all Makefiles here
43AC_CONFIG_FILES([Makefile])
44
45RTEMS_PPC_EXCEPTIONS
46
47AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.