source: rtems/c/src/lib/libbsp/sparc/erc32/configure.ac @ de7b174e

5
Last change on this file since de7b174e 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-erc32],
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 erc32 console driver can operate in either polled or interrupt mode.
27Under the simulator (especially when FAST_UART is defined), polled seems
28to operate better. It is common for a task to print a line (like the end
29of test message) and then exit.  In this case, the program returns control
30to the simulator command line before the program has even queued the output
31to the uart.  Thus sis has no chance of getting the data out.])
32
33RTEMS_BSPOPTS_SET([BSP_POWER_DOWN_AT_FATAL_HALT],[*],[])
34RTEMS_BSPOPTS_HELP([BSP_POWER_DOWN_AT_FATAL_HALT],
35[If defined, CPU is spinning on fatal exit. Otherwise generate system
36 error which will hand over to debugger, simulator, etc.])
37
38RTEMS_BSP_CLEANUP_OPTIONS(0, 0, 1)
39
40# Explicitly list all Makefiles here
41AC_CONFIG_FILES([Makefile])
42AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.