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

5
Last change on this file since 01da0ac was 01da0ac, checked in by Joel Sherrill <joel@…>, on 05/16/18 at 14:47:07

haleakala: Move -Dxxx to configure.ac

Updates #3425.

  • 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])
5RTEMS_TOP(../../../../../..)
6RTEMS_SOURCE_TOP
7RTEMS_BUILD_TOP
8RTEMS_BSP_LINKCMDS
9
10RTEMS_CANONICAL_TARGET_CPU
11AM_INIT_AUTOMAKE([no-define nostdinc foreign 1.12.2])
12RTEMS_BSP_CONFIGURE
13
14
15
16RTEMS_BSPOPTS_SET([PPC_USE_SPRG],[*],[1])
17RTEMS_BSPOPTS_HELP([PPC_USE_SPRG],
18[If defined, then the PowerPC specific code in RTEMS will use some
19 of the special purpose registers to slightly optimize interrupt
20 response time.  The use of these registers can conflict with
21 other tools like debuggers.])
22
23RTEMS_BSPOPTS_SET([PPC_VECTOR_FILE_BASE],[*],[0x0100])
24RTEMS_BSPOPTS_HELP([PPC_VECTOR_FILE_BASE],
25[This defines the base address of the exception table.
26 NOTE: Vectors are actually at 0xFFF00000 but file starts at offset.])
27
28AC_DEFINE(ppc405, 1, [PowerPC model option])
29
30RTEMS_BSP_CLEANUP_OPTIONS
31
32# Explicitly list all Makefiles here
33AC_CONFIG_FILES([Makefile])
34
35RTEMS_PPC_EXCEPTIONS
36
37AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.