Changeset 994202a4 in rtems
- Timestamp:
- 06/16/00 13:00:42 (22 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 3207f0a
- Parents:
- fc6eaee
- Location:
- c
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
c/configure.in
rfc6eaee r994202a4 36 36 bare) 37 37 bspcpudir= 38 if test "X${BARE_CPU_CFLAGS}" = "X" ; then39 AC_MSG_ERROR([--enable-bare-cpu-cflags not specified for bare bsp])40 fi41 if test "X${BARE_CPU_MODEL}" = "X" ; then42 AC_MSG_ERROR([--enable-bare-cpu-model not specified for bare bsp])43 fi44 38 ;; 45 39 *) -
c/src/lib/configure.in
rfc6eaee r994202a4 4 4 5 5 AC_PREREQ(2.13) 6 AC_INIT(lib bsp)6 AC_INIT(libc) 7 7 RTEMS_TOP(../../..) 8 8 AC_CONFIG_AUX_DIR(../../..) -
c/src/lib/libbsp/configure.in
rfc6eaee r994202a4 29 29 # Is there code where there should be for this BSP? 30 30 # The bare bsp is a special case as it is not under the RTEMS_CPU path 31 case $bspdir in 32 bare) 33 bspcpudir= 34 if test "X${BARE_CPU_CFLAGS}" = "X" ; then 35 AC_MSG_ERROR([--enable-bare-cpu-cflags not specified for bare bsp]) 36 fi 37 if test "X${BARE_CPU_MODEL}" = "X" ; then 38 AC_MSG_ERROR([--enable-bare-cpu-model not specified for bare bsp]) 39 fi 40 ;; 41 *) 42 bspcpudir=$RTEMS_CPU/ 43 ;; 44 esac 45 46 if test "$RTEMS_BSP" = "bare" ; then 31 if test "$bspdir" = "bare" ; then 47 32 RTEMS_LIBBSP_CPU_SUBDIR="bare" 48 33 else
Note: See TracChangeset
for help on using the changeset viewer.