source: rtems/c/src/lib/libbsp/sparc/leon3/configure.ac @ 0afac6a

4.115
Last change on this file since 0afac6a was 12072880, checked in by Sebastian Huber <sebastian.huber@…>, on 12/04/14 at 09:03:50

Update bug report URL

  • Property mode set to 100644
File size: 1.7 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],[https://devel.rtems.org/newticket])
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_BSPOPTS_SET([BSP_POWER_DOWN_AT_FATAL_HALT],[*],[])
42RTEMS_BSPOPTS_HELP([BSP_POWER_DOWN_AT_FATAL_HALT],
43[If defined, CPU is powered down on fatal exit. Otherwise generate system
44 error which will hand over to debugger, simulator, etc.])
45
46RTEMS_BSP_CLEANUP_OPTIONS(0, 0, 1)
47RTEMS_BSP_LINKCMDS
48
49# Explicitly list all Makefiles here
50AC_CONFIG_FILES([Makefile])
51AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.