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

5
Last change on this file since a0663b2 was a0663b2, checked in by Joel Sherrill <joel@…>, on 11/21/17 at 19:27:31

libbsp/*/*/configure.ac: Remove references to bsp_specs in AC_CONFIG_SRCDIR

Updates #3250.

  • Property mode set to 100644
File size: 1.1 KB
Line 
1dnl Process this file with autoconf to produce a configure script.
2
3AC_PREREQ([2.69])
4AC_INIT([rtems-c-src-lib-libbsp-powerpc-haleakala],[_RTEMS_VERSION],[https://devel.rtems.org/newticket])
5AC_CONFIG_SRCDIR([make/custom/haleakala.cfg])
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
13RTEMS_CANONICALIZE_TOOLS
14RTEMS_PROG_CCAS
15
16RTEMS_CHECK_NETWORKING
17AM_CONDITIONAL(HAS_NETWORKING,test "$HAS_NETWORKING" = "yes")
18
19RTEMS_BSPOPTS_SET([PPC_USE_SPRG],[*],[1])
20RTEMS_BSPOPTS_HELP([PPC_USE_SPRG],
21[If defined, then the PowerPC specific code in RTEMS will use some
22 of the special purpose registers to slightly optimize interrupt
23 response time.  The use of these registers can conflict with
24 other tools like debuggers.])
25
26RTEMS_BSPOPTS_SET([PPC_VECTOR_FILE_BASE],[*],[0x0100])
27RTEMS_BSPOPTS_HELP([PPC_VECTOR_FILE_BASE],
28[This defines the base address of the exception table.
29 NOTE: Vectors are actually at 0xFFF00000 but file starts at offset.])
30
31RTEMS_BSP_CLEANUP_OPTIONS
32
33# Explicitly list all Makefiles here
34AC_CONFIG_FILES([Makefile])
35
36RTEMS_PPC_EXCEPTIONS
37
38AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.