Changeset 623ffdb in rtems
- Timestamp:
- 10/20/00 13:33:28 (23 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 772f2243
- Parents:
- 6a041407
- Location:
- c/src/lib/libcpu/powerpc
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libcpu/powerpc/ChangeLog
r6a041407 r623ffdb 1 2000-10-20 Joel Sherrill <joel@OARcorp.com> 2 3 * configure.in, Makefile.am: Explicitly specify whether an 4 RTEMS_CPU_MODEL is using old or new exception processing. This 5 is important because when building multilib, you do not know 6 the RTEMS_CPU_MODEL. So everything built in a multilib'ed RTEMS 7 must be independent of the exception model and allow for late 8 binding to the exception code. 9 1 10 2000-10-18 Sergei Organov <osv@javad.ru> 2 11 -
c/src/lib/libcpu/powerpc/Makefile.am
r6a041407 r623ffdb 11 11 endif 12 12 13 ## Use new or old exception processing based on the CPU 13 14 if new_exception_processing 14 15 EXCEPTION_SUBDIR = new_exception_processing 15 else 16 endif 17 18 if old_exception_processing 16 19 EXCEPTION_SUBDIR = old_exception_processing 17 20 endif -
c/src/lib/libcpu/powerpc/configure.in
r6a041407 r623ffdb 35 35 || test "$RTEMS_CPU_MODEL" = "mpc8xx" ) 36 36 37 ## there are no 601 or 602 BSPs currently. The 505 BSPs are in user land. 37 38 AM_CONDITIONAL(new_exception_processing, \ 38 39 test "$RTEMS_CPU_MODEL" = "mpc750" || \ 39 40 test "$RTEMS_CPU_MODEL" = "mpc604") 40 41 42 ## The goal is to get rid of the old exception processing code but 43 ## but all BSPs in the distribution must be migrated to the new model 44 ## first. 45 AM_CONDITIONAL(old_exception_processing, \ 46 test "$RTEMS_CPU_MODEL" = "ppc403" || \ 47 test "$RTEMS_CPU_MODEL" = "mpc505" || \ 48 test "$RTEMS_CPU_MODEL" = "ppc603e" || \ 49 test "$RTEMS_CPU_MODEL" = "mpc8xx" \ 50 ) 51 52 ## test on CPU type 41 53 AM_CONDITIONAL(mpc505, test "$RTEMS_CPU_MODEL" = "mpc505") 42 54 AM_CONDITIONAL(mpc6xx, test "$RTEMS_CPU_MODEL" = "mpc6xx" \
Note: See TracChangeset
for help on using the changeset viewer.