source: rtems/c/src/lib/libbsp/powerpc/mvme3100/configure.ac @ 704e371

4.104.115
Last change on this file since 704e371 was 704e371, checked in by Joel Sherrill <joel.sherrill@…>, on 09/15/08 at 22:05:08

2008-09-15 Joel Sherrill <joel.sherrill@…>

  • Makefile.am, configure.ac, include/bsp.h, include/bspopts.h.in, startup/bspstart.c: Add use of bsp_get_work_area() in its own file and rely on BSP Framework to perform more initialization.
  • Property mode set to 100644
File size: 1.3 KB
Line 
1## Process this file with autoconf to produce a configure script.
2##
3## $Id$
4
5AC_PREREQ(2.60)
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.10])
12RTEMS_BSP_CONFIGURE
13
14RTEMS_PROG_CC_FOR_TARGET([-ansi -fasm])
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([PPC_USE_DATA_CACHE],[*],[1])
30RTEMS_BSPOPTS_HELP([PPC_USE_DATA_CACHE],
31[If defined, then the PowerPC specific code in RTEMS will use
32 data cache instructions to optimize the context switch code.
33 This code can conflict with debuggers or emulators.  It is known
34 to break the Corelis PowerPC emulator with at least some combinations
35 of PowerPC 603e revisions and emulator versions.
36 The BSP actually contains the call that enables this.])
37
38RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION
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.