source: rtems/c/src/lib/libbsp/sparc/leon3/configure.ac @ 4debaca6

5
Last change on this file since 4debaca6 was de7b174e, checked in by Joel Sherrill <joel@…>, on 11/15/16 at 18:19:39

Remove sparc/sis BSP.

closes #2810.

  • Property mode set to 100644
File size: 1.4 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([BSP_LEON3_SMP],[*],[1])
31RTEMS_BSPOPTS_HELP([BSP_LEON3_SMP],
32[Always defined when on a LEON3 to enable the LEON3 support for
33 determining the CPU core number in an SMP configuration.])
34
35RTEMS_BSPOPTS_SET([BSP_POWER_DOWN_AT_FATAL_HALT],[*],[])
36RTEMS_BSPOPTS_HELP([BSP_POWER_DOWN_AT_FATAL_HALT],
37[If defined, CPU is powered down on fatal exit. Otherwise generate system
38 error which will hand over to debugger, simulator, etc.])
39
40RTEMS_BSP_CLEANUP_OPTIONS(0, 0, 1)
41RTEMS_BSP_LINKCMDS
42
43# Explicitly list all Makefiles here
44AC_CONFIG_FILES([Makefile])
45AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.