forked from Imagelibrary/rtems
46 lines
1.4 KiB
Plaintext
46 lines
1.4 KiB
Plaintext
## Process this file with autoconf to produce a configure script.
|
|
|
|
AC_PREREQ([2.69])
|
|
AC_INIT([rtems-c-src-lib-libbsp-sparc-leon3],[_RTEMS_VERSION],[http://www.rtems.org/bugzilla])
|
|
AC_CONFIG_SRCDIR([bsp_specs])
|
|
RTEMS_TOP(../../../../../..)
|
|
|
|
RTEMS_CANONICAL_TARGET_CPU
|
|
AM_INIT_AUTOMAKE([no-define nostdinc foreign 1.12.2])
|
|
RTEMS_BSP_CONFIGURE
|
|
|
|
RTEMS_PROG_CC_FOR_TARGET
|
|
RTEMS_CANONICALIZE_TOOLS
|
|
RTEMS_PROG_CCAS
|
|
|
|
RTEMS_CHECK_NETWORKING
|
|
RTEMS_CHECK_SMP
|
|
|
|
AM_CONDITIONAL(HAS_NETWORKING,test "$HAS_NETWORKING" = "yes")
|
|
AM_CONDITIONAL(HAS_SMP,[test "$rtems_cv_HAS_SMP" = "yes"])
|
|
|
|
## bsp-specific options
|
|
RTEMS_BSPOPTS_SET([CONSOLE_USE_INTERRUPTS],[*],[0])
|
|
RTEMS_BSPOPTS_HELP([CONSOLE_USE_INTERRUPTS],
|
|
[The leon3 console driver can operate in either polled or interrupt mode.
|
|
Under the simulator (especially when FAST_UART is defined), polled seems to operate
|
|
better.])
|
|
|
|
RTEMS_BSPOPTS_SET([SIMSPARC_FAST_IDLE],[*],[])
|
|
RTEMS_BSPOPTS_HELP([SIMSPARC_FAST_IDLE],
|
|
[If defined, speed up the clock ticks while the idle task is running so
|
|
time spent in the idle task is minimized. This significantly reduces
|
|
the wall time required to execute the RTEMS test suites.])
|
|
|
|
RTEMS_BSPOPTS_SET([BSP_LEON3_SMP],[*],[1])
|
|
RTEMS_BSPOPTS_HELP([BSP_LEON3_SMP],
|
|
[Always defined when on a LEON3 to enable the LEON3 support for
|
|
determining the CPU core number in an SMP configuration.])
|
|
|
|
RTEMS_BSP_CLEANUP_OPTIONS(0, 1)
|
|
RTEMS_BSP_LINKCMDS
|
|
|
|
# Explicitly list all Makefiles here
|
|
AC_CONFIG_FILES([Makefile])
|
|
AC_OUTPUT
|