source: rtems/aclocal/enable-rtemsbsp.m4 @ e1664027

5
Last change on this file since e1664027 was e1664027, checked in by Chris Johns <chrisj@…>, on 04/09/18 at 06:36:12

Require the user to provide a BSP list when build SMP or MP.

Close 3383.

  • Property mode set to 100644
File size: 503 bytes
Line 
1dnl Override the set of BSPs to be built.
2dnl used by the toplevel configure script
3dnl RTEMS_ENABLE_RTEMSBSP(rtems_bsp_list)
4AC_DEFUN([RTEMS_ENABLE_RTEMSBSP],
5[
6AC_BEFORE([$0], [RTEMS_ENV_RTEMSBSP])
7AC_ARG_ENABLE(rtemsbsp,
8[AS_HELP_STRING([--enable-rtemsbsp="bsp1 bsp2 .."],
9[BSPs to include in build, required for SMP and MP builds])],
10[case "${enable_rtemsbsp}" in
11  yes ) enable_rtemsbsp="" ;;
12  no ) enable_rtemsbsp="no" ;;
13  *) enable_rtemsbsp="$enable_rtemsbsp" ;;
14esac],[enable_rtemsbsp=""])
15])
Note: See TracBrowser for help on using the repository browser.