Changeset 78ffe89 in rtems
- Timestamp:
- 10/11/99 15:50:20 (23 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- aba4025
- Parents:
- 87fad5c
- Location:
- aclocal
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
aclocal/bsp-alias.m4
r87fad5c r78ffe89 11 11 mvme162lx) $2=mvme162 ;; # mvme162 board variant 12 12 gen68360_040) $2=gen68360 ;; # 68360 in companion mode 13 go32_p5) $2=go32 ;; # go32 on Pentium class CPU14 13 p4600) $2=p4000 ;; # p4000 board with IDT 4600 15 14 p4650) $2=p4000 ;; # p4000 board with IDT 4650 -
aclocal/canonical-target-name.m4
r87fad5c r78ffe89 16 16 case "${target}" in 17 17 # hpux unix port should go here 18 i[3456]86-go32-rtems*)19 RTEMS_CPU=i38620 ;;21 18 i[3456]86-pc-linux*) # unix "simulator" port 22 19 RTEMS_CPU=unix -
aclocal/canonicalize-tools.m4
r87fad5c r78ffe89 13 13 14 14 AC_DEFUN(RTEMS_GCC_PRINT, 15 [ case $host_os in 16 *cygwin*) 17 dnl FIXME: Hack for cygwin/egcs reporting mixed '\\' and '/' 18 dnl Should be removed once cygwin/egcs reports '/' only 19 $1=`$CC_FOR_TARGET --print-prog-name=$2 | sed -e 's%\\\\%/%g' ` 20 ;; 21 *) 15 [ 16 dnl case $host_os in 17 dnl *cygwin*) 18 dnl dnl FIXME: Hack for cygwin/egcs reporting mixed '\\' and '/' 19 dnl dnl Should be removed once cygwin/egcs reports '/' only 20 dnl $1=`$CC_FOR_TARGET --print-prog-name=$2 | sed -e 's%\\\\%/%g' ` 21 dnl ;; 22 dnl *) 22 23 $1=`$CC_FOR_TARGET --print-prog-name=$2` 23 ;;24 esac24 dnl ;; 25 dnl esac 25 26 ]) 26 27 -
aclocal/check-bsps.m4
r87fad5c r78ffe89 10 10 AC_REQUIRE([RTEMS_TOP])dnl sets RTEMS_TOPdir 11 11 AC_MSG_CHECKING([for bsps]) 12 case "${target}" in13 changequote(,)dnl14 i[3456]86-go32-rtems*)15 changequote([,])dnl16 $1="go32 go32_p5"17 ;;18 *)19 12 files=`ls $srcdir/$RTEMS_TOPdir/c/src/lib/libbsp/$RTEMS_CPU` 20 13 for file in $files; do … … 25 18 CVS*);; 26 19 pxfl*);; 27 go32*);; # so the i386 port can pick up the other Makefiles28 20 # Now account for BSPs with build variants 29 21 gen68360) rtems_bsp="$rtems_bsp gen68360 gen68360_040";; … … 33 25 esac; 34 26 done 35 ;;36 esac27 dnl ;; 28 dnl esac 37 29 AC_MSG_RESULT([[$]$1 .. done]) 38 30 ])dnl -
aclocal/enable-posix.m4
r87fad5c r78ffe89 17 17 case "${target}" in 18 18 # hpux unix port should go here 19 i[3456]86-go32-rtems*)20 RTEMS_HAS_POSIX_API=no21 ;;22 19 i[3456]86-pc-linux*) # unix "simulator" port 23 20 RTEMS_HAS_POSIX_API=no -
aclocal/gcc-pipe.m4
r87fad5c r78ffe89 3 3 dnl 4 4 dnl Check whether the target compiler accepts -pipe 5 dnl6 dnl 98/02/11 Ralf Corsepius corsepiu@faw.uni-ulm.de7 5 dnl 8 6 … … 14 12 rtems_cv_gcc_pipe=no 15 13 if test "$rtems_cv_prog_gcc" = "yes"; then 16 case "$host_os" in17 cygwin*)18 ;;19 *)14 dnl case "$host_os" in 15 dnl cygwin*) 16 dnl ;; 17 dnl *) 20 18 echo 'void f(){}' >conftest.c 21 19 if test -z "`${CC_FOR_TARGET} --pipe -c conftest.c 2>&1`";then … … 23 21 fi 24 22 rm -f conftest* 25 ;;26 esac23 dnl ;; 24 dnl esac 27 25 fi 28 26 ])
Note: See TracChangeset
for help on using the changeset viewer.