source: rtems/c/src/lib/libbsp/sparc/leon3/configure.ac @ 8343aa41

4.115
Last change on this file since 8343aa41 was 8343aa41, checked in by Daniel Hellstrom <daniel@…>, on 05/27/14 at 07:15:42

LEON3: enable exception prinout by default

  • Property mode set to 100644
File size: 1.5 KB
Line 
1## Process this file with autoconf to produce a configure script.
2
3AC_PREREQ([2.69])
4AC_INIT([rtems-c-src-lib-libbsp-sparc-leon3],
5[_RTEMS_VERSION],[http://www.rtems.org/bugzilla])
6AC_CONFIG_SRCDIR([bsp_specs])
7RTEMS_TOP(../../../../../..)
8
9RTEMS_CANONICAL_TARGET_CPU
10AM_INIT_AUTOMAKE([no-define nostdinc foreign 1.12.2])
11RTEMS_BSP_CONFIGURE
12
13RTEMS_PROG_CC_FOR_TARGET
14RTEMS_CANONICALIZE_TOOLS
15RTEMS_PROG_CCAS
16
17RTEMS_CHECK_NETWORKING
18RTEMS_CHECK_SMP
19
20AM_CONDITIONAL(HAS_NETWORKING,test "$HAS_NETWORKING" = "yes")
21AM_CONDITIONAL(HAS_SMP,[test "$rtems_cv_HAS_SMP" = "yes"])
22
23## bsp-specific options
24RTEMS_BSPOPTS_SET([CONSOLE_USE_INTERRUPTS],[*],[0])
25RTEMS_BSPOPTS_HELP([CONSOLE_USE_INTERRUPTS],
26[The leon3 console driver can operate in either polled or interrupt mode.
27Under the simulator (especially when FAST_UART is defined), polled seems
28to operate better.])
29
30RTEMS_BSPOPTS_SET([SIMSPARC_FAST_IDLE],[*],[])
31RTEMS_BSPOPTS_HELP([SIMSPARC_FAST_IDLE],
32[If defined, speed up the clock ticks while the idle task is running so
33 time spent in the idle task is minimized.  This significantly reduces
34 the wall time required to execute the RTEMS test suites.])
35
36RTEMS_BSPOPTS_SET([BSP_LEON3_SMP],[*],[1])
37RTEMS_BSPOPTS_HELP([BSP_LEON3_SMP],
38[Always defined when on a LEON3 to enable the LEON3 support for
39 determining the CPU core number in an SMP configuration.])
40
41RTEMS_BSP_CLEANUP_OPTIONS(0, 1, 1)
42RTEMS_BSP_LINKCMDS
43
44# Explicitly list all Makefiles here
45AC_CONFIG_FILES([Makefile])
46AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.