source: rtems/c/src/lib/libbsp/powerpc/motorola_powerpc/configure.ac @ e5da4340

4.115
Last change on this file since e5da4340 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.7 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-motorola_powerpc],[_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
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_BSPOPTS_SET([mvme2100],[mvme2100],[1])
42RTEMS_BSPOPTS_SET([mvme2100],[*],[])
43RTEMS_BSPOPTS_HELP([mvme2100],
44[Defined for MVME2100 -- undefined for others])
45
46RTEMS_BSPOPTS_SET([mpc8240],[mvme2100],[1])
47RTEMS_BSPOPTS_SET([mpc8240],[*],[])
48RTEMS_BSPOPTS_HELP([mpc8240],
49[Defined for boards with MPC8240 -- undefined for others])
50
51RTEMS_BSP_CLEANUP_OPTIONS(0, 0)
52
53# Explicitly list all Makefiles here
54AC_CONFIG_FILES([Makefile
55bootloader/Makefile])
56
57RTEMS_PPC_EXCEPTIONS
58
59AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.