source: rtems/c/src/lib/libbsp/powerpc/haleakala/configure.ac @ 438983d2

4.115
Last change on this file since 438983d2 was 438983d2, checked in by Jennifer Averett <Jennifer.Averett@…>, on 06/29/10 at 13:49:06

2010-06-29 Joel Sherrill <Joel.Sherrill@…>

  • configure.ac: Added AC_CHECK_SIZEOF macro.
  • Property mode set to 100644
File size: 1.3 KB
Line 
1dnl Process this file with autoconf to produce a configure script.
2dnl
3dnl $Id$
4
5AC_PREREQ(2.59)
6AC_INIT([rtems-c-src-lib-libbsp-powerpc-haleakala],[_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.9])
12RTEMS_BSP_CONFIGURE
13
14RTEMS_PROG_CC_FOR_TARGET
15RTEMS_CANONICALIZE_TOOLS
16RTEMS_PROG_CCAS
17
18RTEMS_CHECK_NETWORKING
19
20AM_CONDITIONAL(HAS_NETWORKING,test "$HAS_NETWORKING" = "yes")
21
22## This is needed to generate the field offsets of the per CPU
23## data structure so they can be accessed from assembly code.
24AC_CHECK_SIZEOF([void *])
25
26RTEMS_BSPOPTS_SET([PPC_USE_SPRG],[*],[1])
27RTEMS_BSPOPTS_HELP([PPC_USE_SPRG],
28[If defined, then the PowerPC specific code in RTEMS will use some
29 of the special purpose registers to slightly optimize interrupt
30 response time.  The use of these registers can conflict with
31 other tools like debuggers.])
32
33RTEMS_BSPOPTS_SET([PPC_VECTOR_FILE_BASE],[*],[0x0100])
34RTEMS_BSPOPTS_HELP([PPC_VECTOR_FILE_BASE],
35[This defines the base address of the exception table.
36 NOTE: Vectors are actually at 0xFFF00000 but file starts at offset.])
37
38RTEMS_BSP_CLEANUP_OPTIONS(0, 1)
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.