source: rtems/aclocal/check-bsp-cache.m4 @ fc81cc9

4.104.114.84.95
Last change on this file since fc81cc9 was fc81cc9, checked in by Joel Sherrill <joel.sherrill@…>, on 12/03/99 at 13:31:56

Patch rtems-rc-19991123-rc-3.diff from Ralf Corsepius
<corsepiu@…>:

The patch below provides

  • automake support for score/cpu/powerpc
  • The hack to propagate values from *.cfg to automake configuration
  • A fix for librdbg/powerpc/mcp750/Makefile.am (Was completely corrupted before)
  • Fixes some files which apparently where missing in rtems-rc-19991123-rc-2.diff
  • some minor configuration related patches

To apply:

rm -rf ./c/src/exec/score/cpu/powerpc/wrap
patch -p1 < rtems-rc-19991123-rc-3.diff

Attention:

c/src/exec/score/cpu/[configure.in|aclocal.m4|configure] should be
removed after applying the patch.

Modifications had been made to the score/cpu/powerpc directory after
the snapshot this was based on. In particular, the mpc750 and
other_cpu directories had been renamed to new_exception_processing
and old_exception_processing. After this patch was applied, modifications
were made to account for this.

  • Property mode set to 100644
File size: 591 bytes
RevLine 
[fc81cc9]1dnl $Id$
2
3dnl RTEMS_CHECK_BSP_CACHE(RTEMS_BSP)
4AC_DEFUN(RTEMS_CHECK_BSP_CACHE,
5[
6AC_REQUIRE([RTEMS_CHECK_CPU])dnl sets RTEMS_CPU, target
7AC_REQUIRE([RTEMS_ENV_RTEMSBSP])dnl set RTEMS_BSP
8AC_REQUIRE([RTEMS_TOP])dnl sets RTEMS_TOPdir
9AC_CACHE_CHECK("for RTEMS_CPU_MODEL", rtems_cv_RTEMS_CPU_MODEL,
10. $RTEMS_TOPdir/c/[$]$1/make/[$]$1.cache)
11RTEMS_CPU_MODEL=$rtems_cv_RTEMS_CPU_MODEL
12AC_SUBST(RTEMS_CPU_MODEL)
13AC_CACHE_CHECK("for RTEMS_BSP_FAMILY", rtems_cv_RTEMS_BSP_FAMILY,
14. $RTEMS_TOPdir/c/[$]$1/make/[$]$1.cache)
15RTEMS_BSP_FAMILY=$rtems_cv_RTEMS_BSP_FAMILY
16AC_SUBST(RTEMS_BSP_FAMILY)
17])dnl
Note: See TracBrowser for help on using the repository browser.