source: rtems/c/src/lib/libbsp/powerpc/beatnik/configure.ac @ 59bd5115

4.115
Last change on this file since 59bd5115 was 59bd5115, checked in by Ralf Corsépius <ralf.corsepius@…>, on 07/19/12 at 13:59:46

Remove CVS-Ids.

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