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

5
Last change on this file since f00c5c6 was 0fe48afa, checked in by Sebastian Huber <sebastian.huber@…>, on 05/28/18 at 05:07:18

build: Really fix RTEMS_ENABLE_RTEMSBSP()

The d542af2e4304b663461330a60313fb6c4fdbf4db commit was a bad one.

The riscv32 and riscv64 targets share a riscv source directory. The
potential future powerpcspe and powerpc targets need this change as
well.

For example ${target_arch} is "riscv32" and ${cfg_arch} is "riscv".

  • Property mode set to 100644
File size: 1.9 KB
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"
14     srctop=${srcdir}
15     while test x${srctop} != x/
16     do
17       if test -d ${srctop}/cpukit -a -d ${srctop}/c/src/lib/libbsp; then
18         break
19       fi
20       srctop=$(dirname ${srctop})
21     done
22     if test x${srctop} = x/; then
23       AC_MSG_ERROR([Cannot find the top of source tree, please report to devel@rtems.org])
24     fi
25     target_arch=$(echo ${target_alias} | sed -e "s/\-.*//g")
26     libbsp=${srctop}/bsps
27     libbsp_e=$(echo ${libbsp} | sed -e 's/\//\\\//g')
28     cfg_list=$(LANG=C LC_COLLATE=C find ${libbsp} -mindepth 1 -name \*.cfg)
29     for bsp in ${enable_rtemsbsp};
30     do
31       found=no
32       for bsp_path in ${cfg_list};
33       do
34         cfg_bsp=$(echo ${bsp_path} | sed -e "s/.*\///" -e 's/\.cfg//')
35         if test x$bsp = x$cfg_bsp; then
36           cfg_arch=$(echo ${bsp_path} | sed -e "s/${libbsp_e}*\///" -e 's/\/.*//')
37           case ${target_arch} in
38             ${cfg_arch}* )
39               ;;
40             * )
41               AC_MSG_ERROR([BSP '$bsp' architecture does not match the --target architecture, run 'rtems-bsp' (in the top of the source tree) for a valid BSP list])
42               ;;
43           esac
44           found=yes
45           break
46         fi
47       done
48       if test $found = no; then
49         AC_MSG_ERROR([BSP '$bsp' not found, run 'rtems-bsp' (in the top of the source tree) for a valid BSP list])
50       fi
51     done
52     ;;
53esac],[enable_rtemsbsp=""])
54])
Note: See TracBrowser for help on using the repository browser.