Changeset 084556d in rtems


Ignore:
Timestamp:
04/20/01 17:27:55 (22 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
52dace9
Parents:
b979904
Message:

2001-04-20 Eric Valette <valette@…>

  • aclocal/check-rdbg.m4: Added check to determine which PowerPC

BSPs support the new exception processing model and
consequently, librdbg.

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • ChangeLog

    rb979904 r084556d  
     12001-04-20      Eric Valette <valette@crf.canon.fr>
     2
     3        * aclocal/check-rdbg.m4: Added check to determine which PowerPC
     4        BSPs support the new exception processing model and
     5        consequently, librdbg.
     6
    172001-02-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    28
  • aclocal/check-rdbg.m4

    rb979904 r084556d  
    1616    then
    1717      rtems_cv_HAS_RDBG="yes" ;
     18    elif test "${RTEMS_CPU}" = "powerpc";
     19    then
     20        A=`grep -l RTEMS_PPC_EXCEPTION_PROCESSING_MODEL $srcdir/${RTEMS_TOPdir}/make/custom/* 2>/dev/null`;
     21        C=""
     22        for i in ${A} ;
     23        do
     24           B=`basename ${i} .cfg`;
     25           C="${C} ${B}";
     26        done
     27        target_found="no";
     28        for j in ${C} ;
     29        do
     30                if test "${$1}" = "${j}" ;
     31                then
     32                        target_found="yes";
     33                fi
     34        done
     35        if test "$target_found" = "yes" ;
     36        then
     37                rtems_cv_HAS_RDBG="yes" ;
     38        fi
    1839    else
    1940      rtems_cv_HAS_RDBG="no";
Note: See TracChangeset for help on using the changeset viewer.