source: rtems/c/src/lib/libbsp/sparc/leon2/configure.ac @ 5e8a24ca

5
Last change on this file since 5e8a24ca was 4ff09d5b, checked in by Sebastian Huber <sebastian.huber@…>, on 04/12/18 at 05:27:41

build: Remove subdir-objects from BSP configure.ac

The subdir-objects do not work currently due to BSP sources in bsps and
c and the existing build tree layout.

Update #3387.

  • Property mode set to 100644
File size: 1.3 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-leon2],
5[_RTEMS_VERSION],[https://devel.rtems.org/newticket])
6AC_CONFIG_SRCDIR([make/custom/leon2.cfg])
7RTEMS_TOP(../../../../../..)
8RTEMS_SOURCE_TOP
9RTEMS_BUILD_TOP
10RTEMS_BSP_LINKCMDS
11
12RTEMS_CANONICAL_TARGET_CPU
13AM_INIT_AUTOMAKE([no-define nostdinc foreign 1.12.2])
14RTEMS_BSP_CONFIGURE
15
16
17
18
19## bsp-specific options
20RTEMS_BSPOPTS_SET([CONSOLE_USE_INTERRUPTS],[*],[0])
21RTEMS_BSPOPTS_HELP([CONSOLE_USE_INTERRUPTS],
22[The leon2 console driver can operate in either polled or interrupt mode.
23Under the simulator (especially when FAST_UART is defined), polled seems
24to operate better. It is common for a task to print a line (like the end
25of test message) and then exit.  In this case, the program returns control
26to the simulator command line before the program has even queued the output
27to the uart.  Thus sis has no chance of getting the data out.])
28
29RTEMS_BSPOPTS_SET([BSP_POWER_DOWN_AT_FATAL_HALT],[*],[])
30RTEMS_BSPOPTS_HELP([BSP_POWER_DOWN_AT_FATAL_HALT],
31[If defined, CPU is spinning on fatal exit. Otherwise generate system
32 error which will hand over to debugger, simulator, etc.])
33
34RTEMS_BSP_CLEANUP_OPTIONS
35
36# Explicitly list all Makefiles here
37AC_CONFIG_FILES([Makefile])
38AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.