This is the mail archive of the gcc-prs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: target/2032


The following reply was made to PR target/2032; it has been noted by GNATS.

From: "=?big5?B?QnJhbmRvbiBZYW5nILeortG7yg==?=" <ericy@iname.com>
To: <Richard.Earnshaw@arm.com>,
	<gcc-prs@gcc.gnu.org>,
	<gcc-gnats@gcc.gnu.org>,
	<nobody@gcc.gnu.org>
Cc:  
Subject: Re: target/2032
Date: Tue, 27 Feb 2001 09:19:19 +0800

 Dear All :
 Folling is the output of /bin/bash -xv make-cross.sh
 
 # .bashrc
 
 # User specific aliases and functions
 
 alias rm='rm -i'
 + alias rm=rm -i
 alias cp='cp -i'
 + alias cp=cp -i
 alias mv='mv -i'
 + alias mv=mv -i
 
 # Source global definitions
 if [ -f /etc/bashrc ]; then
  . /etc/bashrc
 fi
 + [ -f /etc/bashrc ]
 + . /etc/bashrc
 # /etc/bashrc
 
 # System wide functions and aliases
 # Environment stuff goes in /etc/profile
 
 # For some unknown reason bash refuses to inherit
 # PS1 in some circumstances that I can't figure out.
 # Putting PS1 here ensures that it gets loaded every time.
 PS1="[\u@\h \W]\\$ "
 ++ PS1=[\u@\h \W]\$
 #! /bin/bash
 
 # Build a cross-toolchain for target $TARGET. It expects $BASE_PATH/src to
 # contain $BINUTILS-$BINUTILS_VERSION.EXTN, $GCC-$GCC_VERSION.EXTN,
 # and $LIBC-$LIBC_VERSION.EXTN. Any type of tar-based archive is fine.
 # If you are building libc you will also need $LINUX-$LINUX_VERSION.EXTN.
 # Optional patches may be compressed or not and are expected to apply to
 # the source tree from within $PACKAGE-$VERSION with -pX. Patch names
 # may not contain a % character (oh damn, I'll have to rename all my
 patches!).
 
 # USAGE: make-cross.sh [[binutils] [gcc] [libc] [destroy]] [restart]
 [kernel]
 # If no options are given, all parts of the toolchain are rebuilt and any
 # existing toolchain is replaced. Specifying one or more parts will build
 # only those parts (any previous must exist already). Specifying destroy
 # will blow away the existing toolchain before building - you probably
 should
 # not use this if you are only building gcc or glibc for example.
 # The restart option does not destroy existing sources and object files, but
 # relies on package makefiles to do the right things. This is useful if
 you're
 # hacking the toolchain. Note that if a package was not properly extracted
 # or patched you probably don't want this option.
 
 # What shall we build for?
 TARGET=armv5-linux
 + TARGET=armv5-linux
 TGT_LINARCH=armv5
 + TGT_LINARCH=armv5
 
 # Contains the src/ directory with sources and patches
 # $BASE_PATH/src/$PACKAGE-$VERSION/ will be created during the build
 process.
 BASE_PATH=/scratch/crossdev-build
 + BASE_PATH=/scratch/crossdev-build
 
 # The directory to build in. $BUILD_PATH/$TARGET/$PACKAGE-$VERSION-obj will
 # be created during the build process.
 BUILD_PATH="$BASE_PATH"
 + BUILD_PATH=/scratch/crossdev-build
 
 # Where to install. $INST_PREFIX/$TARGET will be created for you.
 INST_PREFIX=/scratch/crossdev
 + INST_PREFIX=/scratch/crossdev
 
 # Environment variables to be passed to configure for all packages.
 GLOBAL_ENV=
 + GLOBAL_ENV=
 
 # Arguments to be passed to configure for all packages.
 GLOBAL_ARGS=
 + GLOBAL_ARGS=
 
 # Empty unless building on sparc64-linux
 #SPARC32=sparc32
 
 # Number of CPUs in this box. Set to 0, not 1, for UP
 CPUS=0
 + CPUS=0
 
 # Package names and any patches you want applied.
 BINUTILS=binutils
 + BINUTILS=binutils
 GCC=gcc
 + GCC=gcc
 LIBC=glibc
 + LIBC=glibc
 LINUX=linux
 + LINUX=linux
 BINUTILS_VERSION=010118
 + BINUTILS_VERSION=010118
 GCC_VERSION=20010122
 + GCC_VERSION=20010122
 LIBC_VERSION=2.2.1
 + LIBC_VERSION=2.2.1
 LINUX_VERSION=2.2.12
 + LINUX_VERSION=2.2.12
 
 # Patches are in src/ and should be expressed as name%%X, where X is the -pX
 # option to pass to patch. Patches are applied within the source tree; that
 is,
 # in src/package-version/.
 #BINUTILS_PATCHES=
 #GCC_PATCHES="gcse-regcopy.diff%%1 gcc-sizet.diff%%1"
 #LIBC_PATCHES="glibc-fcr31.diff%%1"
 #LINUX_PATCHES="compile-bits-000708.diff%%0 kernel-newcpp-000707.diff%%0
 timers-000707.diff%%0"
 
 # Build environment. Probably this is all fine.
 BINUTILS_ENV="CC=cc"
 + BINUTILS_ENV=CC=cc
 BINUTILS_ARGS=
 + BINUTILS_ARGS=
 GCC_ENV="AR=$TARGET-ar RANLIB=$TARGET-ranlib"
 + GCC_ENV=AR=armv5-linux-ar RANLIB=armv5-linux-ranlib
 GCC_ARGS="--enable-shared --with-newlib --enable-languages=c"
 + GCC_ARGS=--enable-shared --with-newlib --enable-languages=c
 LIBC_ENV="CC=$TARGET-gcc BUILD_CC=cc AR=$TARGET-ar RANLIB=$TARGET-ranlib"
 + LIBC_ENV=CC=armv5-linux-gcc BUILD_CC=cc AR=armv5-linux-ar
 RANLIB=armv5-linux-ranlib
 LIBC_ARGS="--enable-kernel=2.2.12 --enable-add-ons --with-elf --disable-prof
 ile"
 +
 LIBC_ARGS=--enable-kernel=2.2.12 --enable-add-ons --with-elf --disable-profi
 le
 
 # --- END ---
 
 SRC_PATH="$BASE_PATH/src"
 + SRC_PATH=/scratch/crossdev-build/src
 TAR=tar
 + TAR=tar
 TAR_FLAGS=x
 + TAR_FLAGS=x
 EXTNS=".tar.bz2 .tar.gz .tar.z .tar.Z .tgz .tbz2 .tbz .taz .tar"
 + EXTNS=.tar.bz2 .tar.gz .tar.z .tar.Z .tgz .tbz2 .tbz .taz .tar
 
 #function extract () {
 # for extn in $(echo $EXTNS); do
 #  if [ -f "$SRC_PATH/$1$extn" ]; then
 #   case "$extn" in
 #   .tar.bz2|.tbz2|.tbz)
 #    TAR_FLAGS="$TAR_FLAGS"I
 #    ;;
 #   .tar)
 #    ;;
 #   *)
 #    TAR_FLAGS="$TAR_FLAGS"z
 #    ;;
 #   esac
 #   _extract_pkg_file="$SRC_PATH/$1$extn"
 #   echo "Extracting $_extract_pkg_file as a $extn package"
 #   $TAR "${TAR_FLAGS}f" "$_extract_pkg_file"
 #   return
 #  fi
 # done
 # echo "Sorry no package $1 found"
 # exit 1
 #}
 
 #function apply_patch () {
 # # Extract the -pX option from the name
 # level=$(echo "$1" | sed -e s/.*%%//)
 # patch=$(echo "$1" | sed -e s/%%.*//)
 # if [ -f "$SRC_PATH/$patch" ]; then
 #  echo -n "Applying patch $patch with -p$level "
 #  case "$patch" in
 #  *.*bz*)
 #   echo "as a bzip2'd patch"
 #   bzcat "$SRC_PATH/$patch" | patch -p$level
 #   return
 #   ;;
 #  *Z|*z)
 #   echo "as a gzip'd patch"
 #   zcat "$SRC_PATH/$patch" | patch -p$level
 #   return
 #   ;;
 #  *)
 #   echo "as a plain patch"
 #   patch -p$level < "$SRC_PATH/$patch"
 #   return
 #   ;;
 #  esac
 # fi
 # echo "Sorry, no such patch $patch"
 # exit 1
 #}
 
 keep_old=yes
 + keep_old=yes
 restart=no
 + restart=no
 
 arg_count="$#"
 + arg_count=1
 
 build_binutils=no
 + build_binutils=no
 build_gcc=no
 + build_gcc=no
 build_libc=no
 + build_libc=no
 build_kernel=no
 + build_kernel=no
 
 while [ "$#" -gt 0 ]; do
  case "$1" in
  *libc)
   build_libc=yes
   ;;
  *gcc)
   build_gcc=yes
   ;;
  *binutils)
   build_binutils=yes
   ;;
  *destroy)
   keep_old=no
   ;;
  *restart)
   restart=yes
   ;;
  *kernel)
   build_kernel=yes
   ;;
  esac
  shift
 done
 + [ 1 -gt 0 ]
 + shift
 + [ 0 -gt 0 ]
 
 if [ "$build_binutils$build_gcc$build_libc$build_kernel" = "nononono" ];
 then
  build_binutils=yes
  build_gcc=yes
  build_libc=yes
  build_kernel=yes
 fi
 + [ nononono = nononono ]
 + build_binutils=yes
 + build_gcc=yes
 + build_libc=yes
 + build_kernel=yes
 
 if [ -d "${INST_PREFIX}/$TARGET" ] && [ "$keep_old" != "yes" ]; then
  rm -rf "${BUILD_PATH}/${TARGET}"
 fi
 + [ -d /scratch/crossdev/armv5-linux ]
 + [ yes != yes ]
 
 if [ "$build_binutils" != "no" ] && [ "$restart" != "yes" ]; then
  #rm -rf "${SRC_PATH}/${BINUTILS}-${BINUTILS_VERSION}"
  cd "${SRC_PATH}" || exit 1
  #for _patch in $(echo "$BINUTILS_PATCHES"); do
  # cd "${SRC_PATH}/${BINUTILS}-${BINUTILS_VERSION}" \
  #      && apply_patch "$_patch" || exit 1
  #done
 fi
 + [ yes != no ]
 + [ no != yes ]
 + cd /scratch/crossdev-build/src
 
 if [ "$build_gcc" != "no" ] && [ "$restart" != "yes" ]; then
  #rm -rf "${SRC_PATH}/${GCC}-${GCC_VERSION}"
  cd "${SRC_PATH}" || exit 1
  #for _patch in $(echo "$GCC_PATCHES"); do
  # cd "${SRC_PATH}/${GCC}-${GCC_VERSION}" \
  #   && apply_patch "$_patch" || exit 1
  #done
 fi
 + [ yes != no ]
 + [ no != yes ]
 + cd /scratch/crossdev-build/src
 
 if [ "$build_libc" != "no" ] && [ "$restart" != "yes" ]; then
  #rm -rf "${SRC_PATH}/${LIBC}-${LIBC_VERSION}"
  cd "${SRC_PATH}" || exit 1
  #for _patch in $(echo "$LIBC_PATCHES"); do
  # cd "${SRC_PATH}/${LIBC}-${LIBC_VERSION}" \
  #   && apply_patch "$_patch" || exit 1
  #done
 fi
 + [ yes != no ]
 + [ no != yes ]
 + cd /scratch/crossdev-build/src
 
 if [ "$build_libc" != "no" -o "$build_kernel" != "no" ] \
    && [ "$restart" != "yes" ]; then
  #rm -rf "${SRC_PATH}/${LINUX}-${LINUX_VERSION}"
  cd "${SRC_PATH}" || exit 1
  #for _patch in $(echo "$LINUX_PATCHES"); do
  # cd "${SRC_PATH}/${LINUX}-${LINUX_VERSION}" \
  #   && apply_patch "$_patch" || exit 1
  #done
 fi
 + [ yes != no -o yes != no ]
 + [ no != yes ]
 + cd /scratch/crossdev-build/src
 
 export PATH="$PATH:${INST_PREFIX}/${TARGET}/bin"
 + export
 PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:.:/root/bin:/scratch/cross
 dev/armv5-linux/bin
 +
 PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:.:/root/bin:/scratch/cross
 dev/armv5-linux/bin
 if [ "$build_binutils" != "no" ]; then
   _srcdir="${SRC_PATH}/${BINUTILS}-${BINUTILS_VERSION}"
  _builddir="${BUILD_PATH}/${TARGET}/${BINUTILS}-${BINUTILS_VERSION}-obj"
  echo "Building $BINUTILS $BINUTILS_VERSION from $_srcdir in $_builddir"
 
  if [ "$restart" != "yes" ]; then
   rm -rf "${_builddir}"
  fi
 
   mkdir -p "${_builddir}" || exit 1
   cd "${_builddir}" || exit 1
 
   env $(echo $GLOBAL_ENV $BINUTILS_ENV) $SPARC32 \
   "${_srcdir}/configure" "--prefix=$INST_PREFIX/${TARGET}" \
  "--target=$TARGET" $GLOBAL_ARGS $BINUTILS_ARGS || exit 1
 
   $SPARC32 make MAKE="make -j$(($CPUS + 1))" || exit 1
 
  echo "Installing $BINUTILS $BINUTILS_VERSION in $INST_PREFIX/$TARGET"
  $SPARC32 make install || exit 1
 fi
 + [ yes != no ]
 + _srcdir=/scratch/crossdev-build/src/binutils-010118
 + _builddir=/scratch/crossdev-build/armv5-linux/binutils-010118-obj
 + echo Building binutils 010118 from
 /scratch/crossdev-build/src/binutils-010118 in
 /scratch/crossdev-build/armv5-linux/binutils-010118-obj
 Building binutils 010118 from /scratch/crossdev-build/src/binutils-010118 in
 /scratch/crossdev-build/armv5-linux/binutils-010118-obj
 + [ no != yes ]
 + rm -rf /scratch/crossdev-build/armv5-linux/binutils-010118-obj
 + mkdir -p /scratch/crossdev-build/armv5-linux/binutils-010118-obj
 + cd /scratch/crossdev-build/armv5-linux/binutils-010118-obj
 echo $GLOBAL_ENV $BINUTILS_ENV
 ++ echo CC=cc
 + env CC=cc
 /scratch/crossdev-build/src/binutils-010118/configure --prefix=/scratch/cros
 sdev/armv5-linux --target=armv5-linux
 Configuring for a i686-pc-linux-gnu host.
 Created "Makefile" in
 /scratch/crossdev-build/armv5-linux/binutils-010118-obj using "mt-frag"
 Configuring intl...
 creating cache ../config.cache
 checking for a BSD compatible install... /usr/bin/install -c
 checking how to run the C preprocessor... cc -E
 checking whether make sets ${MAKE}... yes
 checking for gcc... cc
 checking whether the C compiler (cc -g ) works... yes
 checking whether the C compiler (cc -g ) is a cross-compiler... no
 checking whether we are using GNU C... yes
 checking whether cc accepts -g... yes
 checking for ranlib... ranlib
 checking for POSIXized ISC... no
 checking for ANSI C header files... yes
 checking for working const... yes
 checking for inline... inline
 checking for off_t... yes
 checking for size_t... yes
 checking for working alloca.h... yes
 checking for alloca... yes
 checking for unistd.h... yes
 checking for getpagesize... yes
 checking for working mmap... yes
 checking for argz.h... yes
 checking for limits.h... yes
 checking for locale.h... yes
 checking for nl_types.h... yes
 checking for malloc.h... yes
 checking for string.h... yes
 checking for unistd.h... (cached) yes
 checking for values.h... yes
 checking for sys/param.h... yes
 checking for getcwd... yes
 checking for munmap... yes
 checking for putenv... yes
 checking for setenv... yes
 checking for setlocale... yes
 checking for strchr... yes
 checking for strcasecmp... yes
 checking for __argz_count... yes
 checking for __argz_stringify... yes
 checking for __argz_next... yes
 checking for stpcpy... yes
 checking for LC_MESSAGES... yes
 checking whether NLS is requested... yes
 checking whether included gettext is requested... no
 checking for libintl.h... yes
 checking for gettext in libc... yes
 checking for msgfmt... /usr/bin/msgfmt
 checking for dcgettext... yes
 checking for gmsgfmt... /usr/bin/msgfmt
 checking for xgettext... /usr/bin/xgettext
 updating cache ../config.cache
 creating ./config.status
 creating Makefile
 creating config.h
 Configuring libiberty...
 loading cache ../config.cache
 checking host system type... i686-pc-linux-gnu
 checking build system type... i686-pc-linux-gnu
 checking for ar... ar
 checking for ranlib... (cached) ranlib
 checking for gcc... (cached) cc
 checking whether we are using GNU C... (cached) yes
 checking whether cc accepts -g... (cached) yes
 checking for POSIXized ISC... no
 checking for working const... (cached) yes
 checking for inline... (cached) inline
 checking for a BSD compatible install... (cached) /usr/bin/install -c
 checking how to run the C preprocessor... (cached) cc -E
 checking for sys/file.h... yes
 checking for sys/param.h... (cached) yes
 checking for limits.h... (cached) yes
 checking for stdlib.h... yes
 checking for string.h... (cached) yes
 checking for unistd.h... (cached) yes
 checking for strings.h... yes
 checking for sys/time.h... yes
 checking for time.h... yes
 checking for sys/resource.h... yes
 checking for sys/stat.h... yes
 checking for sys/mman.h... yes
 checking for fcntl.h... yes
 checking for sys/wait.h that is POSIX.1 compatible... yes
 checking whether time.h and sys/time.h may both be included... yes
 checking whether errno must be declared... no
 checking whether the C compiler (cc -g ) works... yes
 checking whether the C compiler (cc -g ) is a cross-compiler... no
 checking for asprintf... yes
 checking for atexit... yes
 checking for basename... yes
 checking for bcmp... yes
 checking for bcopy... yes
 checking for bsearch... yes
 checking for bzero... yes
 checking for calloc... yes
 checking for clock... yes
 checking for getcwd... (cached) yes
 checking for getpagesize... (cached) yes
 checking for index... yes
 checking for insque... yes
 checking for memchr... yes
 checking for memcmp... yes
 checking for memcpy... yes
 checking for memmove... yes
 checking for memset... yes
 checking for mkstemps... no
 checking for putenv... (cached) yes
 checking for random... yes
 checking for rename... yes
 checking for rindex... yes
 checking for setenv... (cached) yes
 checking for sigsetmask... yes
 checking for strcasecmp... (cached) yes
 checking for strchr... (cached) yes
 checking for strdup... yes
 checking for strncasecmp... yes
 checking for strrchr... yes
 checking for strstr... yes
 checking for strtod... yes
 checking for strtol... yes
 checking for strtoul... yes
 checking for tmpnam... yes
 checking for vasprintf... yes
 checking for vfprintf... yes
 checking for vprintf... yes
 checking for vsprintf... yes
 checking for waitpid... yes
 checking for working alloca.h... (cached) yes
 checking for alloca... (cached) yes
 checking for ANSI C header files... (cached) yes
 checking for pid_t... yes
 checking for vfork.h... no
 checking for working vfork... yes
 checking for sys_errlist... yes
 checking for sys_nerr... yes
 checking for sys_siglist... yes
 checking for getrusage... yes
 checking for on_exit... yes
 checking for psignal... yes
 checking for strerror... yes
 checking for strsignal... yes
 checking for sysconf... yes
 checking for times... yes
 checking for sbrk... yes
 checking for gettimeofday... yes
 checking for unistd.h... (cached) yes
 checking for getpagesize... (cached) yes
 checking for working mmap... (cached) yes
 checking for working strncmp... yes
 updating cache ../config.cache
 creating ./config.status
 creating Makefile
 creating testsuite/Makefile
 creating config.h
 Configuring opcodes...
 loading cache ../config.cache
 checking for Cygwin environment... no
 checking for mingw32 environment... no
 checking host system type... i686-pc-linux-gnu
 checking target system type... armv5-unknown-linux-gnu
 checking build system type... i686-pc-linux-gnu
 checking for strerror in -lcposix... no
 checking for a BSD compatible install... (cached) /usr/bin/install -c
 checking whether build environment is sane... yes
 checking whether make sets ${MAKE}... (cached) yes
 checking for working aclocal... found
 checking for working autoconf... found
 checking for working automake... found
 checking for working autoheader... found
 checking for working makeinfo... found
 checking for ar... (cached) ar
 checking for ranlib... (cached) ranlib
 checking for gcc... (cached) cc
 checking whether the C compiler (cc -g ) works... yes
 checking whether the C compiler (cc -g ) is a cross-compiler... no
 checking whether we are using GNU C... (cached) yes
 checking whether cc accepts -g... (cached) yes
 checking for ld used by GCC... /usr/bin/ld
 checking if the linker (/usr/bin/ld) is GNU ld... yes
 checking for /usr/bin/ld option to reload object files... -r
 checking for BSD-compatible nm... /usr/bin/nm -B
 checking whether ln -s works... yes
 checking how to recognise dependant libraries... pass_all
 checking for object suffix... o
 checking for executable suffix... no
 checking for ranlib... (cached) ranlib
 checking for strip... strip
 updating cache ../config.cache
 loading cache ../config.cache within ltconfig
 checking for objdir... .libs
 checking for cc option to produce PIC... -fPIC -DPIC
 checking if cc PIC flag -fPIC -DPIC works... yes
 checking if cc static flag -static works... yes
 checking if cc supports -c -o file.o... yes
 checking if cc supports -fno-rtti -fno-exceptions ... yes
 checking whether the linker (/usr/bin/ld) supports shared libraries... yes
 checking how to hardcode library paths into programs... immediate
 checking whether stripping libraries is possible... yes
 checking dynamic linker characteristics... GNU/Linux ld.so
 checking command to parse /usr/bin/nm -B output... ok
 checking if libtool supports shared libraries... yes
 checking whether to build shared libraries... no
 checking whether to build static libraries... yes
 creating libtool
 updating cache ../config.cache
 loading cache ../config.cache
 checking whether to enable maintainer-specific portions of Makefiles... no
 checking for executable suffix... (cached) no
 checking for gcc... (cached) cc
 checking whether the C compiler (cc -g ) works... yes
 checking whether the C compiler (cc -g ) is a cross-compiler... no
 checking whether we are using GNU C... (cached) yes
 checking whether cc accepts -g... (cached) yes
 checking how to run the C preprocessor... (cached) cc -E
 checking for ranlib... (cached) ranlib
 checking for ANSI C header files... (cached) yes
 checking for working const... (cached) yes
 checking for inline... (cached) inline
 checking for off_t... (cached) yes
 checking for size_t... (cached) yes
 checking for working alloca.h... (cached) yes
 checking for alloca... (cached) yes
 checking for unistd.h... (cached) yes
 checking for getpagesize... (cached) yes
 checking for working mmap... (cached) yes
 checking for argz.h... (cached) yes
 checking for limits.h... (cached) yes
 checking for locale.h... (cached) yes
 checking for nl_types.h... (cached) yes
 checking for malloc.h... (cached) yes
 checking for string.h... (cached) yes
 checking for unistd.h... (cached) yes
 checking for values.h... (cached) yes
 checking for sys/param.h... (cached) yes
 checking for getcwd... (cached) yes
 checking for munmap... (cached) yes
 checking for putenv... (cached) yes
 checking for setenv... (cached) yes
 checking for setlocale... (cached) yes
 checking for strchr... (cached) yes
 checking for strcasecmp... (cached) yes
 checking for __argz_count... (cached) yes
 checking for __argz_stringify... (cached) yes
 checking for __argz_next... (cached) yes
 checking for LC_MESSAGES... (cached) yes
 checking whether NLS is requested... yes
 checking whether included gettext is requested... no
 checking for libintl.h... (cached) yes
 checking for gettext in libc... (cached) yes
 checking for msgfmt... (cached) /usr/bin/msgfmt
 checking for dcgettext... (cached) yes
 checking for gmsgfmt... (cached) /usr/bin/msgfmt
 checking for xgettext... (cached) /usr/bin/xgettext
 checking for a BSD compatible install... /usr/bin/install -c
 checking for string.h... (cached) yes
 checking for strings.h... (cached) yes
 checking for stdlib.h... (cached) yes
 creating ./config.status
 creating Makefile
 creating po/Makefile.in
 creating config.h
 Configuring bfd...
 loading cache ../config.cache
 checking for Cygwin environment... (cached) no
 checking for mingw32 environment... (cached) no
 checking host system type... i686-pc-linux-gnu
 checking target system type... armv5-unknown-linux-gnu
 checking build system type... i686-pc-linux-gnu
 checking for strerror in -lcposix... (cached) no
 checking for a BSD compatible install... (cached) /usr/bin/install -c
 checking whether build environment is sane... yes
 checking whether make sets ${MAKE}... (cached) yes
 checking for working aclocal... found
 checking for working autoconf... found
 checking for working automake... found
 checking for working autoheader... found
 checking for working makeinfo... found
 checking for ar... (cached) ar
 checking for ranlib... (cached) ranlib
 checking for gcc... (cached) cc
 checking whether the C compiler (cc -g ) works... yes
 checking whether the C compiler (cc -g ) is a cross-compiler... no
 checking whether we are using GNU C... (cached) yes
 checking whether cc accepts -g... (cached) yes
 checking for ld used by GCC... (cached) /usr/bin/ld
 checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes
 checking for /usr/bin/ld option to reload object files... (cached) -r
 checking for BSD-compatible nm... (cached) /usr/bin/nm -B
 checking whether ln -s works... (cached) yes
 checking how to recognise dependant libraries... (cached) pass_all
 checking for object suffix... (cached) o
 checking for executable suffix... (cached) no
 checking for ranlib... (cached) ranlib
 checking for strip... (cached) strip
 loading cache ../config.cache within ltconfig
 checking for objdir... .libs
 checking for cc option to produce PIC...  -fPIC -DPIC
 checking if cc PIC flag  -fPIC -DPIC works... (cached) yes
 checking if cc static flag -static works... (cached) yes
 checking if cc supports -c -o file.o... yes
 checking if cc supports -fno-rtti -fno-exceptions ... yes
 checking whether the linker (/usr/bin/ld) supports shared libraries... yes
 checking how to hardcode library paths into programs... immediate
 checking whether stripping libraries is possible... yes
 checking dynamic linker characteristics... GNU/Linux ld.so
 checking command to parse /usr/bin/nm -B output... ok
 checking if libtool supports shared libraries... yes
 checking whether to build shared libraries... no
 checking whether to build static libraries... yes
 creating libtool
 loading cache ../config.cache
 checking whether to enable maintainer-specific portions of Makefiles... no
 checking for executable suffix... (cached) no
 checking for gcc... (cached) cc
 checking whether the C compiler (cc -g ) works... yes
 checking whether the C compiler (cc -g ) is a cross-compiler... no
 checking whether we are using GNU C... (cached) yes
 checking whether cc accepts -g... (cached) yes
 checking how to run the C preprocessor... (cached) cc -E
 checking for ranlib... (cached) ranlib
 checking for ANSI C header files... (cached) yes
 checking for working const... (cached) yes
 checking for inline... (cached) inline
 checking for off_t... (cached) yes
 checking for size_t... (cached) yes
 checking for working alloca.h... (cached) yes
 checking for alloca... (cached) yes
 checking for unistd.h... (cached) yes
 checking for getpagesize... (cached) yes
 checking for working mmap... (cached) yes
 checking for argz.h... (cached) yes
 checking for limits.h... (cached) yes
 checking for locale.h... (cached) yes
 checking for nl_types.h... (cached) yes
 checking for malloc.h... (cached) yes
 checking for string.h... (cached) yes
 checking for unistd.h... (cached) yes
 checking for values.h... (cached) yes
 checking for sys/param.h... (cached) yes
 checking for getcwd... (cached) yes
 checking for munmap... (cached) yes
 checking for putenv... (cached) yes
 checking for setenv... (cached) yes
 checking for setlocale... (cached) yes
 checking for strchr... (cached) yes
 checking for strcasecmp... (cached) yes
 checking for __argz_count... (cached) yes
 checking for __argz_stringify... (cached) yes
 checking for __argz_next... (cached) yes
 checking for LC_MESSAGES... (cached) yes
 checking whether NLS is requested... yes
 checking whether included gettext is requested... no
 checking for libintl.h... (cached) yes
 checking for gettext in libc... (cached) yes
 checking for msgfmt... (cached) /usr/bin/msgfmt
 checking for dcgettext... (cached) yes
 checking for gmsgfmt... (cached) /usr/bin/msgfmt
 checking for xgettext... (cached) /usr/bin/xgettext
 checking for a BSD compatible install... /usr/bin/install -c
 checking for stddef.h... yes
 checking for string.h... (cached) yes
 checking for strings.h... (cached) yes
 checking for stdlib.h... (cached) yes
 checking for time.h... (cached) yes
 checking for unistd.h... (cached) yes
 checking for fcntl.h... (cached) yes
 checking for sys/file.h... (cached) yes
 checking for sys/time.h... (cached) yes
 checking whether time.h and sys/time.h may both be included... (cached) yes
 checking for dirent.h that defines DIR... yes
 checking for opendir in -ldir... no
 checking for fcntl... yes
 checking for getpagesize... (cached) yes
 checking for setitimer... yes
 checking for sysconf... (cached) yes
 checking for fdopen... yes
 checking for getuid... yes
 checking for getgid... yes
 checking whether strstr must be declared... no
 checking whether malloc must be declared... no
 checking whether realloc must be declared... no
 checking whether free must be declared... no
 checking whether getenv must be declared... no
 checking for unistd.h... (cached) yes
 checking for getpagesize... (cached) yes
 checking for working mmap... (cached) yes
 checking for madvise... no
 checking for mprotect... yes
 updating cache ../config.cache
 creating ./config.status
 creating Makefile
 creating doc/Makefile
 creating bfd-in3.h
 creating po/Makefile.in
 creating config.h
 Configuring binutils...
 loading cache ../config.cache
 checking for Cygwin environment... (cached) no
 checking for mingw32 environment... (cached) no
 checking host system type... i686-pc-linux-gnu
 checking target system type... armv5-unknown-linux-gnu
 checking build system type... i686-pc-linux-gnu
 checking for strerror in -lcposix... (cached) no
 checking for a BSD compatible install... (cached) /usr/bin/install -c
 checking whether build environment is sane... yes
 checking whether make sets ${MAKE}... (cached) yes
 checking for working aclocal... found
 checking for working autoconf... found
 checking for working automake... found
 checking for working autoheader... found
 checking for working makeinfo... found
 checking for gcc... (cached) cc
 checking whether the C compiler (cc -g ) works... yes
 checking whether the C compiler (cc -g ) is a cross-compiler... no
 checking whether we are using GNU C... (cached) yes
 checking whether cc accepts -g... (cached) yes
 checking for ld used by GCC... (cached) /usr/bin/ld
 checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes
 checking for /usr/bin/ld option to reload object files... (cached) -r
 checking for BSD-compatible nm... (cached) /usr/bin/nm -B
 checking whether ln -s works... (cached) yes
 checking how to recognise dependant libraries... (cached) pass_all
 checking for object suffix... (cached) o
 checking for executable suffix... (cached) no
 checking for ranlib... (cached) ranlib
 checking for strip... (cached) strip
 loading cache ../config.cache within ltconfig
 checking whether -lc should be explicitly linked in... (cached) yes
 checking for objdir... .libs
 checking for cc option to produce PIC...  -fPIC -DPIC
 checking if cc PIC flag  -fPIC -DPIC works... (cached) yes
 checking if cc static flag -static works... (cached) yes
 checking if cc supports -c -o file.o... yes
 checking if cc supports -fno-rtti -fno-exceptions ... yes
 checking whether the linker (/usr/bin/ld) supports shared libraries... yes
 checking how to hardcode library paths into programs... immediate
 checking whether stripping libraries is possible... yes
 checking dynamic linker characteristics... GNU/Linux ld.so
 checking command to parse /usr/bin/nm -B output... ok
 checking if libtool supports shared libraries... yes
 checking whether to build shared libraries... yes
 checking whether to build static libraries... yes
 creating libtool
 loading cache ../config.cache
 checking for gcc... (cached) cc
 checking whether the C compiler (cc -g ) works... yes
 checking whether the C compiler (cc -g ) is a cross-compiler... no
 checking whether we are using GNU C... (cached) yes
 checking whether cc accepts -g... (cached) yes
 checking for bison... bison -y
 checking how to run the C preprocessor... (cached) cc -E
 checking for flex... flex
 checking for flex... (cached) flex
 checking for yywrap in -lfl... yes
 checking lex output file root... lex.yy
 checking whether yytext is a pointer... yes
 checking for ranlib... (cached) ranlib
 checking for ANSI C header files... (cached) yes
 checking for working const... (cached) yes
 checking for inline... (cached) inline
 checking for off_t... (cached) yes
 checking for size_t... (cached) yes
 checking for working alloca.h... (cached) yes
 checking for alloca... (cached) yes
 checking for unistd.h... (cached) yes
 checking for getpagesize... (cached) yes
 checking for working mmap... (cached) yes
 checking for argz.h... (cached) yes
 checking for limits.h... (cached) yes
 checking for locale.h... (cached) yes
 checking for nl_types.h... (cached) yes
 checking for malloc.h... (cached) yes
 checking for string.h... (cached) yes
 checking for unistd.h... (cached) yes
 checking for values.h... (cached) yes
 checking for sys/param.h... (cached) yes
 checking for getcwd... (cached) yes
 checking for munmap... (cached) yes
 checking for putenv... (cached) yes
 checking for setenv... (cached) yes
 checking for setlocale... (cached) yes
 checking for strchr... (cached) yes
 checking for strcasecmp... (cached) yes
 checking for __argz_count... (cached) yes
 checking for __argz_stringify... (cached) yes
 checking for __argz_next... (cached) yes
 checking for LC_MESSAGES... (cached) yes
 checking whether NLS is requested... yes
 checking whether included gettext is requested... no
 checking for libintl.h... (cached) yes
 checking for gettext in libc... (cached) yes
 checking for msgfmt... (cached) /usr/bin/msgfmt
 checking for dcgettext... (cached) yes
 checking for gmsgfmt... (cached) /usr/bin/msgfmt
 checking for xgettext... (cached) /usr/bin/xgettext
 checking whether to enable maintainer-specific portions of Makefiles... no
 checking for executable suffix... (cached) no
 checking for ranlib... (cached) ranlib
 checking for a BSD compatible install... /usr/bin/install -c
 checking for string.h... (cached) yes
 checking for strings.h... (cached) yes
 checking for stdlib.h... (cached) yes
 checking for unistd.h... (cached) yes
 checking for fcntl.h... (cached) yes
 checking for sys/file.h... (cached) yes
 checking for sys/wait.h that is POSIX.1 compatible... (cached) yes
 checking for working alloca.h... (cached) yes
 checking for alloca... (cached) yes
 checking for sbrk... (cached) yes
 checking for utimes... yes
 checking for setmode... no
 checking for library containing frexp... none required
 checking for time_t in time.h... yes
 checking for time_t in sys/types.h... yes
 checking for utime.h... yes
 checking whether fprintf must be declared... no
 checking whether strstr must be declared... (cached) no
 checking whether sbrk must be declared... no
 checking whether getenv must be declared... (cached) no
 checking whether environ must be declared... yes
 updating cache ../config.cache
 creating ./config.status
 creating Makefile
 creating po/Makefile.in
 creating config.h
 Configuring ld...
 loading cache ../config.cache
 checking for Cygwin environment... (cached) no
 checking for mingw32 environment... (cached) no
 checking host system type... i686-pc-linux-gnu
 checking target system type... armv5-unknown-linux-gnu
 checking build system type... i686-pc-linux-gnu
 checking for gcc... (cached) cc
 checking whether the C compiler (cc -g ) works... yes
 checking whether the C compiler (cc -g ) is a cross-compiler... no
 checking whether we are using GNU C... (cached) yes
 checking whether cc accepts -g... (cached) yes
 checking for POSIXized ISC... no
 checking for a BSD compatible install... (cached) /usr/bin/install -c
 checking whether build environment is sane... yes
 checking whether make sets ${MAKE}... (cached) yes
 checking for working aclocal... found
 checking for working autoconf... found
 checking for working automake... found
 checking for working autoheader... found
 checking for working makeinfo... found
 checking for ld used by GCC... (cached) /usr/bin/ld
 checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes
 checking for /usr/bin/ld option to reload object files... (cached) -r
 checking for BSD-compatible nm... (cached) /usr/bin/nm -B
 checking whether ln -s works... (cached) yes
 checking how to recognise dependant libraries... (cached) pass_all
 checking for object suffix... (cached) o
 checking for executable suffix... (cached) no
 checking for ranlib... (cached) ranlib
 checking for strip... (cached) strip
 loading cache ../config.cache within ltconfig
 checking whether -lc should be explicitly linked in... (cached) yes
 checking for objdir... .libs
 checking for cc option to produce PIC...  -fPIC -DPIC
 checking if cc PIC flag  -fPIC -DPIC works... (cached) yes
 checking if cc static flag -static works... (cached) yes
 checking if cc supports -c -o file.o... yes
 checking if cc supports -fno-rtti -fno-exceptions ... yes
 checking whether the linker (/usr/bin/ld) supports shared libraries... yes
 checking how to hardcode library paths into programs... immediate
 checking whether stripping libraries is possible... yes
 checking dynamic linker characteristics... GNU/Linux ld.so
 checking command to parse /usr/bin/nm -B output... ok
 checking if libtool supports shared libraries... yes
 checking whether to build shared libraries... yes
 checking whether to build static libraries... yes
 creating libtool
 loading cache ../config.cache
 checking for gcc... (cached) cc
 checking whether the C compiler (cc -g ) works... yes
 checking whether the C compiler (cc -g ) is a cross-compiler... no
 checking whether we are using GNU C... (cached) yes
 checking whether cc accepts -g... (cached) yes
 checking for a BSD compatible install... /usr/bin/install -c
 checking how to run the C preprocessor... (cached) cc -E
 checking for ranlib... (cached) ranlib
 checking for ANSI C header files... (cached) yes
 checking for working const... (cached) yes
 checking for inline... (cached) inline
 checking for off_t... (cached) yes
 checking for size_t... (cached) yes
 checking for working alloca.h... (cached) yes
 checking for alloca... (cached) yes
 checking for unistd.h... (cached) yes
 checking for getpagesize... (cached) yes
 checking for working mmap... (cached) yes
 checking for argz.h... (cached) yes
 checking for limits.h... (cached) yes
 checking for locale.h... (cached) yes
 checking for nl_types.h... (cached) yes
 checking for malloc.h... (cached) yes
 checking for string.h... (cached) yes
 checking for unistd.h... (cached) yes
 checking for values.h... (cached) yes
 checking for sys/param.h... (cached) yes
 checking for getcwd... (cached) yes
 checking for munmap... (cached) yes
 checking for putenv... (cached) yes
 checking for setenv... (cached) yes
 checking for setlocale... (cached) yes
 checking for strchr... (cached) yes
 checking for strcasecmp... (cached) yes
 checking for __argz_count... (cached) yes
 checking for __argz_stringify... (cached) yes
 checking for __argz_next... (cached) yes
 checking for LC_MESSAGES... (cached) yes
 checking whether NLS is requested... yes
 checking whether included gettext is requested... no
 checking for libintl.h... (cached) yes
 checking for gettext in libc... (cached) yes
 checking for msgfmt... (cached) /usr/bin/msgfmt
 checking for dcgettext... (cached) yes
 checking for gmsgfmt... (cached) /usr/bin/msgfmt
 checking for xgettext... (cached) /usr/bin/xgettext
 checking for executable suffix... (cached) no
 checking for bison... (cached) bison -y
 checking for flex... (cached) flex
 checking for flex... (cached) flex
 checking for yywrap in -lfl... (cached) yes
 checking lex output file root... (cached) lex.yy
 checking whether yytext is a pointer... (cached) yes
 checking whether to enable maintainer-specific portions of Makefiles... no
 checking for string.h... (cached) yes
 checking for strings.h... (cached) yes
 checking for stdlib.h... (cached) yes
 checking for unistd.h... (cached) yes
 checking for sbrk... (cached) yes
 checking for dirent.h that defines DIR... (cached) yes
 checking for opendir in -ldir... (cached) no
 checking whether strstr must be declared... (cached) no
 checking whether free must be declared... (cached) no
 checking whether sbrk must be declared... (cached) no
 checking whether getenv must be declared... (cached) no
 checking whether environ must be declared... (cached) yes
 checking whether ANSI C string concatenation works... yes
 updating cache ../config.cache
 creating ./config.status
 creating Makefile
 creating po/Makefile.in
 creating config.h
 Configuring gas...
 loading cache ../config.cache
 checking for Cygwin environment... (cached) no
 checking for mingw32 environment... (cached) no
 checking host system type... i686-pc-linux-gnu
 checking target system type... armv5-unknown-linux-gnu
 checking build system type... i686-pc-linux-gnu
 checking for strerror in -lcposix... (cached) no
 checking for a BSD compatible install... (cached) /usr/bin/install -c
 checking whether build environment is sane... yes
 checking whether make sets ${MAKE}... (cached) yes
 checking for working aclocal... found
 checking for working autoconf... found
 checking for working automake... found
 checking for working autoheader... found
 checking for working makeinfo... found
 checking for gcc... (cached) cc
 checking whether the C compiler (cc -g ) works... yes
 checking whether the C compiler (cc -g ) is a cross-compiler... no
 checking whether we are using GNU C... (cached) yes
 checking whether cc accepts -g... (cached) yes
 checking for ld used by GCC... (cached) /usr/bin/ld
 checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes
 checking for /usr/bin/ld option to reload object files... (cached) -r
 checking for BSD-compatible nm... (cached) /usr/bin/nm -B
 checking whether ln -s works... (cached) yes
 checking how to recognise dependant libraries... (cached) pass_all
 checking for object suffix... (cached) o
 checking for executable suffix... (cached) no
 checking for ranlib... (cached) ranlib
 checking for strip... (cached) strip
 loading cache ../config.cache within ltconfig
 checking whether -lc should be explicitly linked in... (cached) yes
 checking for objdir... .libs
 checking for cc option to produce PIC...  -fPIC -DPIC
 checking if cc PIC flag  -fPIC -DPIC works... (cached) yes
 checking if cc static flag -static works... (cached) yes
 checking if cc supports -c -o file.o... yes
 checking if cc supports -fno-rtti -fno-exceptions ... yes
 checking whether the linker (/usr/bin/ld) supports shared libraries... yes
 checking how to hardcode library paths into programs... immediate
 checking whether stripping libraries is possible... yes
 checking dynamic linker characteristics... GNU/Linux ld.so
 checking command to parse /usr/bin/nm -B output... ok
 checking if libtool supports shared libraries... yes
 checking whether to build shared libraries... yes
 checking whether to build static libraries... yes
 creating libtool
 loading cache ../config.cache
 checking for gcc... (cached) cc
 checking whether the C compiler (cc -g ) works... yes
 checking whether the C compiler (cc -g ) is a cross-compiler... no
 checking whether we are using GNU C... (cached) yes
 checking whether cc accepts -g... (cached) yes
 checking for bison... (cached) bison -y
 checking how to run the C preprocessor... (cached) cc -E
 checking for flex... (cached) flex
 checking for flex... (cached) flex
 checking for yywrap in -lfl... (cached) yes
 checking lex output file root... (cached) lex.yy
 checking whether yytext is a pointer... (cached) yes
 checking for ranlib... (cached) ranlib
 checking for ANSI C header files... (cached) yes
 checking for working const... (cached) yes
 checking for inline... (cached) inline
 checking for off_t... (cached) yes
 checking for size_t... (cached) yes
 checking for working alloca.h... (cached) yes
 checking for alloca... (cached) yes
 checking for unistd.h... (cached) yes
 checking for getpagesize... (cached) yes
 checking for working mmap... (cached) yes
 checking for argz.h... (cached) yes
 checking for limits.h... (cached) yes
 checking for locale.h... (cached) yes
 checking for nl_types.h... (cached) yes
 checking for malloc.h... (cached) yes
 checking for string.h... (cached) yes
 checking for unistd.h... (cached) yes
 checking for values.h... (cached) yes
 checking for sys/param.h... (cached) yes
 checking for getcwd... (cached) yes
 checking for munmap... (cached) yes
 checking for putenv... (cached) yes
 checking for setenv... (cached) yes
 checking for setlocale... (cached) yes
 checking for strchr... (cached) yes
 checking for strcasecmp... (cached) yes
 checking for __argz_count... (cached) yes
 checking for __argz_stringify... (cached) yes
 checking for __argz_next... (cached) yes
 checking for LC_MESSAGES... (cached) yes
 checking whether NLS is requested... yes
 checking whether included gettext is requested... no
 checking for libintl.h... (cached) yes
 checking for gettext in libc... (cached) yes
 checking for msgfmt... (cached) /usr/bin/msgfmt
 checking for dcgettext... (cached) yes
 checking for gmsgfmt... (cached) /usr/bin/msgfmt
 checking for xgettext... (cached) /usr/bin/xgettext
 checking whether to enable maintainer-specific portions of Makefiles... no
 checking for executable suffix... (cached) no
 checking for string.h... (cached) yes
 checking for stdlib.h... (cached) yes
 checking for memory.h... yes
 checking for strings.h... (cached) yes
 checking for unistd.h... (cached) yes
 checking for stdarg.h... yes
 checking for varargs.h... yes
 checking for errno.h... yes
 checking for sys/types.h... yes
 checking whether compiling a cross-assembler... yes
 checking for working alloca.h... (cached) yes
 checking for alloca... (cached) yes
 checking for inline... (cached) inline
 checking for unlink... yes
 checking for sbrk... (cached) yes
 checking for working assert macro... yes
 checking whether declaration is required for strstr... no
 checking whether declaration is required for malloc... no
 checking whether declaration is required for free... no
 checking whether declaration is required for sbrk... no
 checking whether declaration is required for environ... yes
 checking whether declaration is required for errno... no
 updating cache ../config.cache
 creating ./config.status
 creating Makefile
 creating doc/Makefile
 creating .gdbinit
 creating po/Makefile.in
 creating config.h
 Configuring etc...
 loading cache ../config.cache
 checking for a BSD compatible install... (cached) /usr/bin/install -c
 creating ./config.status
 creating Makefile
 + make MAKE=make -j1
 make[1]: Entering directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/libiberty'
 if [ x"" != x ] && [ ! -d pic ]; then \
   mkdir pic; \
 else true; fi
 touch stamp-picdir
 if [ x"" != x ]; then \
 
 
 cc -c -DHAVE_CONFIG_H -g -I. -I/scratch/crossdev-build/src/binutils-010118/l
 ibiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/binutils-010118/libiberty/argv.c -o pic/argv.o;
 \
 else true; fi
 cc -c -DHAVE_CONFIG_H -g -I. -I/scratch/crossdev-build/src/binutils-010118/l
 ibiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/binutils-010118/libiberty/argv.c
 if [ x"" != x ]; then \
 
 
 cc -c -DHAVE_CONFIG_H -g -I. -I/scratch/crossdev-build/src/binutils-010118/l
 ibiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/binutils-010118/libiberty/choose-temp.c -o
 pic/choose-temp.o; \
 else true; fi
 cc -c -DHAVE_CONFIG_H -g -I. -I/scratch/crossdev-build/src/binutils-010118/l
 ibiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/binutils-010118/libiberty/choose-temp.c
 if [ x"" != x ]; then \
 
 
 cc -c -DHAVE_CONFIG_H -g -I. -I/scratch/crossdev-build/src/binutils-010118/l
 ibiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/binutils-010118/libiberty/concat.c -o
 pic/concat.o; \
 else true; fi
 cc -c -DHAVE_CONFIG_H -g -I. -I/scratch/crossdev-build/src/binutils-010118/l
 ibiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/binutils-010118/libiberty/concat.c
 if [ x"" != x ]; then \
 
 
 cc -c -DHAVE_CONFIG_H -g -I. -I/scratch/crossdev-build/src/binutils-010118/l
 ibiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/binutils-010118/libiberty/cplus-dem.c -o
 pic/cplus-dem.o; \
 else true; fi
 cc -c -DHAVE_CONFIG_H -g -I. -I/scratch/crossdev-build/src/binutils-010118/l
 ibiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/binutils-010118/libiberty/cplus-dem.c
 if [ x"" != x ]; then \
 
 
 cc -c -DHAVE_CONFIG_H -g -I. -I/scratch/crossdev-build/src/binutils-010118/l
 ibiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/binutils-010118/libiberty/cp-demangle.c -o
 pic/cp-demangle.o; \
 else true; fi
 cc -c -DHAVE_CONFIG_H -g -I. -I/scratch/crossdev-build/src/binutils-010118/l
 ibiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/binutils-010118/libiberty/cp-demangle.c
 if [ x"" != x ]; then \
 
 
 cc -c -DHAVE_CONFIG_H -g -I. -I/scratch/crossdev-build/src/binutils-010118/l
 ibiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/binutils-010118/libiberty/dyn-string.c -o
 pic/dyn-string.o; \
 else true; fi
 cc -c -DHAVE_CONFIG_H -g -I. -I/scratch/crossdev-build/src/binutils-010118/l
 ibiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/binutils-010118/libiberty/dyn-string.c
 if [ x"" != x ]; then \
 
 
 cc -c -DHAVE_CONFIG_H -g -I. -I/scratch/crossdev-build/src/binutils-010118/l
 ibiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/binutils-010118/libiberty/fdmatch.c -o
 pic/fdmatch.o; \
 else true; fi
 cc -c -DHAVE_CONFIG_H -g -I. -I/scratch/crossdev-build/src/binutils-010118/l
 ibiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/binutils-010118/libiberty/fdmatch.c
 if [ x"" != x ]; then \
 
 
 cc -c -DHAVE_CONFIG_H -g -I. -I/scratch/crossdev-build/src/binutils-010118/l
 ibiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/binutils-010118/libiberty/fnmatch.c -o
 pic/fnmatch.o; \
 else true; fi
 cc -c -DHAVE_CONFIG_H -g -I. -I/scratch/crossdev-build/src/binutils-010118/l
 ibiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/binutils-010118/libiberty/fnmatch.c
 if [ x"" != x ]; then \
 
 
 cc -c -DHAVE_CONFIG_H -g -I. -I/scratch/crossdev-build/src/binutils-010118/l
 ibiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/binutils-010118/libiberty/getopt.c -o
 pic/getopt.o; \
 else true; fi
 cc -c -DHAVE_CONFIG_H -g -I. -I/scratch/crossdev-build/src/binutils-010118/l
 ibiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/binutils-010118/libiberty/getopt.c
 if [ x"" != x ]; then \
 
 
 cc -c -DHAVE_CONFIG_H -g -I. -I/scratch/crossdev-build/src/binutils-010118/l
 ibiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/binutils-010118/libiberty/getopt1.c -o
 pic/getopt1.o; \
 else true; fi
 cc -c -DHAVE_CONFIG_H -g -I. -I/scratch/crossdev-build/src/binutils-010118/l
 ibiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/binutils-010118/libiberty/getopt1.c
 if [ x"" != x ]; then \
 
 
 cc -c -DHAVE_CONFIG_H -g -I. -I/scratch/crossdev-build/src/binutils-010118/l
 ibiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/binutils-010118/libiberty/getpwd.c -o
 pic/getpwd.o; \
 else true; fi
 cc -c -DHAVE_CONFIG_H -g -I. -I/scratch/crossdev-build/src/binutils-010118/l
 ibiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/binutils-010118/libiberty/getpwd.c
 if [ x"" != x ]; then \
 
 
 cc -c -DHAVE_CONFIG_H -g -I. -I/scratch/crossdev-build/src/binutils-010118/l
 ibiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/binutils-010118/libiberty/getruntime.c -o
 pic/getruntime.o; \
 else true; fi
 cc -c -DHAVE_CONFIG_H -g -I. -I/scratch/crossdev-build/src/binutils-010118/l
 ibiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/binutils-010118/libiberty/getruntime.c
 if [ x"" != x ]; then \
 
 
 cc -c -DHAVE_CONFIG_H -g -I. -I/scratch/crossdev-build/src/binutils-010118/l
 ibiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/binutils-010118/libiberty/hashtab.c -o
 pic/hashtab.o; \
 else true; fi
 cc -c -DHAVE_CONFIG_H -g -I. -I/scratch/crossdev-build/src/binutils-010118/l
 ibiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/binutils-010118/libiberty/hashtab.c
 /scratch/crossdev-build/src/binutils-010118/libiberty/hashtab.c: In function
 `higher_prime_number':
 /scratch/crossdev-build/src/binutils-010118/libiberty/hashtab.c:114:
 warning: integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/binutils-010118/libiberty/hashtab.c:114:
 warning: decimal constant is so large that it is unsigned
 if [ x"" != x ]; then \
 
 
 cc -c -DHAVE_CONFIG_H -g -I. -I/scratch/crossdev-build/src/binutils-010118/l
 ibiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/binutils-010118/libiberty/hex.c -o pic/hex.o; \
 else true; fi
 cc -c -DHAVE_CONFIG_H -g -I. -I/scratch/crossdev-build/src/binutils-010118/l
 ibiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/binutils-010118/libiberty/hex.c
 if [ x"" != x ]; then \
 
 
 cc -c -DHAVE_CONFIG_H -g -I. -I/scratch/crossdev-build/src/binutils-010118/l
 ibiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/binutils-010118/libiberty/floatformat.c -o
 pic/floatformat.o; \
 else true; fi
 cc -c -DHAVE_CONFIG_H -g -I. -I/scratch/crossdev-build/src/binutils-010118/l
 ibiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/binutils-010118/libiberty/floatformat.c
 if [ x"" != x ]; then \
 
 
 cc -c -DHAVE_CONFIG_H -g -I. -I/scratch/crossdev-build/src/binutils-010118/l
 ibiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/binutils-010118/libiberty/md5.c -o pic/md5.o; \
 else true; fi
 cc -c -DHAVE_CONFIG_H -g -I. -I/scratch/crossdev-build/src/binutils-010118/l
 ibiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/binutils-010118/libiberty/md5.c
 /scratch/crossdev-build/src/binutils-010118/libiberty/md5.c: In function
 `md5_init_ctx':
 /scratch/crossdev-build/src/binutils-010118/libiberty/md5.c:69: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/binutils-010118/libiberty/md5.c:70: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/binutils-010118/libiberty/md5.c: In function
 `md5_process_block':
 /scratch/crossdev-build/src/binutils-010118/libiberty/md5.c:325: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/binutils-010118/libiberty/md5.c:326: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/binutils-010118/libiberty/md5.c:328: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/binutils-010118/libiberty/md5.c:329: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/binutils-010118/libiberty/md5.c:331: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/binutils-010118/libiberty/md5.c:332: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/binutils-010118/libiberty/md5.c:334: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/binutils-010118/libiberty/md5.c:335: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/binutils-010118/libiberty/md5.c:336: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/binutils-010118/libiberty/md5.c:338: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/binutils-010118/libiberty/md5.c:339: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/binutils-010118/libiberty/md5.c:356: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/binutils-010118/libiberty/md5.c:357: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/binutils-010118/libiberty/md5.c:359: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/binutils-010118/libiberty/md5.c:360: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/binutils-010118/libiberty/md5.c:362: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/binutils-010118/libiberty/md5.c:363: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/binutils-010118/libiberty/md5.c:365: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/binutils-010118/libiberty/md5.c:366: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/binutils-010118/libiberty/md5.c:368: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/binutils-010118/libiberty/md5.c:369: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/binutils-010118/libiberty/md5.c:371: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/binutils-010118/libiberty/md5.c:374: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/binutils-010118/libiberty/md5.c:375: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/binutils-010118/libiberty/md5.c:377: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/binutils-010118/libiberty/md5.c:378: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/binutils-010118/libiberty/md5.c:380: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/binutils-010118/libiberty/md5.c:381: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/binutils-010118/libiberty/md5.c:383: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/binutils-010118/libiberty/md5.c:384: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/binutils-010118/libiberty/md5.c:386: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/binutils-010118/libiberty/md5.c:387: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/binutils-010118/libiberty/md5.c:389: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/binutils-010118/libiberty/md5.c:392: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/binutils-010118/libiberty/md5.c:394: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/binutils-010118/libiberty/md5.c:395: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/binutils-010118/libiberty/md5.c:397: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/binutils-010118/libiberty/md5.c:398: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/binutils-010118/libiberty/md5.c:399: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/binutils-010118/libiberty/md5.c:401: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/binutils-010118/libiberty/md5.c:402: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/binutils-010118/libiberty/md5.c:404: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/binutils-010118/libiberty/md5.c:405: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/binutils-010118/libiberty/md5.c:407: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 if [ x"" != x ]; then \
 
 
 cc -c -DHAVE_CONFIG_H -g -I. -I/scratch/crossdev-build/src/binutils-010118/l
 ibiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/binutils-010118/libiberty/objalloc.c -o
 pic/objalloc.o; \
 else true; fi
 cc -c -DHAVE_CONFIG_H -g -I. -I/scratch/crossdev-build/src/binutils-010118/l
 ibiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/binutils-010118/libiberty/objalloc.c
 if [ x"" != x ]; then \
 
 
 cc -c -DHAVE_CONFIG_H -g -I. -I/scratch/crossdev-build/src/binutils-010118/l
 ibiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/binutils-010118/libiberty/obstack.c -o
 pic/obstack.o; \
 else true; fi
 cc -c -DHAVE_CONFIG_H -g -I. -I/scratch/crossdev-build/src/binutils-010118/l
 ibiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/binutils-010118/libiberty/obstack.c
 if [ x"" != x ]; then \
 
 
 cc -c -DHAVE_CONFIG_H -g -I. -I/scratch/crossdev-build/src/binutils-010118/l
 ibiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/binutils-010118/libiberty/partition.c -o
 pic/partition.o; \
 else true; fi
 cc -c -DHAVE_CONFIG_H -g -I. -I/scratch/crossdev-build/src/binutils-010118/l
 ibiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/binutils-010118/libiberty/partition.c
 if [ x"" != x ]; then \
 
 
 cc -c -DHAVE_CONFIG_H -g -I. -I/scratch/crossdev-build/src/binutils-010118/l
 ibiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/binutils-010118/libiberty/pexecute.c -o
 pic/pexecute.o; \
 else true; fi
 cc -c -DHAVE_CONFIG_H -g -I. -I/scratch/crossdev-build/src/binutils-010118/l
 ibiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/binutils-010118/libiberty/pexecute.c
 if [ x"" != x ]; then \
 
 
 cc -c -DHAVE_CONFIG_H -g -I. -I/scratch/crossdev-build/src/binutils-010118/l
 ibiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/binutils-010118/libiberty/safe-ctype.c -o
 pic/safe-ctype.o; \
 else true; fi
 cc -c -DHAVE_CONFIG_H -g -I. -I/scratch/crossdev-build/src/binutils-010118/l
 ibiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/binutils-010118/libiberty/safe-ctype.c
 if [ x"" != x ]; then \
 
 
 cc -c -DHAVE_CONFIG_H -g -I. -I/scratch/crossdev-build/src/binutils-010118/l
 ibiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/binutils-010118/libiberty/sort.c -o pic/sort.o;
 \
 else true; fi
 cc -c -DHAVE_CONFIG_H -g -I. -I/scratch/crossdev-build/src/binutils-010118/l
 ibiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/binutils-010118/libiberty/sort.c
 if [ x"" != x ]; then \
 
 
 cc -c -DHAVE_CONFIG_H -g -I. -I/scratch/crossdev-build/src/binutils-010118/l
 ibiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/binutils-010118/libiberty/spaces.c -o
 pic/spaces.o; \
 else true; fi
 cc -c -DHAVE_CONFIG_H -g -I. -I/scratch/crossdev-build/src/binutils-010118/l
 ibiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/binutils-010118/libiberty/spaces.c
 if [ x"" != x ]; then \
 
 
 cc -c -DHAVE_CONFIG_H -g -I. -I/scratch/crossdev-build/src/binutils-010118/l
 ibiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/binutils-010118/libiberty/splay-tree.c -o
 pic/splay-tree.o; \
 else true; fi
 cc -c -DHAVE_CONFIG_H -g -I. -I/scratch/crossdev-build/src/binutils-010118/l
 ibiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/binutils-010118/libiberty/splay-tree.c
 if [ x"" != x ]; then \
 
 
 cc -c -DHAVE_CONFIG_H -g -I. -I/scratch/crossdev-build/src/binutils-010118/l
 ibiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/binutils-010118/libiberty/strerror.c -o
 pic/strerror.o; \
 else true; fi
 cc -c -DHAVE_CONFIG_H -g -I. -I/scratch/crossdev-build/src/binutils-010118/l
 ibiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/binutils-010118/libiberty/strerror.c
 if [ x"" != x ]; then \
 
 
 cc -c -DHAVE_CONFIG_H -g -I. -I/scratch/crossdev-build/src/binutils-010118/l
 ibiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/binutils-010118/libiberty/strsignal.c -o
 pic/strsignal.o; \
 else true; fi
 cc -c -DHAVE_CONFIG_H -g -I. -I/scratch/crossdev-build/src/binutils-010118/l
 ibiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/binutils-010118/libiberty/strsignal.c
 if [ x"" != x ]; then \
 
 
 cc -c -DHAVE_CONFIG_H -g -I. -I/scratch/crossdev-build/src/binutils-010118/l
 ibiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/binutils-010118/libiberty/xatexit.c -o
 pic/xatexit.o; \
 else true; fi
 cc -c -DHAVE_CONFIG_H -g -I. -I/scratch/crossdev-build/src/binutils-010118/l
 ibiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/binutils-010118/libiberty/xatexit.c
 if [ x"" != x ]; then \
 
 
 cc -c -DHAVE_CONFIG_H -g -I. -I/scratch/crossdev-build/src/binutils-010118/l
 ibiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/binutils-010118/libiberty/xexit.c -o
 pic/xexit.o; \
 else true; fi
 cc -c -DHAVE_CONFIG_H -g -I. -I/scratch/crossdev-build/src/binutils-010118/l
 ibiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/binutils-010118/libiberty/xexit.c
 if [ x"" != x ]; then \
 
 
 cc -c -DHAVE_CONFIG_H -g -I. -I/scratch/crossdev-build/src/binutils-010118/l
 ibiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/binutils-010118/libiberty/xmalloc.c -o
 pic/xmalloc.o; \
 else true; fi
 cc -c -DHAVE_CONFIG_H -g -I. -I/scratch/crossdev-build/src/binutils-010118/l
 ibiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/binutils-010118/libiberty/xmalloc.c
 if [ x"" != x ]; then \
 
 
 cc -c -DHAVE_CONFIG_H -g -I. -I/scratch/crossdev-build/src/binutils-010118/l
 ibiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/binutils-010118/libiberty/xmemdup.c -o
 pic/xmemdup.o; \
 else true; fi
 cc -c -DHAVE_CONFIG_H -g -I. -I/scratch/crossdev-build/src/binutils-010118/l
 ibiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/binutils-010118/libiberty/xmemdup.c
 if [ x"" != x ]; then \
 
 
 cc -c -DHAVE_CONFIG_H -g -I. -I/scratch/crossdev-build/src/binutils-010118/l
 ibiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/binutils-010118/libiberty/xstrdup.c -o
 pic/xstrdup.o; \
 else true; fi
 cc -c -DHAVE_CONFIG_H -g -I. -I/scratch/crossdev-build/src/binutils-010118/l
 ibiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/binutils-010118/libiberty/xstrdup.c
 if [ x"" != x ]; then \
 
 
 cc -c -DHAVE_CONFIG_H -g -I. -I/scratch/crossdev-build/src/binutils-010118/l
 ibiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/binutils-010118/libiberty/xstrerror.c -o
 pic/xstrerror.o; \
 else true; fi
 cc -c -DHAVE_CONFIG_H -g -I. -I/scratch/crossdev-build/src/binutils-010118/l
 ibiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/binutils-010118/libiberty/xstrerror.c
 if [ x"" != x ]; then \
 
 
 cc -c -DHAVE_CONFIG_H -g -I. -I/scratch/crossdev-build/src/binutils-010118/l
 ibiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/binutils-010118/libiberty/mkstemps.c -o
 pic/mkstemps.o; \
 else true; fi
 cc -c -DHAVE_CONFIG_H -g -I. -I/scratch/crossdev-build/src/binutils-010118/l
 ibiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/binutils-010118/libiberty/mkstemps.c
 rm -f libiberty.a
 ar rc libiberty.a \
   argv.o choose-temp.o concat.o cplus-dem.o cp-demangle.o dyn-string.o
 fdmatch.o fnmatch.o getopt.o getopt1.o getpwd.o getruntime.o hashtab.o hex.o
 floatformat.o md5.o objalloc.o obstack.o partition.o pexecute.o safe-ctype.o
 sort.o spaces.o splay-tree.o strerror.o strsignal.o xatexit.o xexit.o
 xmalloc.o xmemdup.o xstrdup.o xstrerror.o  mkstemps.o
 ranlib libiberty.a
 rm -f needed-list; touch needed-list; \
 for f in atexit calloc memchr memcmp memcpy memmove memset rename strchr
 strerror strncmp strrchr strstr strtol strtoul tmpnam vfprintf vprintf vfork
 waitpid bcmp bcopy bzero; do \
   for g in mkstemps.o ; do \
     case "$g" in \
       *$f*) echo $g >> needed-list ;; \
     esac; \
   done; \
 done
 echo argv.o choose-temp.o concat.o cplus-dem.o cp-demangle.o dyn-string.o
 fdmatch.o fnmatch.o getopt.o getopt1.o getpwd.o getruntime.o hashtab.o hex.o
 floatformat.o md5.o objalloc.o obstack.o partition.o pexecute.o safe-ctype.o
 sort.o spaces.o splay-tree.o strerror.o strsignal.o xatexit.o xexit.o
 xmalloc.o xmemdup.o xstrdup.o xstrerror.o > required-list
 make[2]: Entering directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/libiberty/testsuite
 '
 make[2]: Nothing to be done for `all'.
 make[2]: Leaving directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/libiberty/testsuite
 '
 make[1]: Leaving directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/libiberty'
 make[1]: Entering directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/intl'
 make[1]: Nothing to be done for `all'.
 make[1]: Leaving directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/intl'
 make[1]: Entering directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/bfd'
 make -j1  all-recursive
 make[2]: Entering directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/bfd'
 Making all in doc
 make[3]: Entering directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/bfd/doc'
 make[3]: Nothing to be done for `all'.
 make[3]: Leaving directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/bfd/doc'
 Making all in po
 make[3]: Entering directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/bfd/po'
 make[3]: Nothing to be done for `all'.
 make[3]: Leaving directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/bfd/po'
 make[3]: Entering directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/bfd'
 rm -f bfd-tmp.h
 cp bfd-in3.h bfd-tmp.h
 /bin/sh /scratch/crossdev-build/src/binutils-010118/bfd/../move-if-change
 bfd-tmp.h bfd.h
 rm -f bfd-tmp.h
 touch stmp-bfd-h
 /bin/sh ./libtool --mode=compile
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I.
  -D_GNU_SOURCE     -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I/
 scratch/crossdev-build/src/binutils-010118/bfd/../include  -I/scratch/crossd
 ev-build/src/binutils-010118/bfd/../intl -I../intl   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/bfd/archive.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I.
  -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I/scra
 tch/crossdev-build/src/binutils-010118/bfd/../include -I/scratch/crossdev-bu
 ild/src/binutils-010118/bfd/../intl -I../intl -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/bfd/archive.c -o archive.o
 /bin/sh ./libtool --mode=compile
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I.
  -D_GNU_SOURCE     -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I/
 scratch/crossdev-build/src/binutils-010118/bfd/../include  -I/scratch/crossd
 ev-build/src/binutils-010118/bfd/../intl -I../intl   -W -Wall -g -c -DDEFAUL
 T_VECTOR=bfd_elf32_littlearm_vec -DSELECT_VECS='&bfd_elf32_littlearm_vec,&bf
 d_elf32_bigarm_vec,&bfd_elf32_little_generic_vec,&bfd_elf32_big_generic_vec'
  -DSELECT_ARCHITECTURES='&bfd_arm_arch' -DHAVE_bfd_elf32_littlearm_vec -DHAV
 E_bfd_elf32_bigarm_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_
 big_generic_vec /scratch/crossdev-build/src/binutils-010118/bfd/archures.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I.
  -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I/scra
 tch/crossdev-build/src/binutils-010118/bfd/../include -I/scratch/crossdev-bu
 ild/src/binutils-010118/bfd/../intl -I../intl -W -Wall -g -c -DDEFAULT_VECTO
 R=bfd_elf32_littlearm_vec
 "-DSELECT_VECS=&bfd_elf32_littlearm_vec,&bfd_elf32_bigarm_vec,&bfd_elf32_lit
 tle_generic_vec,&bfd_elf32_big_generic_vec"
 "-DSELECT_ARCHITECTURES=&bfd_arm_arch" -DHAVE_bfd_elf32_littlearm_vec -DHAVE
 _bfd_elf32_bigarm_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_b
 ig_generic_vec /scratch/crossdev-build/src/binutils-010118/bfd/archures.c -o
 archures.o
 /bin/sh ./libtool --mode=compile
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I.
  -D_GNU_SOURCE     -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I/
 scratch/crossdev-build/src/binutils-010118/bfd/../include  -I/scratch/crossd
 ev-build/src/binutils-010118/bfd/../intl -I../intl   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/bfd/bfd.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I.
  -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I/scra
 tch/crossdev-build/src/binutils-010118/bfd/../include -I/scratch/crossdev-bu
 ild/src/binutils-010118/bfd/../intl -I../intl -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/bfd/bfd.c -o bfd.o
 /bin/sh ./libtool --mode=compile
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I.
  -D_GNU_SOURCE     -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I/
 scratch/crossdev-build/src/binutils-010118/bfd/../include  -I/scratch/crossd
 ev-build/src/binutils-010118/bfd/../intl -I../intl   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/bfd/cache.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I.
  -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I/scra
 tch/crossdev-build/src/binutils-010118/bfd/../include -I/scratch/crossdev-bu
 ild/src/binutils-010118/bfd/../intl -I../intl -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/bfd/cache.c -o cache.o
 /bin/sh ./libtool --mode=compile
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I.
  -D_GNU_SOURCE     -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I/
 scratch/crossdev-build/src/binutils-010118/bfd/../include  -I/scratch/crossd
 ev-build/src/binutils-010118/bfd/../intl -I../intl   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/bfd/coffgen.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I.
  -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I/scra
 tch/crossdev-build/src/binutils-010118/bfd/../include -I/scratch/crossdev-bu
 ild/src/binutils-010118/bfd/../intl -I../intl -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/bfd/coffgen.c -o coffgen.o
 /bin/sh ./libtool --mode=compile
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I.
  -D_GNU_SOURCE     -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I/
 scratch/crossdev-build/src/binutils-010118/bfd/../include  -I/scratch/crossd
 ev-build/src/binutils-010118/bfd/../intl -I../intl   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/bfd/corefile.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I.
  -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I/scra
 tch/crossdev-build/src/binutils-010118/bfd/../include -I/scratch/crossdev-bu
 ild/src/binutils-010118/bfd/../intl -I../intl -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/bfd/corefile.c -o corefile.o
 /bin/sh ./libtool --mode=compile
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I.
  -D_GNU_SOURCE     -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I/
 scratch/crossdev-build/src/binutils-010118/bfd/../include  -I/scratch/crossd
 ev-build/src/binutils-010118/bfd/../intl -I../intl   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/bfd/format.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I.
  -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I/scra
 tch/crossdev-build/src/binutils-010118/bfd/../include -I/scratch/crossdev-bu
 ild/src/binutils-010118/bfd/../intl -I../intl -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/bfd/format.c -o format.o
 /bin/sh ./libtool --mode=compile
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I.
  -D_GNU_SOURCE     -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I/
 scratch/crossdev-build/src/binutils-010118/bfd/../include  -I/scratch/crossd
 ev-build/src/binutils-010118/bfd/../intl -I../intl   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/bfd/init.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I.
  -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I/scra
 tch/crossdev-build/src/binutils-010118/bfd/../include -I/scratch/crossdev-bu
 ild/src/binutils-010118/bfd/../intl -I../intl -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/bfd/init.c -o init.o
 /bin/sh ./libtool --mode=compile
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I.
  -D_GNU_SOURCE     -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I/
 scratch/crossdev-build/src/binutils-010118/bfd/../include  -I/scratch/crossd
 ev-build/src/binutils-010118/bfd/../intl -I../intl   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/bfd/libbfd.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I.
  -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I/scra
 tch/crossdev-build/src/binutils-010118/bfd/../include -I/scratch/crossdev-bu
 ild/src/binutils-010118/bfd/../intl -I../intl -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/bfd/libbfd.c -o libbfd.o
 /bin/sh ./libtool --mode=compile
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I.
  -D_GNU_SOURCE     -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I/
 scratch/crossdev-build/src/binutils-010118/bfd/../include  -I/scratch/crossd
 ev-build/src/binutils-010118/bfd/../intl -I../intl   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/bfd/opncls.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I.
  -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I/scra
 tch/crossdev-build/src/binutils-010118/bfd/../include -I/scratch/crossdev-bu
 ild/src/binutils-010118/bfd/../intl -I../intl -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/bfd/opncls.c -o opncls.o
 /bin/sh ./libtool --mode=compile
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I.
  -D_GNU_SOURCE     -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I/
 scratch/crossdev-build/src/binutils-010118/bfd/../include  -I/scratch/crossd
 ev-build/src/binutils-010118/bfd/../intl -I../intl   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/bfd/reloc.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I.
  -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I/scra
 tch/crossdev-build/src/binutils-010118/bfd/../include -I/scratch/crossdev-bu
 ild/src/binutils-010118/bfd/../intl -I../intl -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/bfd/reloc.c -o reloc.o
 /bin/sh ./libtool --mode=compile
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I.
  -D_GNU_SOURCE     -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I/
 scratch/crossdev-build/src/binutils-010118/bfd/../include  -I/scratch/crossd
 ev-build/src/binutils-010118/bfd/../intl -I../intl   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/bfd/section.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I.
  -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I/scra
 tch/crossdev-build/src/binutils-010118/bfd/../include -I/scratch/crossdev-bu
 ild/src/binutils-010118/bfd/../intl -I../intl -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/bfd/section.c -o section.o
 /bin/sh ./libtool --mode=compile
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I.
  -D_GNU_SOURCE     -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I/
 scratch/crossdev-build/src/binutils-010118/bfd/../include  -I/scratch/crossd
 ev-build/src/binutils-010118/bfd/../intl -I../intl   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/bfd/syms.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I.
  -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I/scra
 tch/crossdev-build/src/binutils-010118/bfd/../include -I/scratch/crossdev-bu
 ild/src/binutils-010118/bfd/../intl -I../intl -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/bfd/syms.c -o syms.o
 rm -f targmatch.h
 sed -f /scratch/crossdev-build/src/binutils-010118/bfd/targmatch.sed <
 /scratch/crossdev-build/src/binutils-010118/bfd/config.bfd > targmatch.new
 mv -f targmatch.new targmatch.h
 /bin/sh ./libtool --mode=compile
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I.
  -D_GNU_SOURCE     -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I/
 scratch/crossdev-build/src/binutils-010118/bfd/../include  -I/scratch/crossd
 ev-build/src/binutils-010118/bfd/../intl -I../intl   -W -Wall -g -c -DDEFAUL
 T_VECTOR=bfd_elf32_littlearm_vec -DSELECT_VECS='&bfd_elf32_littlearm_vec,&bf
 d_elf32_bigarm_vec,&bfd_elf32_little_generic_vec,&bfd_elf32_big_generic_vec'
  -DSELECT_ARCHITECTURES='&bfd_arm_arch' -DHAVE_bfd_elf32_littlearm_vec -DHAV
 E_bfd_elf32_bigarm_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_
 big_generic_vec /scratch/crossdev-build/src/binutils-010118/bfd/targets.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I.
  -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I/scra
 tch/crossdev-build/src/binutils-010118/bfd/../include -I/scratch/crossdev-bu
 ild/src/binutils-010118/bfd/../intl -I../intl -W -Wall -g -c -DDEFAULT_VECTO
 R=bfd_elf32_littlearm_vec
 "-DSELECT_VECS=&bfd_elf32_littlearm_vec,&bfd_elf32_bigarm_vec,&bfd_elf32_lit
 tle_generic_vec,&bfd_elf32_big_generic_vec"
 "-DSELECT_ARCHITECTURES=&bfd_arm_arch" -DHAVE_bfd_elf32_littlearm_vec -DHAVE
 _bfd_elf32_bigarm_vec -DHAVE_bfd_elf32_little_generic_vec -DHAVE_bfd_elf32_b
 ig_generic_vec /scratch/crossdev-build/src/binutils-010118/bfd/targets.c -o
 targets.o
 /bin/sh ./libtool --mode=compile
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I.
  -D_GNU_SOURCE     -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I/
 scratch/crossdev-build/src/binutils-010118/bfd/../include  -I/scratch/crossd
 ev-build/src/binutils-010118/bfd/../intl -I../intl   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/bfd/hash.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I.
  -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I/scra
 tch/crossdev-build/src/binutils-010118/bfd/../include -I/scratch/crossdev-bu
 ild/src/binutils-010118/bfd/../intl -I../intl -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/bfd/hash.c -o hash.o
 /bin/sh ./libtool --mode=compile
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I.
  -D_GNU_SOURCE     -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I/
 scratch/crossdev-build/src/binutils-010118/bfd/../include  -I/scratch/crossd
 ev-build/src/binutils-010118/bfd/../intl -I../intl   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/bfd/linker.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I.
  -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I/scra
 tch/crossdev-build/src/binutils-010118/bfd/../include -I/scratch/crossdev-bu
 ild/src/binutils-010118/bfd/../intl -I../intl -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/bfd/linker.c -o linker.o
 /bin/sh ./libtool --mode=compile
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I.
  -D_GNU_SOURCE     -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I/
 scratch/crossdev-build/src/binutils-010118/bfd/../include  -I/scratch/crossd
 ev-build/src/binutils-010118/bfd/../intl -I../intl   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/bfd/srec.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I.
  -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I/scra
 tch/crossdev-build/src/binutils-010118/bfd/../include -I/scratch/crossdev-bu
 ild/src/binutils-010118/bfd/../intl -I../intl -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/bfd/srec.c -o srec.o
 /bin/sh ./libtool --mode=compile
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I.
  -D_GNU_SOURCE     -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I/
 scratch/crossdev-build/src/binutils-010118/bfd/../include  -I/scratch/crossd
 ev-build/src/binutils-010118/bfd/../intl -I../intl   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/bfd/binary.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I.
  -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I/scra
 tch/crossdev-build/src/binutils-010118/bfd/../include -I/scratch/crossdev-bu
 ild/src/binutils-010118/bfd/../intl -I../intl -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/bfd/binary.c -o binary.o
 /bin/sh ./libtool --mode=compile
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I.
  -D_GNU_SOURCE     -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I/
 scratch/crossdev-build/src/binutils-010118/bfd/../include  -I/scratch/crossd
 ev-build/src/binutils-010118/bfd/../intl -I../intl   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/bfd/tekhex.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I.
  -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I/scra
 tch/crossdev-build/src/binutils-010118/bfd/../include -I/scratch/crossdev-bu
 ild/src/binutils-010118/bfd/../intl -I../intl -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/bfd/tekhex.c -o tekhex.o
 /bin/sh ./libtool --mode=compile
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I.
  -D_GNU_SOURCE     -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I/
 scratch/crossdev-build/src/binutils-010118/bfd/../include  -I/scratch/crossd
 ev-build/src/binutils-010118/bfd/../intl -I../intl   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/bfd/ihex.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I.
  -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I/scra
 tch/crossdev-build/src/binutils-010118/bfd/../include -I/scratch/crossdev-bu
 ild/src/binutils-010118/bfd/../intl -I../intl -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/bfd/ihex.c -o ihex.o
 /bin/sh ./libtool --mode=compile
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I.
  -D_GNU_SOURCE     -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I/
 scratch/crossdev-build/src/binutils-010118/bfd/../include  -I/scratch/crossd
 ev-build/src/binutils-010118/bfd/../intl -I../intl   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/bfd/stabs.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I.
  -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I/scra
 tch/crossdev-build/src/binutils-010118/bfd/../include -I/scratch/crossdev-bu
 ild/src/binutils-010118/bfd/../intl -I../intl -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/bfd/stabs.c -o stabs.o
 /bin/sh ./libtool --mode=compile
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I.
  -D_GNU_SOURCE     -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I/
 scratch/crossdev-build/src/binutils-010118/bfd/../include  -I/scratch/crossd
 ev-build/src/binutils-010118/bfd/../intl -I../intl   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/bfd/stab-syms.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I.
  -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I/scra
 tch/crossdev-build/src/binutils-010118/bfd/../include -I/scratch/crossdev-bu
 ild/src/binutils-010118/bfd/../intl -I../intl -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/bfd/stab-syms.c -o stab-syms.o
 /bin/sh ./libtool --mode=compile
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I.
  -D_GNU_SOURCE     -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I/
 scratch/crossdev-build/src/binutils-010118/bfd/../include  -I/scratch/crossd
 ev-build/src/binutils-010118/bfd/../intl -I../intl   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/bfd/dwarf2.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I.
  -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I/scra
 tch/crossdev-build/src/binutils-010118/bfd/../include -I/scratch/crossdev-bu
 ild/src/binutils-010118/bfd/../intl -I../intl -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/bfd/dwarf2.c -o dwarf2.o
 rm -f elf32-target.h
 sed -e s/NN/32/g <
 /scratch/crossdev-build/src/binutils-010118/bfd/elfxx-target.h >
 elf32-target.new
 mv -f elf32-target.new elf32-target.h
 /bin/sh ./libtool --mode=compile
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I.
  -D_GNU_SOURCE     -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I/
 scratch/crossdev-build/src/binutils-010118/bfd/../include  -I/scratch/crossd
 ev-build/src/binutils-010118/bfd/../intl -I../intl   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/bfd/elfarm-nabi.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I.
  -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I/scra
 tch/crossdev-build/src/binutils-010118/bfd/../include -I/scratch/crossdev-bu
 ild/src/binutils-010118/bfd/../intl -I../intl -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/bfd/elfarm-nabi.c -o
 elfarm-nabi.o
 /bin/sh ./libtool --mode=compile
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I.
 -D_GNU_SOURCE     -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I/s
 cratch/crossdev-build/src/binutils-010118/bfd/../include  -I/scratch/crossde
 v-build/src/binutils-010118/bfd/../intl -I../intl   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/bfd/elf32.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I.
  -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I/scra
 tch/crossdev-build/src/binutils-010118/bfd/../include -I/scratch/crossdev-bu
 ild/src/binutils-010118/bfd/../intl -I../intl -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/bfd/elf32.c -o elf32.o
 /bin/sh ./libtool --mode=compile
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I.
  -D_GNU_SOURCE     -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I/
 scratch/crossdev-build/src/binutils-010118/bfd/../include  -I/scratch/crossd
 ev-build/src/binutils-010118/bfd/../intl -I../intl   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/bfd/elf.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I.
  -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I/scra
 tch/crossdev-build/src/binutils-010118/bfd/../include -I/scratch/crossdev-bu
 ild/src/binutils-010118/bfd/../intl -I../intl -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/bfd/elf.c -o elf.o
 /scratch/crossdev-build/src/binutils-010118/bfd/elf.c: In function
 `_bfd_elf_slurp_version_tables':
 /scratch/crossdev-build/src/binutils-010118/bfd/elf.c:4730: warning:
 comparison between signed and unsigned
 /bin/sh ./libtool --mode=compile
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I.
  -D_GNU_SOURCE     -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I/
 scratch/crossdev-build/src/binutils-010118/bfd/../include  -I/scratch/crossd
 ev-build/src/binutils-010118/bfd/../intl -I../intl   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/bfd/elflink.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I.
  -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I/scra
 tch/crossdev-build/src/binutils-010118/bfd/../include -I/scratch/crossdev-bu
 ild/src/binutils-010118/bfd/../intl -I../intl -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/bfd/elflink.c -o elflink.o
 /bin/sh ./libtool --mode=compile
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I.
  -D_GNU_SOURCE     -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I/
 scratch/crossdev-build/src/binutils-010118/bfd/../include  -I/scratch/crossd
 ev-build/src/binutils-010118/bfd/../intl -I../intl   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/bfd/dwarf1.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I.
  -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I/scra
 tch/crossdev-build/src/binutils-010118/bfd/../include -I/scratch/crossdev-bu
 ild/src/binutils-010118/bfd/../intl -I../intl -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/bfd/dwarf1.c -o dwarf1.o
 /bin/sh ./libtool --mode=compile
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I.
  -D_GNU_SOURCE     -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I/
 scratch/crossdev-build/src/binutils-010118/bfd/../include  -I/scratch/crossd
 ev-build/src/binutils-010118/bfd/../intl -I../intl   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/bfd/elf32-gen.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I.
  -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I/scra
 tch/crossdev-build/src/binutils-010118/bfd/../include -I/scratch/crossdev-bu
 ild/src/binutils-010118/bfd/../intl -I../intl -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/bfd/elf32-gen.c -o elf32-gen.o
 /bin/sh ./libtool --mode=compile
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I.
  -D_GNU_SOURCE     -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I/
 scratch/crossdev-build/src/binutils-010118/bfd/../include  -I/scratch/crossd
 ev-build/src/binutils-010118/bfd/../intl -I../intl   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/bfd/cpu-arm.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I.
  -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/bfd -I/scra
 tch/crossdev-build/src/binutils-010118/bfd/../include -I/scratch/crossdev-bu
 ild/src/binutils-010118/bfd/../intl -I../intl -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/bfd/cpu-arm.c -o cpu-arm.o
 rm -f tofiles
 f=""; \
 for i in elfarm-nabi.lo elf32.lo elf.lo elflink.lo dwarf1.lo elf32-gen.lo
 cpu-arm.lo  ; do \
   case " $f " in \
     *" $i "*) ;; \
     *) f="$f $i" ;; \
   esac ; \
 done ; \
 echo $f > tofiles
 /bin/sh /scratch/crossdev-build/src/binutils-010118/bfd/../move-if-change
 tofiles ofiles
 touch stamp-ofiles
 /bin/sh ./libtool --mode=link cc -W -Wall -g  -o libbfd.la -rpath
 /scratch/crossdev/armv5-linux/lib -release 010118  archive.lo archures.lo
 bfd.lo cache.lo coffgen.lo corefile.lo format.lo init.lo libbfd.lo opncls.lo
 reloc.lo section.lo syms.lo targets.lo hash.lo linker.lo srec.lo binary.lo
 tekhex.lo ihex.lo stabs.lo stab-syms.lo dwarf2.lo `cat ofiles`
 mkdir .libs
 ar cru .libs/libbfd.a  archive.o archures.o bfd.o cache.o coffgen.o
 corefile.o format.o init.o libbfd.o opncls.o reloc.o section.o syms.o
 targets.o hash.o linker.o srec.o binary.o tekhex.o ihex.o stabs.o
 stab-syms.o dwarf2.o elfarm-nabi.o elf32.o elf.o elflink.o dwarf1.o
 elf32-gen.o cpu-arm.o
 ranlib .libs/libbfd.a
 creating libbfd.la
 (cd .libs && rm -f libbfd.la && ln -s ../libbfd.la libbfd.la)
 libtooldir=`/bin/sh ./libtool --config | sed -n -e 's/^objdir=//p'`; \
 if [ -f $libtooldir/libbfd.a ]; then \
   cp $libtooldir/libbfd.a libbfd.tmp; \
   /bin/sh /scratch/crossdev-build/src/binutils-010118/bfd/../move-if-change
 libbfd.tmp libbfd.a; \
 else true; fi
 touch stamp-lib
 make[3]: Leaving directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/bfd'
 make[2]: Leaving directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/bfd'
 make[1]: Leaving directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/bfd'
 make[1]: Entering directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/opcodes'
 make -j1  all-recursive
 make[2]: Entering directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/opcodes'
 Making all in po
 make[3]: Entering directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/opcodes/po'
 make[3]: Nothing to be done for `all'.
 make[3]: Leaving directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/opcodes/po'
 make[3]: Entering directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/opcodes'
 /bin/sh ./libtool --mode=compile
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/opcodes
  -I. -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/opcodes
  -I../bfd -I/scratch/crossdev-build/src/binutils-010118/opcodes/../include -
 I/scratch/crossdev-build/src/binutils-010118/opcodes/../bfd  -I/scratch/cros
 sdev-build/src/binutils-010118/opcodes/../intl -I../intl   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/opcodes/dis-buf.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/opcodes
  -I. -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/opcodes
  -I../bfd -I/scratch/crossdev-build/src/binutils-010118/opcodes/../include -
 I/scratch/crossdev-build/src/binutils-010118/opcodes/../bfd -I/scratch/cross
 dev-build/src/binutils-010118/opcodes/../intl -I../intl -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/opcodes/dis-buf.c -o dis-buf.o
 /bin/sh ./libtool --mode=compile
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/opcodes
  -I. -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/opcodes
  -I../bfd -I/scratch/crossdev-build/src/binutils-010118/opcodes/../include -
 I/scratch/crossdev-build/src/binutils-010118/opcodes/../bfd  -I/scratch/cros
 sdev-build/src/binutils-010118/opcodes/../intl -I../intl   -W -Wall -g -c  -
 DARCH_arm /scratch/crossdev-build/src/binutils-010118/opcodes/disassemble.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/opcodes
  -I. -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/opcodes
  -I../bfd -I/scratch/crossdev-build/src/binutils-010118/opcodes/../include -
 I/scratch/crossdev-build/src/binutils-010118/opcodes/../bfd -I/scratch/cross
 dev-build/src/binutils-010118/opcodes/../intl -I../intl -W -Wall -g -c -DARC
 H_arm /scratch/crossdev-build/src/binutils-010118/opcodes/disassemble.c -o
 disassemble.o
 /bin/sh ./libtool --mode=compile
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/opcodes
  -I. -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/opcodes
  -I../bfd -I/scratch/crossdev-build/src/binutils-010118/opcodes/../include -
 I/scratch/crossdev-build/src/binutils-010118/opcodes/../bfd  -I/scratch/cros
 sdev-build/src/binutils-010118/opcodes/../intl -I../intl   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/opcodes/arm-dis.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/opcodes
  -I. -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/opcodes
  -I../bfd -I/scratch/crossdev-build/src/binutils-010118/opcodes/../include -
 I/scratch/crossdev-build/src/binutils-010118/opcodes/../bfd -I/scratch/cross
 dev-build/src/binutils-010118/opcodes/../intl -I../intl -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/opcodes/arm-dis.c -o arm-dis.o
 /bin/sh ./libtool --mode=link cc -W -Wall -g  -o libopcodes.la -rpath
 /scratch/crossdev/armv5-linux/lib -release 010118  dis-buf.lo disassemble.lo
 arm-dis.lo
 mkdir .libs
 ar cru .libs/libopcodes.a  dis-buf.o disassemble.o arm-dis.o
 ranlib .libs/libopcodes.a
 creating libopcodes.la
 (cd .libs && rm -f libopcodes.la && ln -s ../libopcodes.la libopcodes.la)
 libtooldir=`/bin/sh ./libtool --config | sed -n -e 's/^objdir=//p'`; \
 if [ -f $libtooldir/libopcodes.a ]; then \
   cp $libtooldir/libopcodes.a libopcodes.tmp; \
   /bin/sh
 /scratch/crossdev-build/src/binutils-010118/opcodes/../move-if-change
 libopcodes.tmp libopcodes.a; \
 else true; fi
 touch stamp-lib
 make[3]: Leaving directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/opcodes'
 make[2]: Leaving directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/opcodes'
 make[1]: Leaving directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/opcodes'
 make[1]: Entering directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/binutils'
 make -j1  all-recursive
 make[2]: Entering directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/binutils'
 Making all in po
 make[3]: Entering directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/binutils/po'
 make[3]: Nothing to be done for `all'.
 make[3]: Leaving directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/binutils/po'
 make[3]: Entering directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/binutils'
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/binutil
 s -I. -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/binuti
 ls -I../bfd -I/scratch/crossdev-build/src/binutils-010118/binutils/../bfd -I
 /scratch/crossdev-build/src/binutils-010118/binutils/../include  -I/scratch/
 crossdev-build/src/binutils-010118/binutils/../intl -I../intl -DLOCALEDIR="\
 "/scratch/crossdev/armv5-linux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/binutils/size.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/binutil
 s -I. -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/binuti
 ls -I../bfd -I/scratch/crossdev-build/src/binutils-010118/binutils/../bfd -I
 /scratch/crossdev-build/src/binutils-010118/binutils/../include  -I/scratch/
 crossdev-build/src/binutils-010118/binutils/../intl -I../intl -DLOCALEDIR="\
 "/scratch/crossdev/armv5-linux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/binutils/bucomm.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/binutil
 s -I. -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/binuti
 ls -I../bfd -I/scratch/crossdev-build/src/binutils-010118/binutils/../bfd -I
 /scratch/crossdev-build/src/binutils-010118/binutils/../include  -I/scratch/
 crossdev-build/src/binutils-010118/binutils/../intl -I../intl -DLOCALEDIR="\
 "/scratch/crossdev/armv5-linux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/binutils/version.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/binutil
 s -I. -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/binuti
 ls -I../bfd -I/scratch/crossdev-build/src/binutils-010118/binutils/../bfd -I
 /scratch/crossdev-build/src/binutils-010118/binutils/../include  -I/scratch/
 crossdev-build/src/binutils-010118/binutils/../intl -I../intl -DLOCALEDIR="\
 "/scratch/crossdev/armv5-linux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/binutils/filemode.c
 /bin/sh ./libtool --mode=link cc -W -Wall -g  -o size  size.o bucomm.o
 version.o filemode.o ../bfd/libbfd.la ../libiberty/libiberty.a
 mkdir .libs
 cc -W -Wall -g -o size size.o bucomm.o version.o filemode.o
 ../bfd/.libs/libbfd.a ../libiberty/libiberty.a
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/binutil
 s -I. -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/binuti
 ls -I../bfd -I/scratch/crossdev-build/src/binutils-010118/binutils/../bfd -I
 /scratch/crossdev-build/src/binutils-010118/binutils/../include  -I/scratch/
 crossdev-build/src/binutils-010118/binutils/../intl -I../intl -DLOCALEDIR="\
 "/scratch/crossdev/armv5-linux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/binutils/objdump.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/binutil
 s -I. -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/binuti
 ls -I../bfd -I/scratch/crossdev-build/src/binutils-010118/binutils/../bfd -I
 /scratch/crossdev-build/src/binutils-010118/binutils/../include  -I/scratch/
 crossdev-build/src/binutils-010118/binutils/../intl -I../intl -DLOCALEDIR="\
 "/scratch/crossdev/armv5-linux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/binutils/prdbg.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/binutil
 s -I. -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/binuti
 ls -I../bfd -I/scratch/crossdev-build/src/binutils-010118/binutils/../bfd -I
 /scratch/crossdev-build/src/binutils-010118/binutils/../include  -I/scratch/
 crossdev-build/src/binutils-010118/binutils/../intl -I../intl -DLOCALEDIR="\
 "/scratch/crossdev/armv5-linux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/binutils/rddbg.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/binutil
 s -I. -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/binuti
 ls -I../bfd -I/scratch/crossdev-build/src/binutils-010118/binutils/../bfd -I
 /scratch/crossdev-build/src/binutils-010118/binutils/../include  -I/scratch/
 crossdev-build/src/binutils-010118/binutils/../intl -I../intl -DLOCALEDIR="\
 "/scratch/crossdev/armv5-linux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/binutils/debug.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/binutil
 s -I. -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/binuti
 ls -I../bfd -I/scratch/crossdev-build/src/binutils-010118/binutils/../bfd -I
 /scratch/crossdev-build/src/binutils-010118/binutils/../include  -I/scratch/
 crossdev-build/src/binutils-010118/binutils/../intl -I../intl -DLOCALEDIR="\
 "/scratch/crossdev/armv5-linux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/binutils/stabs.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/binutil
 s -I. -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/binuti
 ls -I../bfd -I/scratch/crossdev-build/src/binutils-010118/binutils/../bfd -I
 /scratch/crossdev-build/src/binutils-010118/binutils/../include  -I/scratch/
 crossdev-build/src/binutils-010118/binutils/../intl -I../intl -DLOCALEDIR="\
 "/scratch/crossdev/armv5-linux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/binutils/ieee.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/binutil
 s -I. -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/binuti
 ls -I../bfd -I/scratch/crossdev-build/src/binutils-010118/binutils/../bfd -I
 /scratch/crossdev-build/src/binutils-010118/binutils/../include  -I/scratch/
 crossdev-build/src/binutils-010118/binutils/../intl -I../intl -DLOCALEDIR="\
 "/scratch/crossdev/armv5-linux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/binutils/rdcoff.c
 /bin/sh ./libtool --mode=link cc -W -Wall -g  -o objdump  objdump.o prdbg.o
 rddbg.o debug.o stabs.o ieee.o rdcoff.o bucomm.o version.o filemode.o
 ../opcodes/libopcodes.la ../bfd/libbfd.la ../libiberty/libiberty.a
 cc -W -Wall -g -o objdump objdump.o prdbg.o rddbg.o debug.o stabs.o ieee.o
 rdcoff.o bucomm.o version.o filemode.o  ../opcodes/.libs/libopcodes.a
 ../bfd/.libs/libbfd.a ../libiberty/libiberty.a
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/binutil
 s -I. -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/binuti
 ls -I../bfd -I/scratch/crossdev-build/src/binutils-010118/binutils/../bfd -I
 /scratch/crossdev-build/src/binutils-010118/binutils/../include  -I/scratch/
 crossdev-build/src/binutils-010118/binutils/../intl -I../intl -DLOCALEDIR="\
 "/scratch/crossdev/armv5-linux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/binutils/arparse.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/binutil
 s -I. -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/binuti
 ls -I../bfd -I/scratch/crossdev-build/src/binutils-010118/binutils/../bfd -I
 /scratch/crossdev-build/src/binutils-010118/binutils/../include  -I/scratch/
 crossdev-build/src/binutils-010118/binutils/../intl -I../intl -DLOCALEDIR="\
 "/scratch/crossdev/armv5-linux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/binutils/arlex.c
 lex.yy.c:1289: warning: `yyunput' defined but not used
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/binutil
 s -I. -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/binuti
 ls -I../bfd -I/scratch/crossdev-build/src/binutils-010118/binutils/../bfd -I
 /scratch/crossdev-build/src/binutils-010118/binutils/../include  -I/scratch/
 crossdev-build/src/binutils-010118/binutils/../intl -I../intl -DLOCALEDIR="\
 "/scratch/crossdev/armv5-linux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/binutils/ar.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/binutil
 s -I. -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/binuti
 ls -I../bfd -I/scratch/crossdev-build/src/binutils-010118/binutils/../bfd -I
 /scratch/crossdev-build/src/binutils-010118/binutils/../include  -I/scratch/
 crossdev-build/src/binutils-010118/binutils/../intl -I../intl -DLOCALEDIR="\
 "/scratch/crossdev/armv5-linux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/binutils/not-ranlib.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/binutil
 s -I. -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/binuti
 ls -I../bfd -I/scratch/crossdev-build/src/binutils-010118/binutils/../bfd -I
 /scratch/crossdev-build/src/binutils-010118/binutils/../include  -I/scratch/
 crossdev-build/src/binutils-010118/binutils/../intl -I../intl -DLOCALEDIR="\
 "/scratch/crossdev/armv5-linux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/binutils/arsup.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/binutil
 s -I. -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/binuti
 ls -I../bfd -I/scratch/crossdev-build/src/binutils-010118/binutils/../bfd -I
 /scratch/crossdev-build/src/binutils-010118/binutils/../include  -I/scratch/
 crossdev-build/src/binutils-010118/binutils/../intl -I../intl -DLOCALEDIR="\
 "/scratch/crossdev/armv5-linux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/binutils/rename.c
 /bin/sh ./libtool --mode=link cc -W -Wall -g  -o ar  arparse.o arlex.o ar.o
 not-ranlib.o arsup.o rename.o bucomm.o version.o filemode.o ../bfd/libbfd.la
 ../libiberty/libiberty.a -lfl
 cc -W -Wall -g -o ar arparse.o arlex.o ar.o not-ranlib.o arsup.o rename.o
 bucomm.o version.o filemode.o  ../bfd/.libs/libbfd.a
 ../libiberty/libiberty.a -lfl
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/binutil
 s -I. -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/binuti
 ls -I../bfd -I/scratch/crossdev-build/src/binutils-010118/binutils/../bfd -I
 /scratch/crossdev-build/src/binutils-010118/binutils/../include  -I/scratch/
 crossdev-build/src/binutils-010118/binutils/../intl -I../intl -DLOCALEDIR="\
 "/scratch/crossdev/armv5-linux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/binutils/strings.c
 /bin/sh ./libtool --mode=link cc -W -Wall -g  -o strings  strings.o bucomm.o
 version.o filemode.o ../bfd/libbfd.la ../libiberty/libiberty.a
 cc -W -Wall -g -o strings strings.o bucomm.o version.o filemode.o
 ../bfd/.libs/libbfd.a ../libiberty/libiberty.a
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/binutil
 s -I. -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/binuti
 ls -I../bfd -I/scratch/crossdev-build/src/binutils-010118/binutils/../bfd -I
 /scratch/crossdev-build/src/binutils-010118/binutils/../include  -I/scratch/
 crossdev-build/src/binutils-010118/binutils/../intl -I../intl -DLOCALEDIR="\
 "/scratch/crossdev/armv5-linux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/binutils/is-ranlib.c
 /bin/sh ./libtool --mode=link cc -W -Wall -g  -o ranlib  ar.o is-ranlib.o
 arparse.o arlex.o arsup.o rename.o bucomm.o version.o filemode.o
 ../bfd/libbfd.la ../libiberty/libiberty.a -lfl
 cc -W -Wall -g -o ranlib ar.o is-ranlib.o arparse.o arlex.o arsup.o rename.o
 bucomm.o version.o filemode.o  ../bfd/.libs/libbfd.a
 ../libiberty/libiberty.a -lfl
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/binutil
 s -I. -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/binuti
 ls -I../bfd -I/scratch/crossdev-build/src/binutils-010118/binutils/../bfd -I
 /scratch/crossdev-build/src/binutils-010118/binutils/../include  -I/scratch/
 crossdev-build/src/binutils-010118/binutils/../intl -I../intl -DLOCALEDIR="\
 "/scratch/crossdev/armv5-linux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/binutils/objcopy.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/binutil
 s -I. -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/binuti
 ls -I../bfd -I/scratch/crossdev-build/src/binutils-010118/binutils/../bfd -I
 /scratch/crossdev-build/src/binutils-010118/binutils/../include  -I/scratch/
 crossdev-build/src/binutils-010118/binutils/../intl -I../intl -DLOCALEDIR="\
 "/scratch/crossdev/armv5-linux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/binutils/not-strip.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/binutil
 s -I. -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/binuti
 ls -I../bfd -I/scratch/crossdev-build/src/binutils-010118/binutils/../bfd -I
 /scratch/crossdev-build/src/binutils-010118/binutils/../include  -I/scratch/
 crossdev-build/src/binutils-010118/binutils/../intl -I../intl -DLOCALEDIR="\
 "/scratch/crossdev/armv5-linux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/binutils/wrstabs.c
 /bin/sh ./libtool --mode=link cc -W -Wall -g  -o objcopy  objcopy.o
 not-strip.o rename.o rddbg.o debug.o stabs.o ieee.o rdcoff.o wrstabs.o
 bucomm.o version.o filemode.o ../bfd/libbfd.la ../libiberty/libiberty.a
 cc -W -Wall -g -o objcopy objcopy.o not-strip.o rename.o rddbg.o debug.o
 stabs.o ieee.o rdcoff.o wrstabs.o bucomm.o version.o filemode.o
 ../bfd/.libs/libbfd.a ../libiberty/libiberty.a
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/binutil
 s -I. -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/binuti
 ls -I../bfd -I/scratch/crossdev-build/src/binutils-010118/binutils/../bfd -I
 /scratch/crossdev-build/src/binutils-010118/binutils/../include  -I/scratch/
 crossdev-build/src/binutils-010118/binutils/../intl -I../intl -DLOCALEDIR="\
 "/scratch/crossdev/armv5-linux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/binutils/addr2line.c
 /bin/sh ./libtool --mode=link cc -W -Wall -g  -o addr2line  addr2line.o
 bucomm.o version.o filemode.o ../bfd/libbfd.la ../libiberty/libiberty.a
 cc -W -Wall -g -o addr2line addr2line.o bucomm.o version.o filemode.o
 ../bfd/.libs/libbfd.a ../libiberty/libiberty.a
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/binutil
 s -I. -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/binuti
 ls -I../bfd -I/scratch/crossdev-build/src/binutils-010118/binutils/../bfd -I
 /scratch/crossdev-build/src/binutils-010118/binutils/../include  -I/scratch/
 crossdev-build/src/binutils-010118/binutils/../intl -I../intl -DLOCALEDIR="\
 "/scratch/crossdev/armv5-linux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/binutils/readelf.c
 /bin/sh ./libtool --mode=link cc -W -Wall -g  -o readelf  readelf.o
 version.o  ../libiberty/libiberty.a
 cc -W -Wall -g -o readelf readelf.o version.o  ../libiberty/libiberty.a
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/binutil
 s -I. -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/binuti
 ls -I../bfd -I/scratch/crossdev-build/src/binutils-010118/binutils/../bfd -I
 /scratch/crossdev-build/src/binutils-010118/binutils/../include  -I/scratch/
 crossdev-build/src/binutils-010118/binutils/../intl -I../intl -DLOCALEDIR="\
 "/scratch/crossdev/armv5-linux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/binutils/nm.c
 /bin/sh ./libtool --mode=link cc -W -Wall -g  -o nm-new  nm.o bucomm.o
 version.o filemode.o ../bfd/libbfd.la ../libiberty/libiberty.a
 cc -W -Wall -g -o nm-new nm.o bucomm.o version.o filemode.o
 ../bfd/.libs/libbfd.a ../libiberty/libiberty.a
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/binutil
 s -I. -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/binuti
 ls -I../bfd -I/scratch/crossdev-build/src/binutils-010118/binutils/../bfd -I
 /scratch/crossdev-build/src/binutils-010118/binutils/../include  -I/scratch/
 crossdev-build/src/binutils-010118/binutils/../intl -I../intl -DLOCALEDIR="\
 "/scratch/crossdev/armv5-linux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/binutils/is-strip.c
 /bin/sh ./libtool --mode=link cc -W -Wall -g  -o strip-new  objcopy.o
 is-strip.o rename.o rddbg.o debug.o stabs.o ieee.o rdcoff.o wrstabs.o
 bucomm.o version.o filemode.o ../bfd/libbfd.la ../libiberty/libiberty.a
 cc -W -Wall -g -o strip-new objcopy.o is-strip.o rename.o rddbg.o debug.o
 stabs.o ieee.o rdcoff.o wrstabs.o bucomm.o version.o filemode.o
 ../bfd/.libs/libbfd.a ../libiberty/libiberty.a
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/binutil
 s -I. -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/binuti
 ls -I../bfd -I/scratch/crossdev-build/src/binutils-010118/binutils/../bfd -I
 /scratch/crossdev-build/src/binutils-010118/binutils/../include  -I/scratch/
 crossdev-build/src/binutils-010118/binutils/../intl -I../intl -DLOCALEDIR="\
 "/scratch/crossdev/armv5-linux/share/locale\""   -W -Wall -g -c -DMAIN -DVER
 SION='"010118"'
 /scratch/crossdev-build/src/binutils-010118/binutils/../libiberty/cplus-dem.
 c
 echo '/*WARNING: This file is automatically generated!*/' >underscore.t
 echo "int prepends_underscore = 0;" >>underscore.t
 /bin/sh
 /scratch/crossdev-build/src/binutils-010118/binutils/../move-if-change
 underscore.t underscore.c
 touch stamp-under
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/binutil
 s -I. -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/binuti
 ls -I../bfd -I/scratch/crossdev-build/src/binutils-010118/binutils/../bfd -I
 /scratch/crossdev-build/src/binutils-010118/binutils/../include  -I/scratch/
 crossdev-build/src/binutils-010118/binutils/../intl -I../intl -DLOCALEDIR="\
 "/scratch/crossdev/armv5-linux/share/locale\""   -W -Wall -g -c underscore.c
 /bin/sh ./libtool --mode=link cc -W -Wall -g  -o cxxfilt   cplus-dem.o
 underscore.o ../libiberty/libiberty.a
 cc -W -Wall -g -o cxxfilt cplus-dem.o underscore.o  ../libiberty/libiberty.a
 sed -e 's/@PROGRAM@/c++filt/' <
 /scratch/crossdev-build/src/binutils-010118/binutils/cxxfilt.man \
  > c++filt.1
 make[3]: Leaving directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/binutils'
 make[2]: Leaving directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/binutils'
 make[1]: Leaving directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/binutils'
 make[1]: Entering directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/etc'
 make[1]: Nothing to be done for `all'.
 make[1]: Leaving directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/etc'
 make[1]: Entering directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/gas'
 make -j1  all-recursive
 make[2]: Entering directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/gas'
 Making all in doc
 make[3]: Entering directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/gas/doc'
 make[3]: Nothing to be done for `all'.
 make[3]: Leaving directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/gas/doc'
 Making all in po
 make[3]: Entering directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/gas/po'
 make[3]: Nothing to be done for `all'.
 make[3]: Leaving directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/gas/po'
 make[3]: Entering directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/gas'
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/gas -I.
  -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/gas -I../bf
 d -I/scratch/crossdev-build/src/binutils-010118/gas/config -I/scratch/crossd
 ev-build/src/binutils-010118/gas/../include -I/scratch/crossdev-build/src/bi
 nutils-010118/gas/.. -I/scratch/crossdev-build/src/binutils-010118/gas/../bf
 d -I/scratch/crossdev-build/src/binutils-010118/gas/../intl -I../intl -DLOCA
 LEDIR="\"/scratch/crossdev/armv5-linux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/gas/app.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/gas -I.
  -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/gas -I../bf
 d -I/scratch/crossdev-build/src/binutils-010118/gas/config -I/scratch/crossd
 ev-build/src/binutils-010118/gas/../include -I/scratch/crossdev-build/src/bi
 nutils-010118/gas/.. -I/scratch/crossdev-build/src/binutils-010118/gas/../bf
 d -I/scratch/crossdev-build/src/binutils-010118/gas/../intl -I../intl -DLOCA
 LEDIR="\"/scratch/crossdev/armv5-linux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/gas/as.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/gas -I.
  -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/gas -I../bf
 d -I/scratch/crossdev-build/src/binutils-010118/gas/config -I/scratch/crossd
 ev-build/src/binutils-010118/gas/../include -I/scratch/crossdev-build/src/bi
 nutils-010118/gas/.. -I/scratch/crossdev-build/src/binutils-010118/gas/../bf
 d -I/scratch/crossdev-build/src/binutils-010118/gas/../intl -I../intl -DLOCA
 LEDIR="\"/scratch/crossdev/armv5-linux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/gas/atof-generic.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/gas -I.
  -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/gas -I../bf
 d -I/scratch/crossdev-build/src/binutils-010118/gas/config -I/scratch/crossd
 ev-build/src/binutils-010118/gas/../include -I/scratch/crossdev-build/src/bi
 nutils-010118/gas/.. -I/scratch/crossdev-build/src/binutils-010118/gas/../bf
 d -I/scratch/crossdev-build/src/binutils-010118/gas/../intl -I../intl -DLOCA
 LEDIR="\"/scratch/crossdev/armv5-linux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/gas/bignum-copy.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/gas -I.
  -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/gas -I../bf
 d -I/scratch/crossdev-build/src/binutils-010118/gas/config -I/scratch/crossd
 ev-build/src/binutils-010118/gas/../include -I/scratch/crossdev-build/src/bi
 nutils-010118/gas/.. -I/scratch/crossdev-build/src/binutils-010118/gas/../bf
 d -I/scratch/crossdev-build/src/binutils-010118/gas/../intl -I../intl -DLOCA
 LEDIR="\"/scratch/crossdev/armv5-linux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/gas/cond.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/gas -I.
  -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/gas -I../bf
 d -I/scratch/crossdev-build/src/binutils-010118/gas/config -I/scratch/crossd
 ev-build/src/binutils-010118/gas/../include -I/scratch/crossdev-build/src/bi
 nutils-010118/gas/.. -I/scratch/crossdev-build/src/binutils-010118/gas/../bf
 d -I/scratch/crossdev-build/src/binutils-010118/gas/../intl -I../intl -DLOCA
 LEDIR="\"/scratch/crossdev/armv5-linux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/gas/depend.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/gas -I.
  -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/gas -I../bf
 d -I/scratch/crossdev-build/src/binutils-010118/gas/config -I/scratch/crossd
 ev-build/src/binutils-010118/gas/../include -I/scratch/crossdev-build/src/bi
 nutils-010118/gas/.. -I/scratch/crossdev-build/src/binutils-010118/gas/../bf
 d -I/scratch/crossdev-build/src/binutils-010118/gas/../intl -I../intl -DLOCA
 LEDIR="\"/scratch/crossdev/armv5-linux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/gas/dwarf2dbg.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/gas -I.
  -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/gas -I../bf
 d -I/scratch/crossdev-build/src/binutils-010118/gas/config -I/scratch/crossd
 ev-build/src/binutils-010118/gas/../include -I/scratch/crossdev-build/src/bi
 nutils-010118/gas/.. -I/scratch/crossdev-build/src/binutils-010118/gas/../bf
 d -I/scratch/crossdev-build/src/binutils-010118/gas/../intl -I../intl -DLOCA
 LEDIR="\"/scratch/crossdev/armv5-linux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/gas/ecoff.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/gas -I.
  -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/gas -I../bf
 d -I/scratch/crossdev-build/src/binutils-010118/gas/config -I/scratch/crossd
 ev-build/src/binutils-010118/gas/../include -I/scratch/crossdev-build/src/bi
 nutils-010118/gas/.. -I/scratch/crossdev-build/src/binutils-010118/gas/../bf
 d -I/scratch/crossdev-build/src/binutils-010118/gas/../intl -I../intl -DLOCA
 LEDIR="\"/scratch/crossdev/armv5-linux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/gas/ehopt.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/gas -I.
  -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/gas -I../bf
 d -I/scratch/crossdev-build/src/binutils-010118/gas/config -I/scratch/crossd
 ev-build/src/binutils-010118/gas/../include -I/scratch/crossdev-build/src/bi
 nutils-010118/gas/.. -I/scratch/crossdev-build/src/binutils-010118/gas/../bf
 d -I/scratch/crossdev-build/src/binutils-010118/gas/../intl -I../intl -DLOCA
 LEDIR="\"/scratch/crossdev/armv5-linux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/gas/expr.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/gas -I.
  -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/gas -I../bf
 d -I/scratch/crossdev-build/src/binutils-010118/gas/config -I/scratch/crossd
 ev-build/src/binutils-010118/gas/../include -I/scratch/crossdev-build/src/bi
 nutils-010118/gas/.. -I/scratch/crossdev-build/src/binutils-010118/gas/../bf
 d -I/scratch/crossdev-build/src/binutils-010118/gas/../intl -I../intl -DLOCA
 LEDIR="\"/scratch/crossdev/armv5-linux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/gas/flonum-copy.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/gas -I.
  -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/gas -I../bf
 d -I/scratch/crossdev-build/src/binutils-010118/gas/config -I/scratch/crossd
 ev-build/src/binutils-010118/gas/../include -I/scratch/crossdev-build/src/bi
 nutils-010118/gas/.. -I/scratch/crossdev-build/src/binutils-010118/gas/../bf
 d -I/scratch/crossdev-build/src/binutils-010118/gas/../intl -I../intl -DLOCA
 LEDIR="\"/scratch/crossdev/armv5-linux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/gas/flonum-konst.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/gas -I.
  -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/gas -I../bf
 d -I/scratch/crossdev-build/src/binutils-010118/gas/config -I/scratch/crossd
 ev-build/src/binutils-010118/gas/../include -I/scratch/crossdev-build/src/bi
 nutils-010118/gas/.. -I/scratch/crossdev-build/src/binutils-010118/gas/../bf
 d -I/scratch/crossdev-build/src/binutils-010118/gas/../intl -I../intl -DLOCA
 LEDIR="\"/scratch/crossdev/armv5-linux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/gas/flonum-mult.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/gas -I.
  -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/gas -I../bf
 d -I/scratch/crossdev-build/src/binutils-010118/gas/config -I/scratch/crossd
 ev-build/src/binutils-010118/gas/../include -I/scratch/crossdev-build/src/bi
 nutils-010118/gas/.. -I/scratch/crossdev-build/src/binutils-010118/gas/../bf
 d -I/scratch/crossdev-build/src/binutils-010118/gas/../intl -I../intl -DLOCA
 LEDIR="\"/scratch/crossdev/armv5-linux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/gas/frags.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/gas -I.
  -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/gas -I../bf
 d -I/scratch/crossdev-build/src/binutils-010118/gas/config -I/scratch/crossd
 ev-build/src/binutils-010118/gas/../include -I/scratch/crossdev-build/src/bi
 nutils-010118/gas/.. -I/scratch/crossdev-build/src/binutils-010118/gas/../bf
 d -I/scratch/crossdev-build/src/binutils-010118/gas/../intl -I../intl -DLOCA
 LEDIR="\"/scratch/crossdev/armv5-linux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/gas/hash.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/gas -I.
  -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/gas -I../bf
 d -I/scratch/crossdev-build/src/binutils-010118/gas/config -I/scratch/crossd
 ev-build/src/binutils-010118/gas/../include -I/scratch/crossdev-build/src/bi
 nutils-010118/gas/.. -I/scratch/crossdev-build/src/binutils-010118/gas/../bf
 d -I/scratch/crossdev-build/src/binutils-010118/gas/../intl -I../intl -DLOCA
 LEDIR="\"/scratch/crossdev/armv5-linux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/gas/input-file.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/gas -I.
  -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/gas -I../bf
 d -I/scratch/crossdev-build/src/binutils-010118/gas/config -I/scratch/crossd
 ev-build/src/binutils-010118/gas/../include -I/scratch/crossdev-build/src/bi
 nutils-010118/gas/.. -I/scratch/crossdev-build/src/binutils-010118/gas/../bf
 d -I/scratch/crossdev-build/src/binutils-010118/gas/../intl -I../intl -DLOCA
 LEDIR="\"/scratch/crossdev/armv5-linux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/gas/input-scrub.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/gas -I.
  -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/gas -I../bf
 d -I/scratch/crossdev-build/src/binutils-010118/gas/config -I/scratch/crossd
 ev-build/src/binutils-010118/gas/../include -I/scratch/crossdev-build/src/bi
 nutils-010118/gas/.. -I/scratch/crossdev-build/src/binutils-010118/gas/../bf
 d -I/scratch/crossdev-build/src/binutils-010118/gas/../intl -I../intl -DLOCA
 LEDIR="\"/scratch/crossdev/armv5-linux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/gas/listing.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/gas -I.
  -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/gas -I../bf
 d -I/scratch/crossdev-build/src/binutils-010118/gas/config -I/scratch/crossd
 ev-build/src/binutils-010118/gas/../include -I/scratch/crossdev-build/src/bi
 nutils-010118/gas/.. -I/scratch/crossdev-build/src/binutils-010118/gas/../bf
 d -I/scratch/crossdev-build/src/binutils-010118/gas/../intl -I../intl -DLOCA
 LEDIR="\"/scratch/crossdev/armv5-linux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/gas/literal.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/gas -I.
  -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/gas -I../bf
 d -I/scratch/crossdev-build/src/binutils-010118/gas/config -I/scratch/crossd
 ev-build/src/binutils-010118/gas/../include -I/scratch/crossdev-build/src/bi
 nutils-010118/gas/.. -I/scratch/crossdev-build/src/binutils-010118/gas/../bf
 d -I/scratch/crossdev-build/src/binutils-010118/gas/../intl -I../intl -DLOCA
 LEDIR="\"/scratch/crossdev/armv5-linux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/gas/macro.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/gas -I.
  -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/gas -I../bf
 d -I/scratch/crossdev-build/src/binutils-010118/gas/config -I/scratch/crossd
 ev-build/src/binutils-010118/gas/../include -I/scratch/crossdev-build/src/bi
 nutils-010118/gas/.. -I/scratch/crossdev-build/src/binutils-010118/gas/../bf
 d -I/scratch/crossdev-build/src/binutils-010118/gas/../intl -I../intl -DLOCA
 LEDIR="\"/scratch/crossdev/armv5-linux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/gas/messages.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/gas -I.
  -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/gas -I../bf
 d -I/scratch/crossdev-build/src/binutils-010118/gas/config -I/scratch/crossd
 ev-build/src/binutils-010118/gas/../include -I/scratch/crossdev-build/src/bi
 nutils-010118/gas/.. -I/scratch/crossdev-build/src/binutils-010118/gas/../bf
 d -I/scratch/crossdev-build/src/binutils-010118/gas/../intl -I../intl -DLOCA
 LEDIR="\"/scratch/crossdev/armv5-linux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/gas/output-file.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/gas -I.
  -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/gas -I../bf
 d -I/scratch/crossdev-build/src/binutils-010118/gas/config -I/scratch/crossd
 ev-build/src/binutils-010118/gas/../include -I/scratch/crossdev-build/src/bi
 nutils-010118/gas/.. -I/scratch/crossdev-build/src/binutils-010118/gas/../bf
 d -I/scratch/crossdev-build/src/binutils-010118/gas/../intl -I../intl -DLOCA
 LEDIR="\"/scratch/crossdev/armv5-linux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/gas/read.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/gas -I.
  -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/gas -I../bf
 d -I/scratch/crossdev-build/src/binutils-010118/gas/config -I/scratch/crossd
 ev-build/src/binutils-010118/gas/../include -I/scratch/crossdev-build/src/bi
 nutils-010118/gas/.. -I/scratch/crossdev-build/src/binutils-010118/gas/../bf
 d -I/scratch/crossdev-build/src/binutils-010118/gas/../intl -I../intl -DLOCA
 LEDIR="\"/scratch/crossdev/armv5-linux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/gas/sb.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/gas -I.
  -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/gas -I../bf
 d -I/scratch/crossdev-build/src/binutils-010118/gas/config -I/scratch/crossd
 ev-build/src/binutils-010118/gas/../include -I/scratch/crossdev-build/src/bi
 nutils-010118/gas/.. -I/scratch/crossdev-build/src/binutils-010118/gas/../bf
 d -I/scratch/crossdev-build/src/binutils-010118/gas/../intl -I../intl -DLOCA
 LEDIR="\"/scratch/crossdev/armv5-linux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/gas/stabs.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/gas -I.
  -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/gas -I../bf
 d -I/scratch/crossdev-build/src/binutils-010118/gas/config -I/scratch/crossd
 ev-build/src/binutils-010118/gas/../include -I/scratch/crossdev-build/src/bi
 nutils-010118/gas/.. -I/scratch/crossdev-build/src/binutils-010118/gas/../bf
 d -I/scratch/crossdev-build/src/binutils-010118/gas/../intl -I../intl -DLOCA
 LEDIR="\"/scratch/crossdev/armv5-linux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/gas/subsegs.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/gas -I.
  -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/gas -I../bf
 d -I/scratch/crossdev-build/src/binutils-010118/gas/config -I/scratch/crossd
 ev-build/src/binutils-010118/gas/../include -I/scratch/crossdev-build/src/bi
 nutils-010118/gas/.. -I/scratch/crossdev-build/src/binutils-010118/gas/../bf
 d -I/scratch/crossdev-build/src/binutils-010118/gas/../intl -I../intl -DLOCA
 LEDIR="\"/scratch/crossdev/armv5-linux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/gas/symbols.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/gas -I.
  -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/gas -I../bf
 d -I/scratch/crossdev-build/src/binutils-010118/gas/config -I/scratch/crossd
 ev-build/src/binutils-010118/gas/../include -I/scratch/crossdev-build/src/bi
 nutils-010118/gas/.. -I/scratch/crossdev-build/src/binutils-010118/gas/../bf
 d -I/scratch/crossdev-build/src/binutils-010118/gas/../intl -I../intl -DLOCA
 LEDIR="\"/scratch/crossdev/armv5-linux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/gas/write.c
 /scratch/crossdev-build/src/binutils-010118/gas/write.c: In function
 `fixup_segment':
 /scratch/crossdev-build/src/binutils-010118/gas/write.c:2830: warning: label
 `skip' defined but not used
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/gas -I.
  -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/gas -I../bf
 d -I/scratch/crossdev-build/src/binutils-010118/gas/config -I/scratch/crossd
 ev-build/src/binutils-010118/gas/../include -I/scratch/crossdev-build/src/bi
 nutils-010118/gas/.. -I/scratch/crossdev-build/src/binutils-010118/gas/../bf
 d -I/scratch/crossdev-build/src/binutils-010118/gas/../intl -I../intl -DLOCA
 LEDIR="\"/scratch/crossdev/armv5-linux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/gas/config/tc-arm.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/gas -I.
  -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/gas -I../bf
 d -I/scratch/crossdev-build/src/binutils-010118/gas/config -I/scratch/crossd
 ev-build/src/binutils-010118/gas/../include -I/scratch/crossdev-build/src/bi
 nutils-010118/gas/.. -I/scratch/crossdev-build/src/binutils-010118/gas/../bf
 d -I/scratch/crossdev-build/src/binutils-010118/gas/../intl -I../intl -DLOCA
 LEDIR="\"/scratch/crossdev/armv5-linux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/gas/config/obj-elf.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/gas -I.
  -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/gas -I../bf
 d -I/scratch/crossdev-build/src/binutils-010118/gas/config -I/scratch/crossd
 ev-build/src/binutils-010118/gas/../include -I/scratch/crossdev-build/src/bi
 nutils-010118/gas/.. -I/scratch/crossdev-build/src/binutils-010118/gas/../bf
 d -I/scratch/crossdev-build/src/binutils-010118/gas/../intl -I../intl -DLOCA
 LEDIR="\"/scratch/crossdev/armv5-linux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/gas/config/atof-ieee.c
 /bin/sh ./libtool --mode=link cc -W -Wall -g  -o as-new  app.o as.o
 atof-generic.o bignum-copy.o cond.o depend.o dwarf2dbg.o ecoff.o ehopt.o
 expr.o flonum-copy.o flonum-konst.o flonum-mult.o frags.o hash.o
 input-file.o input-scrub.o listing.o literal.o macro.o messages.o
 output-file.o read.o sb.o stabs.o subsegs.o symbols.o write.o tc-arm.o
 obj-elf.o atof-ieee.o  ../opcodes/libopcodes.la ../bfd/libbfd.la
 ../libiberty/libiberty.a
 mkdir .libs
 cc -W -Wall -g -o as-new app.o as.o atof-generic.o bignum-copy.o cond.o
 depend.o dwarf2dbg.o ecoff.o ehopt.o expr.o flonum-copy.o flonum-konst.o
 flonum-mult.o frags.o hash.o input-file.o input-scrub.o listing.o literal.o
 macro.o messages.o output-file.o read.o sb.o stabs.o subsegs.o symbols.o
 write.o tc-arm.o obj-elf.o atof-ieee.o  ../opcodes/.libs/libopcodes.a
 ../bfd/.libs/libbfd.a ../libiberty/libiberty.a
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/gas -I.
  -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/gas -I../bf
 d -I/scratch/crossdev-build/src/binutils-010118/gas/config -I/scratch/crossd
 ev-build/src/binutils-010118/gas/../include -I/scratch/crossdev-build/src/bi
 nutils-010118/gas/.. -I/scratch/crossdev-build/src/binutils-010118/gas/../bf
 d -I/scratch/crossdev-build/src/binutils-010118/gas/../intl -I../intl -DLOCA
 LEDIR="\"/scratch/crossdev/armv5-linux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/gas/gasp.c
 /bin/sh ./libtool --mode=link cc -W -Wall -g  -o gasp-new  gasp.o macro.o
 sb.o hash.o ../libiberty/libiberty.a
 cc -W -Wall -g -o gasp-new gasp.o macro.o sb.o hash.o
 ../libiberty/libiberty.a
 make[3]: Leaving directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/gas'
 make[2]: Leaving directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/gas'
 make[1]: Leaving directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/gas'
 make[1]: Entering directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/ld'
 make -j1  all-recursive
 make[2]: Entering directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/ld'
 Making all in po
 make[3]: Entering directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/ld/po'
 make[3]: Nothing to be done for `all'.
 make[3]: Leaving directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/ld/po'
 make[3]: Entering directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/ld'
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/ld -I. 
 -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/ld -I../bfd 
 -I/scratch/crossdev-build/src/binutils-010118/ld/../bfd -I/scratch/crossdev-
 build/src/binutils-010118/ld/../include -I/scratch/crossdev-build/src/binuti
 ls-010118/ld/../intl -I../intl  -g -DLOCALEDIR="\"/scratch/crossdev/armv5-li
 nux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/ld/ldgram.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/ld -I. 
 -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/ld -I../bfd 
 -I/scratch/crossdev-build/src/binutils-010118/ld/../bfd -I/scratch/crossdev-
 build/src/binutils-010118/ld/../include -I/scratch/crossdev-build/src/binuti
 ls-010118/ld/../intl -I../intl  -g -DLOCALEDIR="\"/scratch/crossdev/armv5-li
 nux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/ld/ldlex.c
 lex.yy.c:2829: warning: `yyunput' defined but not used
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/ld -I. 
 -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/ld -I../bfd 
 -I/scratch/crossdev-build/src/binutils-010118/ld/../bfd -I/scratch/crossdev-
 build/src/binutils-010118/ld/../include -I/scratch/crossdev-build/src/binuti
 ls-010118/ld/../intl -I../intl  -g -DLOCALEDIR="\"/scratch/crossdev/armv5-li
 nux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/ld/lexsup.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/ld -I. 
 -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/ld -I../bfd 
 -I/scratch/crossdev-build/src/binutils-010118/ld/../bfd -I/scratch/crossdev-
 build/src/binutils-010118/ld/../include -I/scratch/crossdev-build/src/binuti
 ls-010118/ld/../intl -I../intl  -g -DLOCALEDIR="\"/scratch/crossdev/armv5-li
 nux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/ld/ldlang.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/ld -I. 
 -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/ld -I../bfd 
 -I/scratch/crossdev-build/src/binutils-010118/ld/../bfd -I/scratch/crossdev-
 build/src/binutils-010118/ld/../include -I/scratch/crossdev-build/src/binuti
 ls-010118/ld/../intl -I../intl  -g -DLOCALEDIR="\"/scratch/crossdev/armv5-li
 nux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/ld/mri.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/ld -I. 
 -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/ld -I../bfd 
 -I/scratch/crossdev-build/src/binutils-010118/ld/../bfd -I/scratch/crossdev-
 build/src/binutils-010118/ld/../include -I/scratch/crossdev-build/src/binuti
 ls-010118/ld/../intl -I../intl  -g -DLOCALEDIR="\"/scratch/crossdev/armv5-li
 nux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/ld/ldctor.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/ld -I. 
 -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/ld -I../bfd 
 -I/scratch/crossdev-build/src/binutils-010118/ld/../bfd -I/scratch/crossdev-
 build/src/binutils-010118/ld/../include -I/scratch/crossdev-build/src/binuti
 ls-010118/ld/../intl -I../intl  -g -DLOCALEDIR="\"/scratch/crossdev/armv5-li
 nux/share/locale\""   -W -Wall -g -c -DDEFAULT_EMULATION='"armelf_linux"' -D
 SCRIPTDIR='"/scratch/crossdev/armv5-linux/armv5-linux/lib"' -DTARGET='"armv5
 -unknown-linux-gnu"' /scratch/crossdev-build/src/binutils-010118/ld/ldmain.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/ld -I. 
 -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/ld -I../bfd 
 -I/scratch/crossdev-build/src/binutils-010118/ld/../bfd -I/scratch/crossdev-
 build/src/binutils-010118/ld/../include -I/scratch/crossdev-build/src/binuti
 ls-010118/ld/../intl -I../intl  -g -DLOCALEDIR="\"/scratch/crossdev/armv5-li
 nux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/ld/ldwrite.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/ld -I. 
 -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/ld -I../bfd 
 -I/scratch/crossdev-build/src/binutils-010118/ld/../bfd -I/scratch/crossdev-
 build/src/binutils-010118/ld/../include -I/scratch/crossdev-build/src/binuti
 ls-010118/ld/../intl -I../intl  -g -DLOCALEDIR="\"/scratch/crossdev/armv5-li
 nux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/ld/ldexp.c
 (echo "/* This file is automatically generated.  DO NOT EDIT! */";\
 for f in `echo " " earmelf_linux.o earmelf_linux26.o earmelf.o "" \
  | sed -e 's/ e/ ld/g' -e 's/ ld/ /g' -e 's/[.]o//g'`; do \
     echo "extern ld_emulation_xfer_type ld_${f}_emulation;"; \
 done;\
 echo "";\
 echo "#define EMULATION_LIST \\";\
 for f in `echo " " earmelf_linux.o earmelf_linux26.o earmelf.o "" \
  | sed -e 's/ e/ ld/g' -e 's/ ld/ /g' -e 's/[.]o//g'`; do \
     echo "  &ld_${f}_emulation, \\"; \
 done;\
 echo "  0") >ldemul-tmp.h
 mv ldemul-tmp.h ldemul-list.h
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/ld -I. 
 -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/ld -I../bfd 
 -I/scratch/crossdev-build/src/binutils-010118/ld/../bfd -I/scratch/crossdev-
 build/src/binutils-010118/ld/../include -I/scratch/crossdev-build/src/binuti
 ls-010118/ld/../intl -I../intl  -g -DLOCALEDIR="\"/scratch/crossdev/armv5-li
 nux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/ld/ldemul.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/ld -I. 
 -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/ld -I../bfd 
 -I/scratch/crossdev-build/src/binutils-010118/ld/../bfd -I/scratch/crossdev-
 build/src/binutils-010118/ld/../include -I/scratch/crossdev-build/src/binuti
 ls-010118/ld/../intl -I../intl  -g -DLOCALEDIR="\"/scratch/crossdev/armv5-li
 nux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/ld/ldver.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/ld -I. 
 -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/ld -I../bfd 
 -I/scratch/crossdev-build/src/binutils-010118/ld/../bfd -I/scratch/crossdev-
 build/src/binutils-010118/ld/../include -I/scratch/crossdev-build/src/binuti
 ls-010118/ld/../intl -I../intl  -g -DLOCALEDIR="\"/scratch/crossdev/armv5-li
 nux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/ld/ldmisc.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/ld -I. 
 -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/ld -I../bfd 
 -I/scratch/crossdev-build/src/binutils-010118/ld/../bfd -I/scratch/crossdev-
 build/src/binutils-010118/ld/../include -I/scratch/crossdev-build/src/binuti
 ls-010118/ld/../intl -I../intl  -g -DLOCALEDIR="\"/scratch/crossdev/armv5-li
 nux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/ld/ldfile.c
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/ld -I. 
 -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/ld -I../bfd 
 -I/scratch/crossdev-build/src/binutils-010118/ld/../bfd -I/scratch/crossdev-
 build/src/binutils-010118/ld/../include -I/scratch/crossdev-build/src/binuti
 ls-010118/ld/../intl -I../intl  -g -DLOCALEDIR="\"/scratch/crossdev/armv5-li
 nux/share/locale\""   -W -Wall -g -c
 /scratch/crossdev-build/src/binutils-010118/ld/ldcref.c
 cp /scratch/crossdev-build/src/binutils-010118/ld/emultempl/astring.sed
 stringify.sed
 /bin/sh /scratch/crossdev-build/src/binutils-010118/ld/genscripts.sh
 /scratch/crossdev-build/src/binutils-010118/ld
 /scratch/crossdev/armv5-linux/lib i686-pc-linux-gnu armv5-unknown-linux-gnu
 armv5-linux "armelf_linux" "" armelf_linux "armv5-linux"
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/ld -I. 
 -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/ld -I../bfd 
 -I/scratch/crossdev-build/src/binutils-010118/ld/../bfd -I/scratch/crossdev-
 build/src/binutils-010118/ld/../include -I/scratch/crossdev-build/src/binuti
 ls-010118/ld/../intl -I../intl  -g -DLOCALEDIR="\"/scratch/crossdev/armv5-li
 nux/share/locale\""   -W -Wall -g -c earmelf_linux.c
 /bin/sh /scratch/crossdev-build/src/binutils-010118/ld/genscripts.sh
 /scratch/crossdev-build/src/binutils-010118/ld
 /scratch/crossdev/armv5-linux/lib i686-pc-linux-gnu armv5-unknown-linux-gnu
 armv5-linux "armelf_linux" "" armelf_linux26 "armv5-linux"
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/ld -I. 
 -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/ld -I../bfd 
 -I/scratch/crossdev-build/src/binutils-010118/ld/../bfd -I/scratch/crossdev-
 build/src/binutils-010118/ld/../include -I/scratch/crossdev-build/src/binuti
 ls-010118/ld/../intl -I../intl  -g -DLOCALEDIR="\"/scratch/crossdev/armv5-li
 nux/share/locale\""   -W -Wall -g -c earmelf_linux26.c
 /bin/sh /scratch/crossdev-build/src/binutils-010118/ld/genscripts.sh
 /scratch/crossdev-build/src/binutils-010118/ld
 /scratch/crossdev/armv5-linux/lib i686-pc-linux-gnu armv5-unknown-linux-gnu
 armv5-linux "armelf_linux" "" armelf "armv5-linux"
 cc -DHAVE_CONFIG_H -I. -I/scratch/crossdev-build/src/binutils-010118/ld -I. 
 -D_GNU_SOURCE -I. -I/scratch/crossdev-build/src/binutils-010118/ld -I../bfd 
 -I/scratch/crossdev-build/src/binutils-010118/ld/../bfd -I/scratch/crossdev-
 build/src/binutils-010118/ld/../include -I/scratch/crossdev-build/src/binuti
 ls-010118/ld/../intl -I../intl  -g -DLOCALEDIR="\"/scratch/crossdev/armv5-li
 nux/share/locale\""   -W -Wall -g -c earmelf.c
 /bin/sh ./libtool --mode=link cc -W -Wall -g  -o ld-new  ldgram.o ldlex.o
 lexsup.o ldlang.o mri.o ldctor.o ldmain.o ldwrite.o ldexp.o ldemul.o ldver.o
 ldmisc.o ldfile.o ldcref.o earmelf_linux.o earmelf_linux26.o earmelf.o
 ../bfd/libbfd.la ../libiberty/libiberty.a
 mkdir .libs
 cc -W -Wall -g -o ld-new ldgram.o ldlex.o lexsup.o ldlang.o mri.o ldctor.o
 ldmain.o ldwrite.o ldexp.o ldemul.o ldver.o ldmisc.o ldfile.o ldcref.o
 earmelf_linux.o earmelf_linux26.o earmelf.o  ../bfd/.libs/libbfd.a
 ../libiberty/libiberty.a
 make[3]: Leaving directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/ld'
 make[2]: Leaving directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/ld'
 make[1]: Leaving directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/ld'
 + echo Installing binutils 010118 in /scratch/crossdev/armv5-linux
 Installing binutils 010118 in /scratch/crossdev/armv5-linux
 + make install
 /bin/sh /scratch/crossdev-build/src/binutils-010118/mkinstalldirs
 /scratch/crossdev/armv5-linux /scratch/crossdev/armv5-linux
 make[1]: Entering directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/bfd'
 Making install in doc
 make[2]: Entering directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/bfd/doc'
 make[3]: Entering directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/bfd/doc'
 make[3]: Nothing to be done for `install-exec-am'.
 make[3]: Nothing to be done for `install-data-am'.
 make[3]: Leaving directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/bfd/doc'
 make[2]: Leaving directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/bfd/doc'
 Making install in po
 make[2]: Entering directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/bfd/po'
 if test -r
 /scratch/crossdev-build/src/binutils-010118/bfd/po/../../mkinstalldirs; then
 \
   /scratch/crossdev-build/src/binutils-010118/bfd/po/../../mkinstalldirs
 /scratch/crossdev/armv5-linux/share; \
 else \
   /scratch/crossdev-build/src/binutils-010118/bfd/mkinstalldirs
 /scratch/crossdev/armv5-linux/share; \
 fi
 if test "bfd" = "gettext"; then \
   if test -r
 /scratch/crossdev-build/src/binutils-010118/bfd/po/../../mkinstalldirs; then
 \
     /scratch/crossdev-build/src/binutils-010118/bfd/po/../../mkinstalldirs
 /scratch/crossdev/armv5-linux/share/gettext/po; \
   else \
     /scratch/crossdev-build/src/binutils-010118/bfd/mkinstalldirs
 /scratch/crossdev/armv5-linux/share/gettext/po; \
   fi; \
   /bin/sh /scratch/crossdev-build/src/binutils-010118/install-sh -c -m 644
 /scratch/crossdev-build/src/binutils-010118/bfd/po/Makefile.in.in \
     /scratch/crossdev/armv5-linux/share/gettext/po/Makefile.in.in; \
 else \
   : ; \
 fi
 make[2]: Leaving directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/bfd/po'
 make[2]: Entering directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/bfd'
 make[3]: Entering directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/bfd'
 /bin/sh /scratch/crossdev-build/src/binutils-010118/bfd/../mkinstalldirs
 /scratch/crossdev/armv5-linux/lib
 /bin/sh ./libtool  --mode=install /bin/sh
 /scratch/crossdev-build/src/binutils-010118/install-sh -c libbfd.la
 /scratch/crossdev/armv5-linux/lib/libbfd.la
 /bin/sh /scratch/crossdev-build/src/binutils-010118/install-sh -c
 .libs/libbfd.lai /scratch/crossdev/armv5-linux/lib/libbfd.la
 /bin/sh /scratch/crossdev-build/src/binutils-010118/install-sh -c
 .libs/libbfd.a /scratch/crossdev/armv5-linux/lib/libbfd.a
 ranlib /scratch/crossdev/armv5-linux/lib/libbfd.a
 chmod 644 /scratch/crossdev/armv5-linux/lib/libbfd.a
 PATH="$PATH:/sbin" ldconfig -n /scratch/crossdev/armv5-linux/lib
 ----------------------------------------------------------------------
 Libraries have been installed in:
    /scratch/crossdev/armv5-linux/lib
 
 If you ever happen to want to link against installed libraries
 in a given directory, LIBDIR, you must either use libtool, and
 specify the full pathname of the library, or use `-LLIBDIR'
 flag during linking and do at least one of the following:
    - add LIBDIR to the `LD_LIBRARY_PATH' environment variable
      during execution
    - add LIBDIR to the `LD_RUN_PATH' environment variable
      during linking
    - use the `-Wl,--rpath -Wl,LIBDIR' linker flag
    - have your system administrator add LIBDIR to `/etc/ld.so.conf'
 
 See any operating system documentation about shared libraries for
 more information, such as the ld(1) and ld.so(8) manual pages.
 ----------------------------------------------------------------------
 /bin/sh /scratch/crossdev-build/src/binutils-010118/bfd/../mkinstalldirs
 /scratch/crossdev/armv5-linux/include
 /bin/sh /scratch/crossdev-build/src/binutils-010118/install-sh -c -m 644
 bfd.h /scratch/crossdev/armv5-linux/include/bfd.h
 /bin/sh /scratch/crossdev-build/src/binutils-010118/install-sh -c -m 644
 /scratch/crossdev-build/src/binutils-010118/bfd/../include/ansidecl.h
 /scratch/crossdev/armv5-linux/include/ansidecl.h
 /bin/sh /scratch/crossdev-build/src/binutils-010118/install-sh -c -m 644
 /scratch/crossdev-build/src/binutils-010118/bfd/../include/bfdlink.h
 /scratch/crossdev/armv5-linux/include/bfdlink.h
 make[3]: Leaving directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/bfd'
 make[2]: Leaving directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/bfd'
 make[1]: Leaving directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/bfd'
 make[1]: Entering directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/opcodes'
 Making install in po
 make[2]: Entering directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/opcodes/po'
 if test -r
 /scratch/crossdev-build/src/binutils-010118/opcodes/po/../../mkinstalldirs;
 then \
   /scratch/crossdev-build/src/binutils-010118/opcodes/po/../../mkinstalldirs
 /scratch/crossdev/armv5-linux/share; \
 else \
   /scratch/crossdev-build/src/binutils-010118/opcodes/mkinstalldirs
 /scratch/crossdev/armv5-linux/share; \
 fi
 if test "opcodes" = "gettext"; then \
   if test -r
 /scratch/crossdev-build/src/binutils-010118/opcodes/po/../../mkinstalldirs;
 then \
 
 /scratch/crossdev-build/src/binutils-010118/opcodes/po/../../mkinstalldirs
 /scratch/crossdev/armv5-linux/share/gettext/po; \
   else \
     /scratch/crossdev-build/src/binutils-010118/opcodes/mkinstalldirs
 /scratch/crossdev/armv5-linux/share/gettext/po; \
   fi; \
   /bin/sh /scratch/crossdev-build/src/binutils-010118/install-sh -c -m 644
 /scratch/crossdev-build/src/binutils-010118/opcodes/po/Makefile.in.in \
     /scratch/crossdev/armv5-linux/share/gettext/po/Makefile.in.in; \
 else \
   : ; \
 fi
 make[2]: Leaving directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/opcodes/po'
 make[2]: Entering directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/opcodes'
 make[3]: Entering directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/opcodes'
 /bin/sh /scratch/crossdev-build/src/binutils-010118/opcodes/../mkinstalldirs
 /scratch/crossdev/armv5-linux/lib
 /bin/sh ./libtool  --mode=install /bin/sh
 /scratch/crossdev-build/src/binutils-010118/install-sh -c libopcodes.la
 /scratch/crossdev/armv5-linux/lib/libopcodes.la
 /bin/sh /scratch/crossdev-build/src/binutils-010118/install-sh -c
 .libs/libopcodes.lai /scratch/crossdev/armv5-linux/lib/libopcodes.la
 /bin/sh /scratch/crossdev-build/src/binutils-010118/install-sh -c
 .libs/libopcodes.a /scratch/crossdev/armv5-linux/lib/libopcodes.a
 ranlib /scratch/crossdev/armv5-linux/lib/libopcodes.a
 chmod 644 /scratch/crossdev/armv5-linux/lib/libopcodes.a
 PATH="$PATH:/sbin" ldconfig -n /scratch/crossdev/armv5-linux/lib
 ----------------------------------------------------------------------
 Libraries have been installed in:
    /scratch/crossdev/armv5-linux/lib
 
 If you ever happen to want to link against installed libraries
 in a given directory, LIBDIR, you must either use libtool, and
 specify the full pathname of the library, or use `-LLIBDIR'
 flag during linking and do at least one of the following:
    - add LIBDIR to the `LD_LIBRARY_PATH' environment variable
      during execution
    - add LIBDIR to the `LD_RUN_PATH' environment variable
      during linking
    - use the `-Wl,--rpath -Wl,LIBDIR' linker flag
    - have your system administrator add LIBDIR to `/etc/ld.so.conf'
 
 See any operating system documentation about shared libraries for
 more information, such as the ld(1) and ld.so(8) manual pages.
 ----------------------------------------------------------------------
 make[3]: Nothing to be done for `install-data-am'.
 make[3]: Leaving directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/opcodes'
 make[2]: Leaving directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/opcodes'
 make[1]: Leaving directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/opcodes'
 make[1]: Entering directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/binutils'
 Making install in po
 make[2]: Entering directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/binutils/po'
 if test -r
 /scratch/crossdev-build/src/binutils-010118/binutils/po/../../mkinstalldirs;
 then \
 
 /scratch/crossdev-build/src/binutils-010118/binutils/po/../../mkinstalldirs
 /scratch/crossdev/armv5-linux/share; \
 else \
   /scratch/crossdev-build/src/binutils-010118/binutils/mkinstalldirs
 /scratch/crossdev/armv5-linux/share; \
 fi
 if test "binutils" = "gettext"; then \
   if test -r
 /scratch/crossdev-build/src/binutils-010118/binutils/po/../../mkinstalldirs;
 then \
 
 /scratch/crossdev-build/src/binutils-010118/binutils/po/../../mkinstalldirs
 /scratch/crossdev/armv5-linux/share/gettext/po; \
   else \
     /scratch/crossdev-build/src/binutils-010118/binutils/mkinstalldirs
 /scratch/crossdev/armv5-linux/share/gettext/po; \
   fi; \
   /bin/sh /scratch/crossdev-build/src/binutils-010118/install-sh -c -m 644
 /scratch/crossdev-build/src/binutils-010118/binutils/po/Makefile.in.in \
     /scratch/crossdev/armv5-linux/share/gettext/po/Makefile.in.in; \
 else \
   : ; \
 fi
 make[2]: Leaving directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/binutils/po'
 make[2]: Entering directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/binutils'
 make[3]: Entering directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/binutils'
 /bin/sh
 /scratch/crossdev-build/src/binutils-010118/binutils/../mkinstalldirs
 /scratch/crossdev/armv5-linux/bin
  /bin/sh ./libtool  --mode=install /bin/sh
 /scratch/crossdev-build/src/binutils-010118/install-sh -c  size
 /scratch/crossdev/armv5-linux/bin/armv5-linux-size
 /bin/sh /scratch/crossdev-build/src/binutils-010118/install-sh -c size
 /scratch/crossdev/armv5-linux/bin/armv5-linux-size
  /bin/sh ./libtool  --mode=install /bin/sh
 /scratch/crossdev-build/src/binutils-010118/install-sh -c  objdump
 /scratch/crossdev/armv5-linux/bin/armv5-linux-objdump
 /bin/sh /scratch/crossdev-build/src/binutils-010118/install-sh -c objdump
 /scratch/crossdev/armv5-linux/bin/armv5-linux-objdump
  /bin/sh ./libtool  --mode=install /bin/sh
 /scratch/crossdev-build/src/binutils-010118/install-sh -c  ar
 /scratch/crossdev/armv5-linux/bin/armv5-linux-ar
 /bin/sh /scratch/crossdev-build/src/binutils-010118/install-sh -c ar
 /scratch/crossdev/armv5-linux/bin/armv5-linux-ar
  /bin/sh ./libtool  --mode=install /bin/sh
 /scratch/crossdev-build/src/binutils-010118/install-sh -c  strings
 /scratch/crossdev/armv5-linux/bin/armv5-linux-strings
 /bin/sh /scratch/crossdev-build/src/binutils-010118/install-sh -c strings
 /scratch/crossdev/armv5-linux/bin/armv5-linux-strings
  /bin/sh ./libtool  --mode=install /bin/sh
 /scratch/crossdev-build/src/binutils-010118/install-sh -c  ranlib
 /scratch/crossdev/armv5-linux/bin/armv5-linux-ranlib
 /bin/sh /scratch/crossdev-build/src/binutils-010118/install-sh -c ranlib
 /scratch/crossdev/armv5-linux/bin/armv5-linux-ranlib
  /bin/sh ./libtool  --mode=install /bin/sh
 /scratch/crossdev-build/src/binutils-010118/install-sh -c  objcopy
 /scratch/crossdev/armv5-linux/bin/armv5-linux-objcopy
 /bin/sh /scratch/crossdev-build/src/binutils-010118/install-sh -c objcopy
 /scratch/crossdev/armv5-linux/bin/armv5-linux-objcopy
  /bin/sh ./libtool  --mode=install /bin/sh
 /scratch/crossdev-build/src/binutils-010118/install-sh -c  addr2line
 /scratch/crossdev/armv5-linux/bin/armv5-linux-addr2line
 /bin/sh /scratch/crossdev-build/src/binutils-010118/install-sh -c addr2line
 /scratch/crossdev/armv5-linux/bin/armv5-linux-addr2line
  /bin/sh ./libtool  --mode=install /bin/sh
 /scratch/crossdev-build/src/binutils-010118/install-sh -c  readelf
 /scratch/crossdev/armv5-linux/bin/armv5-linux-readelf
 /bin/sh /scratch/crossdev-build/src/binutils-010118/install-sh -c readelf
 /scratch/crossdev/armv5-linux/bin/armv5-linux-readelf
  /bin/sh ./libtool  --mode=install /bin/sh
 /scratch/crossdev-build/src/binutils-010118/install-sh -c  nm-new
 /scratch/crossdev/armv5-linux/bin/armv5-linux-nm
 /bin/sh /scratch/crossdev-build/src/binutils-010118/install-sh -c nm-new
 /scratch/crossdev/armv5-linux/bin/armv5-linux-nm
  /bin/sh ./libtool  --mode=install /bin/sh
 /scratch/crossdev-build/src/binutils-010118/install-sh -c  strip-new
 /scratch/crossdev/armv5-linux/bin/armv5-linux-strip
 /bin/sh /scratch/crossdev-build/src/binutils-010118/install-sh -c strip-new
 /scratch/crossdev/armv5-linux/bin/armv5-linux-strip
  /bin/sh ./libtool  --mode=install /bin/sh
 /scratch/crossdev-build/src/binutils-010118/install-sh -c  cxxfilt
 /scratch/crossdev/armv5-linux/bin/armv5-linux-c++filt
 /bin/sh /scratch/crossdev-build/src/binutils-010118/install-sh -c cxxfilt
 /scratch/crossdev/armv5-linux/bin/armv5-linux-c++filt
 /bin/sh
 /scratch/crossdev-build/src/binutils-010118/binutils/../mkinstalldirs
 /scratch/crossdev/armv5-linux/armv5-linux/bin
 for i in nm-new strip-new ar ranlib dlltool; do \
   if [ -f $i ]; then \
     j=`echo $i | sed -e 's/-new//'`; \
     k=`echo $j | sed 's,^,armv5-linux-,; '`; \
     if [ "/scratch/crossdev/armv5-linux/bin/$k" !=
 "/scratch/crossdev/armv5-linux/armv5-linux/bin/$j" ]; then \
       rm -f /scratch/crossdev/armv5-linux/armv5-linux/bin/$j; \
       ln /scratch/crossdev/armv5-linux/bin/$k
 /scratch/crossdev/armv5-linux/armv5-linux/bin/$j >/dev/null 2>/dev/null \
  || /bin/sh ./libtool --mode=install /bin/sh
 /scratch/crossdev-build/src/binutils-010118/install-sh -c  $i
 /scratch/crossdev/armv5-linux/armv5-linux/bin/$j; \
     fi; \
   else true; \
   fi; \
 done
 make  install-man1
 make[4]: Entering directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/binutils'
 /bin/sh
 /scratch/crossdev-build/src/binutils-010118/binutils/../mkinstalldirs
 /scratch/crossdev/armv5-linux/man/man1
  /bin/sh /scratch/crossdev-build/src/binutils-010118/install-sh -c -m 644
 /scratch/crossdev-build/src/binutils-010118/binutils/ar.1
 /scratch/crossdev/armv5-linux/man/man1/armv5-linux-ar.1
  /bin/sh /scratch/crossdev-build/src/binutils-010118/install-sh -c -m 644
 /scratch/crossdev-build/src/binutils-010118/binutils/nm.1
 /scratch/crossdev/armv5-linux/man/man1/armv5-linux-nm.1
  /bin/sh /scratch/crossdev-build/src/binutils-010118/install-sh -c -m 644
 /scratch/crossdev-build/src/binutils-010118/binutils/objdump.1
 /scratch/crossdev/armv5-linux/man/man1/armv5-linux-objdump.1
  /bin/sh /scratch/crossdev-build/src/binutils-010118/install-sh -c -m 644
 /scratch/crossdev-build/src/binutils-010118/binutils/ranlib.1
 /scratch/crossdev/armv5-linux/man/man1/armv5-linux-ranlib.1
  /bin/sh /scratch/crossdev-build/src/binutils-010118/install-sh -c -m 644
 /scratch/crossdev-build/src/binutils-010118/binutils/size.1
 /scratch/crossdev/armv5-linux/man/man1/armv5-linux-size.1
  /bin/sh /scratch/crossdev-build/src/binutils-010118/install-sh -c -m 644
 /scratch/crossdev-build/src/binutils-010118/binutils/strings.1
 /scratch/crossdev/armv5-linux/man/man1/armv5-linux-strings.1
  /bin/sh /scratch/crossdev-build/src/binutils-010118/install-sh -c -m 644
 /scratch/crossdev-build/src/binutils-010118/binutils/strip.1
 /scratch/crossdev/armv5-linux/man/man1/armv5-linux-strip.1
  /bin/sh /scratch/crossdev-build/src/binutils-010118/install-sh -c -m 644
 /scratch/crossdev-build/src/binutils-010118/binutils/objcopy.1
 /scratch/crossdev/armv5-linux/man/man1/armv5-linux-objcopy.1
  /bin/sh /scratch/crossdev-build/src/binutils-010118/install-sh -c -m 644
 /scratch/crossdev-build/src/binutils-010118/binutils/addr2line.1
 /scratch/crossdev/armv5-linux/man/man1/armv5-linux-addr2line.1
  /bin/sh /scratch/crossdev-build/src/binutils-010118/install-sh -c -m 644
 /scratch/crossdev-build/src/binutils-010118/binutils/nlmconv.1
 /scratch/crossdev/armv5-linux/man/man1/armv5-linux-nlmconv.1
  /bin/sh /scratch/crossdev-build/src/binutils-010118/install-sh -c -m 644
 c++filt.1 /scratch/crossdev/armv5-linux/man/man1/armv5-linux-c++filt.1
 make[4]: Leaving directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/binutils'
 make[3]: Leaving directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/binutils'
 make[2]: Leaving directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/binutils'
 make[1]: Leaving directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/binutils'
 make[1]: Entering directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/etc'
 make[1]: Nothing to be done for `install'.
 make[1]: Leaving directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/etc'
 make[1]: Entering directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/gas'
 Making install in doc
 make[2]: Entering directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/gas/doc'
 make[3]: Entering directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/gas/doc'
 make[3]: Nothing to be done for `install-exec-am'.
 make  install-man1
 make[4]: Entering directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/gas/doc'
 /bin/sh /scratch/crossdev-build/src/binutils-010118/gas/../mkinstalldirs
 /scratch/crossdev/armv5-linux/man/man1
  /bin/sh /scratch/crossdev-build/src/binutils-010118/install-sh -c -m 644
 /scratch/crossdev-build/src/binutils-010118/gas/doc/as.1
 /scratch/crossdev/armv5-linux/man/man1/armv5-linux-as.1
 make[4]: Leaving directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/gas/doc'
 make[3]: Leaving directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/gas/doc'
 make[2]: Leaving directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/gas/doc'
 Making install in po
 make[2]: Entering directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/gas/po'
 if test -r
 /scratch/crossdev-build/src/binutils-010118/gas/po/../../mkinstalldirs; then
 \
   /scratch/crossdev-build/src/binutils-010118/gas/po/../../mkinstalldirs
 /scratch/crossdev/armv5-linux/share; \
 else \
   /scratch/crossdev-build/src/binutils-010118/gas/mkinstalldirs
 /scratch/crossdev/armv5-linux/share; \
 fi
 if test "gas" = "gettext"; then \
   if test -r
 /scratch/crossdev-build/src/binutils-010118/gas/po/../../mkinstalldirs; then
 \
     /scratch/crossdev-build/src/binutils-010118/gas/po/../../mkinstalldirs
 /scratch/crossdev/armv5-linux/share/gettext/po; \
   else \
     /scratch/crossdev-build/src/binutils-010118/gas/mkinstalldirs
 /scratch/crossdev/armv5-linux/share/gettext/po; \
   fi; \
   /bin/sh /scratch/crossdev-build/src/binutils-010118/install-sh -c -m 644
 /scratch/crossdev-build/src/binutils-010118/gas/po/Makefile.in.in \
     /scratch/crossdev/armv5-linux/share/gettext/po/Makefile.in.in; \
 else \
   : ; \
 fi
 make[2]: Leaving directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/gas/po'
 make[2]: Entering directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/gas'
 make[3]: Entering directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/gas'
 /bin/sh /scratch/crossdev-build/src/binutils-010118/gas/../mkinstalldirs
 /scratch/crossdev/armv5-linux/bin
  /bin/sh ./libtool  --mode=install /bin/sh
 /scratch/crossdev-build/src/binutils-010118/install-sh -c  as-new
 /scratch/crossdev/armv5-linux/bin/armv5-linux-as
 /bin/sh /scratch/crossdev-build/src/binutils-010118/install-sh -c as-new
 /scratch/crossdev/armv5-linux/bin/armv5-linux-as
  /bin/sh ./libtool  --mode=install /bin/sh
 /scratch/crossdev-build/src/binutils-010118/install-sh -c  gasp-new
 /scratch/crossdev/armv5-linux/bin/armv5-linux-gasp
 /bin/sh /scratch/crossdev-build/src/binutils-010118/install-sh -c gasp-new
 /scratch/crossdev/armv5-linux/bin/armv5-linux-gasp
 /bin/sh /scratch/crossdev-build/src/binutils-010118/gas/../mkinstalldirs
 /scratch/crossdev/armv5-linux/armv5-linux/bin
 n=`echo as | sed 's,^,armv5-linux-,; '`; \
 if [ "/scratch/crossdev/armv5-linux/bin/$n" !=
 "/scratch/crossdev/armv5-linux/armv5-linux/bin/as" ]; then \
   rm -f /scratch/crossdev/armv5-linux/armv5-linux/bin/as; \
   ln /scratch/crossdev/armv5-linux/bin/$n
 /scratch/crossdev/armv5-linux/armv5-linux/bin/as >/dev/null 2>/dev/null \
     || /bin/sh ./libtool --mode=install /bin/sh
 /scratch/crossdev-build/src/binutils-010118/install-sh -c  as-new
 /scratch/crossdev/armv5-linux/armv5-linux/bin/as; \
 else \
   true ; \
 fi
 make[3]: Nothing to be done for `install-data-am'.
 make[3]: Leaving directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/gas'
 make[2]: Leaving directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/gas'
 make[1]: Leaving directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/gas'
 make[1]: Entering directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/intl'
 if test "@PACKAGE@" = "gettext" \
    && test '' = 'intl-compat.o'; then \
   if test -r
 /scratch/crossdev-build/src/binutils-010118/intl/../../mkinstalldirs; then \
     /scratch/crossdev-build/src/binutils-010118/intl/../../mkinstalldirs
 /scratch/crossdev/armv5-linux/lib /scratch/crossdev/armv5-linux/include; \
   else \
     /scratch/crossdev-build/src/binutils-010118/intl/mkinstalldirs
 /scratch/crossdev/armv5-linux/lib /scratch/crossdev/armv5-linux/include; \
   fi; \
   /bin/sh /scratch/crossdev-build/src/binutils-010118/install-sh -c -m 644
 intlh.inst /scratch/crossdev/armv5-linux/include/libintl.h; \
   /bin/sh /scratch/crossdev-build/src/binutils-010118/install-sh -c -m 644
 libintl.a /scratch/crossdev/armv5-linux/lib/libintl.a; \
 else \
   : ; \
 fi
 if test "@PACKAGE@" = "gettext"; then \
   if test -r
 /scratch/crossdev-build/src/binutils-010118/intl/../../mkinstalldirs; then \
     /scratch/crossdev-build/src/binutils-010118/intl/../../mkinstalldirs
 /scratch/crossdev/armv5-linux/share/gettext/intl; \
   else \
     /scratch/crossdev-build/src/binutils-010118/intl/mkinstalldirs
 /scratch/crossdev/armv5-linux/share/gettext/intl; \
   fi; \
   /bin/sh /scratch/crossdev-build/src/binutils-010118/install-sh -c -m 644
 VERSION /scratch/crossdev/armv5-linux/share/gettext/intl/VERSION; \
   dists="ChangeLog Makefile.in linux-msg.sed po2tbl.sed.in xopen-msg.sed
 gettext.h gettextP.h hash-string.h libgettext.h loadinfo.h bindtextdom.c
 dcgettext.c dgettext.c gettext.c finddomain.c loadmsgcat.c localealias.c
 textdomain.c l10nflist.c explodename.c intl-compat.c cat-compat.c"; \
   for file in $dists; do \
     /bin/sh /scratch/crossdev-build/src/binutils-010118/install-sh -c -m 644
 /scratch/crossdev-build/src/binutils-010118/intl/$file
 /scratch/crossdev/armv5-linux/share/gettext/intl/$file; \
   done; \
 else \
   : ; \
 fi
 make[1]: Leaving directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/intl'
 make[1]: Entering directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/ld'
 Making install in po
 make[2]: Entering directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/ld/po'
 if test -r
 /scratch/crossdev-build/src/binutils-010118/ld/po/../../mkinstalldirs; then
 \
   /scratch/crossdev-build/src/binutils-010118/ld/po/../../mkinstalldirs
 /scratch/crossdev/armv5-linux/share; \
 else \
   /scratch/crossdev-build/src/binutils-010118/ld/mkinstalldirs
 /scratch/crossdev/armv5-linux/share; \
 fi
 if test "ld" = "gettext"; then \
   if test -r
 /scratch/crossdev-build/src/binutils-010118/ld/po/../../mkinstalldirs; then
 \
     /scratch/crossdev-build/src/binutils-010118/ld/po/../../mkinstalldirs
 /scratch/crossdev/armv5-linux/share/gettext/po; \
   else \
     /scratch/crossdev-build/src/binutils-010118/ld/mkinstalldirs
 /scratch/crossdev/armv5-linux/share/gettext/po; \
   fi; \
   /bin/sh /scratch/crossdev-build/src/binutils-010118/install-sh -c -m 644
 /scratch/crossdev-build/src/binutils-010118/ld/po/Makefile.in.in \
     /scratch/crossdev/armv5-linux/share/gettext/po/Makefile.in.in; \
 else \
   : ; \
 fi
 make[2]: Leaving directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/ld/po'
 make[2]: Entering directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/ld'
 make[3]: Entering directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/ld'
 /bin/sh /scratch/crossdev-build/src/binutils-010118/ld/../mkinstalldirs
 /scratch/crossdev/armv5-linux/bin
 /scratch/crossdev/armv5-linux/armv5-linux/bin
  /bin/sh ./libtool  --mode=install /bin/sh
 /scratch/crossdev-build/src/binutils-010118/install-sh -c  ld-new
 /scratch/crossdev/armv5-linux/bin/armv5-linux-ld
 /bin/sh /scratch/crossdev-build/src/binutils-010118/install-sh -c ld-new
 /scratch/crossdev/armv5-linux/bin/armv5-linux-ld
 n=`echo ld | sed 's,^,armv5-linux-,; '`; \
 if [ "/scratch/crossdev/armv5-linux/bin/$n" !=
 "/scratch/crossdev/armv5-linux/armv5-linux/bin/ld" ]; then \
   rm -f /scratch/crossdev/armv5-linux/armv5-linux/bin/ld; \
   ln /scratch/crossdev/armv5-linux/bin/$n
 /scratch/crossdev/armv5-linux/armv5-linux/bin/ld >/dev/null 2>/dev/null \
   || /bin/sh ./libtool --mode=install /bin/sh
 /scratch/crossdev-build/src/binutils-010118/install-sh -c  ld-new
 /scratch/crossdev/armv5-linux/armv5-linux/bin/ld; \
 fi
 make  install-man1
 make[4]: Entering directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/ld'
 /bin/sh /scratch/crossdev-build/src/binutils-010118/ld/../mkinstalldirs
 /scratch/crossdev/armv5-linux/man/man1
  /bin/sh /scratch/crossdev-build/src/binutils-010118/install-sh -c -m 644
 /scratch/crossdev-build/src/binutils-010118/ld/ld.1
 /scratch/crossdev/armv5-linux/man/man1/armv5-linux-ld.1
 make[4]: Leaving directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/ld'
 /bin/sh /scratch/crossdev-build/src/binutils-010118/ld/../mkinstalldirs
 /scratch/crossdev/armv5-linux/armv5-linux/lib/ldscripts
 for f in ldscripts/*; do \
   /bin/sh /scratch/crossdev-build/src/binutils-010118/install-sh -c -m 644
 $f /scratch/crossdev/armv5-linux/armv5-linux/lib/$f ; \
 done
 make[3]: Leaving directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/ld'
 make[2]: Leaving directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/ld'
 make[1]: Leaving directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/ld'
 make[1]: Entering directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/libiberty'
 make[2]: Entering directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/libiberty/testsuite
 '
 make[2]: Nothing to be done for `all'.
 make[2]: Leaving directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/libiberty/testsuite
 '
 /bin/sh /scratch/crossdev-build/src/binutils-010118/install-sh -c -m 644
 libiberty.a /scratch/crossdev/armv5-linux/lib/libiberty.an
 ( cd /scratch/crossdev/armv5-linux/lib ; ranlib libiberty.an )
 mv -f /scratch/crossdev/armv5-linux/lib/libiberty.an
 /scratch/crossdev/armv5-linux/lib/libiberty.a
 make[2]: Entering directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/libiberty/testsuite
 '
 make[2]: Nothing to be done for `install'.
 make[2]: Leaving directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/libiberty/testsuite
 '
 make[1]: Leaving directory
 `/scratch/crossdev-build/armv5-linux/binutils-010118-obj/libiberty'
 
 if [ "$build_gcc" != "no" ]; then
   _srcdir="${SRC_PATH}/${GCC}-${GCC_VERSION}"
  _builddir="${BUILD_PATH}/${TARGET}/${GCC}-${GCC_VERSION}-obj"
  echo "Building $GCC $GCC_VERSION from $_srcdir in $_builddir"
 
  if [ "$restart" != "yes" ]; then
   rm -rf "${_builddir}"
  fi
 
  mkdir -p "${_builddir}" || exit 1
  cd "${_builddir}" || exit 1
 
  env $(echo $GLOBAL_ENV $GCC_ENV) $SPARC32 \
   "${_srcdir}/configure" "--prefix=$INST_PREFIX/$TARGET" \
  "--target=$TARGET" $GLOBAL_ARGS $GCC_ARGS || exit 1
 
   $SPARC32 make LANGUAGES=c ALL_TARGET_MODULES= \
  CONFIGURE_TARGET_MODULES= INSTALL_TARGET_MODULES= \
  SUBDIRS="libiberty gcc" MAKE="make -j$(($CPUS + 1))" || exit 1
 
  # I think this should just be $SPARC32 make ??? But it works. ???
  echo "Installing $GCC $GCC_VERSION in $INST_PREFIX/$TARGET"
  $SPARC32 make -C gcc \
   LANGUAGES=c ALL_TARGET_MODULES= SUBDIRS="libiberty gcc" \
   CONFIGURE_TARGET_MODULES= INSTALL_TARGET_MODULES= install || exit 1
 fi
 + [ yes != no ]
 + _srcdir=/scratch/crossdev-build/src/gcc-20010122
 + _builddir=/scratch/crossdev-build/armv5-linux/gcc-20010122-obj
 + echo Building gcc 20010122 from /scratch/crossdev-build/src/gcc-20010122
 in /scratch/crossdev-build/armv5-linux/gcc-20010122-obj
 Building gcc 20010122 from /scratch/crossdev-build/src/gcc-20010122 in
 /scratch/crossdev-build/armv5-linux/gcc-20010122-obj
 + [ no != yes ]
 + rm -rf /scratch/crossdev-build/armv5-linux/gcc-20010122-obj
 + mkdir -p /scratch/crossdev-build/armv5-linux/gcc-20010122-obj
 + cd /scratch/crossdev-build/armv5-linux/gcc-20010122-obj
 echo $GLOBAL_ENV $GCC_ENV
 ++ echo AR=armv5-linux-ar RANLIB=armv5-linux-ranlib
 + env AR=armv5-linux-ar RANLIB=armv5-linux-ranlib
 /scratch/crossdev-build/src/gcc-20010122/configure --prefix=/scratch/crossde
 v/armv5-linux --target=armv5-linux --enable-shared --with-newlib --enable-la
 nguages=c
 Configuring for a i686-pc-linux-gnu host.
 *** This configuration is not supported in the following subdirectories:
      target-libchill target-libstdc++-v3 target-libf2c target-libffi
 target-boehm-gc target-zlib target-libjava fastjar target-libobjc
     (Any other directories should still work fine.)
 Created "Makefile" in /scratch/crossdev-build/armv5-linux/gcc-20010122-obj
 using "mh-frag" and "mt-frag"
 Configuring libiberty...
 creating cache ../config.cache
 checking host system type... i686-pc-linux-gnu
 checking build system type... i686-pc-linux-gnu
 checking for ar... armv5-linux-ar
 checking for ranlib... armv5-linux-ranlib
 checking for gcc... gcc
 checking whether we are using GNU C... yes
 checking whether gcc accepts -g... yes
 checking for POSIXized ISC... no
 checking for working const... yes
 checking for inline... inline
 checking for a BSD compatible install... /usr/bin/install -c
 Appending
 /scratch/crossdev-build/src/gcc-20010122/libiberty/config/../../config/mh-x8
 6pic to xhost-mkfrag
 checking how to run the C preprocessor... gcc -E
 checking for sys/file.h... yes
 checking for sys/param.h... yes
 checking for limits.h... yes
 checking for stdlib.h... yes
 checking for string.h... yes
 checking for unistd.h... yes
 checking for strings.h... yes
 checking for sys/time.h... yes
 checking for time.h... yes
 checking for sys/resource.h... yes
 checking for sys/stat.h... yes
 checking for sys/mman.h... yes
 checking for fcntl.h... yes
 checking for sys/wait.h that is POSIX.1 compatible... yes
 checking whether time.h and sys/time.h may both be included... yes
 checking whether errno must be declared... no
 checking whether the C compiler (gcc -g -O2 ) works... yes
 checking whether the C compiler (gcc -g -O2 ) is a cross-compiler... no
 checking for asprintf... yes
 checking for atexit... yes
 checking for basename... yes
 checking for bcmp... yes
 checking for bcopy... yes
 checking for bsearch... yes
 checking for bzero... yes
 checking for calloc... yes
 checking for clock... yes
 checking for getcwd... yes
 checking for getpagesize... yes
 checking for index... yes
 checking for insque... yes
 checking for memchr... yes
 checking for memcmp... yes
 checking for memcpy... yes
 checking for memmove... yes
 checking for memset... yes
 checking for mkstemps... no
 checking for putenv... yes
 checking for random... yes
 checking for rename... yes
 checking for rindex... yes
 checking for setenv... yes
 checking for sigsetmask... yes
 checking for strcasecmp... yes
 checking for strchr... yes
 checking for strdup... yes
 checking for strncasecmp... yes
 checking for strrchr... yes
 checking for strstr... yes
 checking for strtod... yes
 checking for strtol... yes
 checking for strtoul... yes
 checking for tmpnam... yes
 checking for vasprintf... yes
 checking for vfprintf... yes
 checking for vprintf... yes
 checking for vsprintf... yes
 checking for waitpid... yes
 checking for working alloca.h... yes
 checking for alloca... yes
 checking for ANSI C header files... yes
 checking for pid_t... yes
 checking for vfork.h... no
 checking for working vfork... yes
 checking for sys_errlist... yes
 checking for sys_nerr... yes
 checking for sys_siglist... yes
 checking for getrusage... yes
 checking for on_exit... yes
 checking for psignal... yes
 checking for strerror... yes
 checking for strsignal... yes
 checking for sysconf... yes
 checking for times... yes
 checking for sbrk... yes
 checking for gettimeofday... yes
 checking for unistd.h... (cached) yes
 checking for getpagesize... (cached) yes
 checking for working mmap... yes
 checking for working strncmp... yes
 updating cache ../config.cache
 creating ./config.status
 creating Makefile
 creating testsuite/Makefile
 creating config.h
 Configuring zlib...
 loading cache ../config.cache
 checking host system type... i686-pc-linux-gnu
 checking target system type... armv5-unknown-linux-gnu
 checking build system type... i686-pc-linux-gnu
 checking for a BSD compatible install... (cached) /usr/bin/install -c
 checking whether build environment is sane... yes
 checking whether make sets ${MAKE}... yes
 checking for working aclocal... found
 checking for working autoconf... found
 checking for working automake... found
 checking for working autoheader... found
 checking for working makeinfo... found
 checking whether to enable maintainer-specific portions of Makefiles... no
 checking for gcc... (cached) gcc
 checking whether we are using GNU C... (cached) yes
 checking whether gcc accepts -g... (cached) yes
 checking for ranlib... (cached) armv5-linux-ranlib
 checking for ld used by GCC... /usr/bin/ld
 checking if the linker (/usr/bin/ld) is GNU ld... yes
 checking for BSD-compatible nm... /usr/bin/nm -B
 checking command to parse /usr/bin/nm -B output... yes
 checking for _ prefix in compiled symbols... (cached) no
 checking whether ln -s works... yes
 updating cache ../config.cache
 loading cache ../config.cache within ltconfig
 checking whether -lc should be explicitly linked in... no
 checking for objdir... .libs
 checking for gcc option to produce PIC... -fPIC -DPIC
 checking if gcc PIC flag -fPIC -DPIC works... yes
 checking if gcc static flag -static works... yes
 checking if gcc supports -c -o file.o... yes
 checking if gcc supports -fno-rtti -fno-exceptions ... yes
 checking whether the linker (/usr/bin/ld) supports shared libraries... yes
 checking how to hardcode library paths into programs... immediate
 checking whether stripping libraries is possible... no
 checking dynamic linker characteristics... GNU/Linux ld.so
 checking command to parse /usr/bin/nm -B output... ok
 checking if libtool supports shared libraries... yes
 checking whether to build shared libraries... yes
 checking whether to build static libraries... yes
 creating libtool
 updating cache ../config.cache
 loading cache ../config.cache
 checking how to run the C preprocessor... (cached) gcc -E
 checking for unistd.h... (cached) yes
 checking for getpagesize... (cached) yes
 checking for working mmap... (cached) yes
 checking for memcpy... (cached) yes
 checking for strerror... (cached) yes
 checking for unistd.h... (cached) yes
 creating ./config.status
 creating Makefile
 Configuring gcc...
 loading cache ../config.cache
 checking LIBRARY_PATH variable... ok
 checking GCC_EXEC_PREFIX variable... ok
 checking for libstdc++ to install... v3
 checking host system type... i686-pc-linux-gnu
 checking target system type... armv5-unknown-linux-gnu
 checking build system type... i686-pc-linux-gnu
 checking for gcc... (cached) gcc
 checking whether the C compiler (gcc -g -O2 ) works... yes
 checking whether the C compiler (gcc -g -O2 ) is a cross-compiler... no
 checking whether we are using GNU C... (cached) yes
 checking whether gcc accepts -g... (cached) yes
 checking whether gcc and cc understand -c and -o together... yes
 checking for long double... yes
 checking whether gcc accepts -Wno-long-long... yes
 checking whether make sets ${MAKE}... (cached) yes
 checking whether a default assembler was specified... no
 checking whether a default linker was specified... no
 checking for GNU C library... yes
 checking for inline... (cached) inline
 checking for mawk... mawk
 checking whether ln works... yes
 checking whether ln -s works... yes
 checking for volatile... yes
 checking for ranlib... (cached) armv5-linux-ranlib
 checking for a BSD compatible install... (cached) /usr/bin/install -c
 checking how to run the C preprocessor... (cached) gcc -E
 checking for ANSI C header files... (cached) yes
 checking whether time.h and sys/time.h may both be included... (cached) yes
 checking whether string.h and strings.h may both be included... yes
 checking for sys/wait.h that is POSIX.1 compatible... (cached) yes
 checking for limits.h... (cached) yes
 checking for stddef.h... yes
 checking for string.h... (cached) yes
 checking for strings.h... (cached) yes
 checking for stdlib.h... (cached) yes
 checking for time.h... (cached) yes
 checking for fcntl.h... (cached) yes
 checking for unistd.h... (cached) yes
 checking for stab.h... yes
 checking for sys/file.h... (cached) yes
 checking for sys/time.h... (cached) yes
 checking for sys/resource.h... (cached) yes
 checking for sys/param.h... (cached) yes
 checking for sys/times.h... yes
 checking for sys/stat.h... (cached) yes
 checking for direct.h... no
 checking for malloc.h... yes
 checking for langinfo.h... yes
 checking for iconv.h... yes
 checking for thread.h... no
 checking for pthread.h... yes
 checking for gnatbind... no
 checking for mktemp... yes
 checking for makeinfo... makeinfo
 checking for modern makeinfo... no
 configure: warning:
 *** Makeinfo is missing or too old.
 *** Info documentation will not be built.
 checking for recent Pod::Man... no
 checking for flex... flex
 checking for bison... bison
 checking for preprocessor stringizing operator... yes
 checking for inttypes.h... yes
 checking for unsigned enumerated bitfields... yes
 checking for strtoul... (cached) yes
 checking for bsearch... (cached) yes
 checking for putenv... (cached) yes
 checking for popen... yes
 checking for bcopy... (cached) yes
 checking for strchr... (cached) yes
 checking for strrchr... (cached) yes
 checking for kill... yes
 checking for getrlimit... yes
 checking for setrlimit... yes
 checking for atoll... yes
 checking for atoq... no
 checking for sysconf... (cached) yes
 checking for isascii... yes
 checking for gettimeofday... (cached) yes
 checking for strsignal... (cached) yes
 checking for putc_unlocked... yes
 checking for fputc_unlocked... yes
 checking for fputs_unlocked... yes
 checking for getrusage... (cached) yes
 checking for iconv... yes
 checking for nl_langinfo... yes
 checking for ssize_t... yes
 checking for uid_t in sys/types.h... yes
 checking type of array argument to getgroups... gid_t
 checking for vprintf... (cached) yes
 checking for strstr... (cached) yes
 checking whether the printf functions support %p... yes
 checking for pid_t... (cached) yes
 checking for vfork.h... (cached) no
 checking for working vfork... (cached) yes
 checking for getpagesize... (cached) yes
 checking for working mmap from /dev/zero... yes
 checking for working mmap with MAP_ANON(YMOUS)... yes
 checking for working mmap of a file... yes
 checking whether bcopy is declared... yes
 checking whether getenv is declared... yes
 checking whether atol is declared... yes
 checking whether sbrk is declared... yes
 checking whether abort is declared... yes
 checking whether atof is declared... yes
 checking whether getcwd is declared... yes
 checking whether getwd is declared... yes
 checking whether strsignal is declared... yes
 checking whether putc_unlocked is declared... yes
 checking whether fputs_unlocked is declared... yes
 checking whether strstr is declared... yes
 checking whether environ is declared... yes
 checking whether malloc is declared... yes
 checking whether realloc is declared... yes
 checking whether calloc is declared... yes
 checking whether free is declared... yes
 checking whether basename is declared... yes
 checking whether getopt is declared... yes
 checking whether getrlimit is declared... yes
 checking whether setrlimit is declared... yes
 checking whether getrusage is declared... yes
 checking if mkdir takes one argument... no
 Using `/scratch/crossdev-build/src/gcc-20010122/gcc/config/arm/arm.c' to
 output insns.
 Using `/scratch/crossdev-build/src/gcc-20010122/gcc/config/arm/arm.md' as
 machine description file.
 Using `/scratch/crossdev-build/src/gcc-20010122/gcc/config/arm/linux-elf.h'
 as target machine macro file.
 Using `/scratch/crossdev-build/src/gcc-20010122/gcc/config/i386/xm-i386.h'
 as host machine macro file.
 checking for strerror in -lcposix... no
 checking for working const... (cached) yes
 checking for off_t... yes
 checking for size_t... yes
 checking for working alloca.h... (cached) yes
 checking for alloca... (cached) yes
 checking for argz.h... yes
 checking for limits.h... (cached) yes
 checking for locale.h... yes
 checking for nl_types.h... yes
 checking for malloc.h... (cached) yes
 checking for string.h... (cached) yes
 checking for unistd.h... (cached) yes
 checking for sys/param.h... (cached) yes
 checking for getcwd... (cached) yes
 checking for munmap... yes
 checking for putenv... (cached) yes
 checking for setenv... (cached) yes
 checking for setlocale... yes
 checking for strchr... (cached) yes
 checking for strcasecmp... (cached) yes
 checking for strdup... (cached) yes
 checking for __argz_count... yes
 checking for __argz_stringify... yes
 checking for __argz_next... yes
 checking for stpcpy... yes
 checking for LC_MESSAGES... yes
 checking whether NLS is requested... yes
 checking whether included gettext is requested... no
 checking for libintl.h... yes
 checking for gettext in libc... yes
 checking for msgfmt... /usr/bin/msgfmt
 checking for dcgettext... yes
 checking for gmsgfmt... /usr/bin/msgfmt
 checking for xgettext... /usr/bin/xgettext
 checking for catalogs to be installed...
 checking whether windows registry support is requested... yes
 checking registry key on windows hosts... 2.97
 checking what assembler to use...
 checking what nm to use...
 checking assembler alignment features... none
 checking assembler subsection support... no
 checking assembler weak support... no
 checking assembler hidden support... no
 checking assembler dwarf2 debug_line support... no
 Using ggc-page for garbage collection.
 checking whether to enable maintainer-specific portions of Makefiles... no
 Links are now set up to build a cross-compiler for armv5-unknown-linux-gnu
   from i686-pc-linux-gnu.
 updating cache ../config.cache
 creating ./config.status
 creating Makefile
 creating intl/Makefile
 creating po/Makefile.in
 creating fixinc/Makefile
 creating gccbug
 creating mklibgcc
 creating auto-host.h
 + make LANGUAGES=c ALL_TARGET_MODULES= CONFIGURE_TARGET_MODULES=
 INSTALL_TARGET_MODULES= SUBDIRS=libiberty gcc MAKE=make -j1
 make[1]: Entering directory
 `/scratch/crossdev-build/armv5-linux/gcc-20010122-obj/libiberty'
 if [ x"-fpic" != x ] && [ ! -d pic ]; then \
   mkdir pic; \
 else true; fi
 touch stamp-picdir
 if [ x"-fpic" != x ]; then \
 
 
 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/scratch/crossdev-build/src/gcc-20010122
 /libiberty/../include  -W -Wall -Wtraditional -pedantic -fpic
 /scratch/crossdev-build/src/gcc-20010122/libiberty/argv.c -o pic/argv.o; \
 else true; fi
 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/scratch/crossdev-build/src/gcc-20010122
 /libiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/gcc-20010122/libiberty/argv.c
 if [ x"-fpic" != x ]; then \
 
 
 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/scratch/crossdev-build/src/gcc-20010122
 /libiberty/../include  -W -Wall -Wtraditional -pedantic -fpic
 /scratch/crossdev-build/src/gcc-20010122/libiberty/choose-temp.c -o
 pic/choose-temp.o; \
 else true; fi
 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/scratch/crossdev-build/src/gcc-20010122
 /libiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/gcc-20010122/libiberty/choose-temp.c
 if [ x"-fpic" != x ]; then \
 
 
 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/scratch/crossdev-build/src/gcc-20010122
 /libiberty/../include  -W -Wall -Wtraditional -pedantic -fpic
 /scratch/crossdev-build/src/gcc-20010122/libiberty/concat.c -o pic/concat.o;
 \
 else true; fi
 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/scratch/crossdev-build/src/gcc-20010122
 /libiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/gcc-20010122/libiberty/concat.c
 if [ x"-fpic" != x ]; then \
 
 
 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/scratch/crossdev-build/src/gcc-20010122
 /libiberty/../include  -W -Wall -Wtraditional -pedantic -fpic
 /scratch/crossdev-build/src/gcc-20010122/libiberty/cplus-dem.c -o
 pic/cplus-dem.o; \
 else true; fi
 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/scratch/crossdev-build/src/gcc-20010122
 /libiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/gcc-20010122/libiberty/cplus-dem.c
 if [ x"-fpic" != x ]; then \
 
 
 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/scratch/crossdev-build/src/gcc-20010122
 /libiberty/../include  -W -Wall -Wtraditional -pedantic -fpic
 /scratch/crossdev-build/src/gcc-20010122/libiberty/cp-demangle.c -o
 pic/cp-demangle.o; \
 else true; fi
 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/scratch/crossdev-build/src/gcc-20010122
 /libiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/gcc-20010122/libiberty/cp-demangle.c
 if [ x"-fpic" != x ]; then \
 
 
 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/scratch/crossdev-build/src/gcc-20010122
 /libiberty/../include  -W -Wall -Wtraditional -pedantic -fpic
 /scratch/crossdev-build/src/gcc-20010122/libiberty/dyn-string.c -o
 pic/dyn-string.o; \
 else true; fi
 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/scratch/crossdev-build/src/gcc-20010122
 /libiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/gcc-20010122/libiberty/dyn-string.c
 if [ x"-fpic" != x ]; then \
 
 
 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/scratch/crossdev-build/src/gcc-20010122
 /libiberty/../include  -W -Wall -Wtraditional -pedantic -fpic
 /scratch/crossdev-build/src/gcc-20010122/libiberty/fdmatch.c -o
 pic/fdmatch.o; \
 else true; fi
 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/scratch/crossdev-build/src/gcc-20010122
 /libiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/gcc-20010122/libiberty/fdmatch.c
 if [ x"-fpic" != x ]; then \
 
 
 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/scratch/crossdev-build/src/gcc-20010122
 /libiberty/../include  -W -Wall -Wtraditional -pedantic -fpic
 /scratch/crossdev-build/src/gcc-20010122/libiberty/fnmatch.c -o
 pic/fnmatch.o; \
 else true; fi
 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/scratch/crossdev-build/src/gcc-20010122
 /libiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/gcc-20010122/libiberty/fnmatch.c
 if [ x"-fpic" != x ]; then \
 
 
 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/scratch/crossdev-build/src/gcc-20010122
 /libiberty/../include  -W -Wall -Wtraditional -pedantic -fpic
 /scratch/crossdev-build/src/gcc-20010122/libiberty/getopt.c -o pic/getopt.o;
 \
 else true; fi
 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/scratch/crossdev-build/src/gcc-20010122
 /libiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/gcc-20010122/libiberty/getopt.c
 if [ x"-fpic" != x ]; then \
 
 
 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/scratch/crossdev-build/src/gcc-20010122
 /libiberty/../include  -W -Wall -Wtraditional -pedantic -fpic
 /scratch/crossdev-build/src/gcc-20010122/libiberty/getopt1.c -o
 pic/getopt1.o; \
 else true; fi
 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/scratch/crossdev-build/src/gcc-20010122
 /libiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/gcc-20010122/libiberty/getopt1.c
 if [ x"-fpic" != x ]; then \
 
 
 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/scratch/crossdev-build/src/gcc-20010122
 /libiberty/../include  -W -Wall -Wtraditional -pedantic -fpic
 /scratch/crossdev-build/src/gcc-20010122/libiberty/getpwd.c -o pic/getpwd.o;
 \
 else true; fi
 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/scratch/crossdev-build/src/gcc-20010122
 /libiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/gcc-20010122/libiberty/getpwd.c
 if [ x"-fpic" != x ]; then \
 
 
 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/scratch/crossdev-build/src/gcc-20010122
 /libiberty/../include  -W -Wall -Wtraditional -pedantic -fpic
 /scratch/crossdev-build/src/gcc-20010122/libiberty/getruntime.c -o
 pic/getruntime.o; \
 else true; fi
 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/scratch/crossdev-build/src/gcc-20010122
 /libiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/gcc-20010122/libiberty/getruntime.c
 if [ x"-fpic" != x ]; then \
 
 
 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/scratch/crossdev-build/src/gcc-20010122
 /libiberty/../include  -W -Wall -Wtraditional -pedantic -fpic
 /scratch/crossdev-build/src/gcc-20010122/libiberty/hashtab.c -o
 pic/hashtab.o; \
 else true; fi
 /scratch/crossdev-build/src/gcc-20010122/libiberty/hashtab.c: In function
 `higher_prime_number':
 /scratch/crossdev-build/src/gcc-20010122/libiberty/hashtab.c:114: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/hashtab.c:114: warning:
 decimal constant is so large that it is unsigned
 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/scratch/crossdev-build/src/gcc-20010122
 /libiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/gcc-20010122/libiberty/hashtab.c
 /scratch/crossdev-build/src/gcc-20010122/libiberty/hashtab.c: In function
 `higher_prime_number':
 /scratch/crossdev-build/src/gcc-20010122/libiberty/hashtab.c:114: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/hashtab.c:114: warning:
 decimal constant is so large that it is unsigned
 if [ x"-fpic" != x ]; then \
 
 
 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/scratch/crossdev-build/src/gcc-20010122
 /libiberty/../include  -W -Wall -Wtraditional -pedantic -fpic
 /scratch/crossdev-build/src/gcc-20010122/libiberty/hex.c -o pic/hex.o; \
 else true; fi
 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/scratch/crossdev-build/src/gcc-20010122
 /libiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/gcc-20010122/libiberty/hex.c
 if [ x"-fpic" != x ]; then \
 
 
 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/scratch/crossdev-build/src/gcc-20010122
 /libiberty/../include  -W -Wall -Wtraditional -pedantic -fpic
 /scratch/crossdev-build/src/gcc-20010122/libiberty/floatformat.c -o
 pic/floatformat.o; \
 else true; fi
 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/scratch/crossdev-build/src/gcc-20010122
 /libiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/gcc-20010122/libiberty/floatformat.c
 if [ x"-fpic" != x ]; then \
 
 
 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/scratch/crossdev-build/src/gcc-20010122
 /libiberty/../include  -W -Wall -Wtraditional -pedantic -fpic
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c -o pic/md5.o; \
 else true; fi
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c: In function
 `md5_init_ctx':
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:69: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:70: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c: In function
 `md5_process_block':
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:325: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:326: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:328: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:329: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:331: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:332: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:334: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:335: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:336: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:338: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:339: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:356: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:357: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:359: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:360: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:362: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:363: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:365: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:366: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:368: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:369: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:371: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:374: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:375: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:377: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:378: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:380: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:381: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:383: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:384: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:386: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:387: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:389: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:392: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:394: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:395: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:397: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:398: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:399: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:401: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:402: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:404: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:405: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:407: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/scratch/crossdev-build/src/gcc-20010122
 /libiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c: In function
 `md5_init_ctx':
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:69: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:70: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c: In function
 `md5_process_block':
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:325: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:326: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:328: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:329: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:331: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:332: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:334: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:335: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:336: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:338: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:339: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:356: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:357: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:359: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:360: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:362: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:363: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:365: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:366: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:368: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:369: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:371: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:374: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:375: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:377: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:378: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:380: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:381: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:383: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:384: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:386: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:387: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:389: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:392: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:394: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:395: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:397: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:398: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:399: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:401: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:402: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:404: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:405: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/libiberty/md5.c:407: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 if [ x"-fpic" != x ]; then \
 
 
 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/scratch/crossdev-build/src/gcc-20010122
 /libiberty/../include  -W -Wall -Wtraditional -pedantic -fpic
 /scratch/crossdev-build/src/gcc-20010122/libiberty/objalloc.c -o
 pic/objalloc.o; \
 else true; fi
 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/scratch/crossdev-build/src/gcc-20010122
 /libiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/gcc-20010122/libiberty/objalloc.c
 if [ x"-fpic" != x ]; then \
 
 
 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/scratch/crossdev-build/src/gcc-20010122
 /libiberty/../include  -W -Wall -Wtraditional -pedantic -fpic
 /scratch/crossdev-build/src/gcc-20010122/libiberty/obstack.c -o
 pic/obstack.o; \
 else true; fi
 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/scratch/crossdev-build/src/gcc-20010122
 /libiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/gcc-20010122/libiberty/obstack.c
 if [ x"-fpic" != x ]; then \
 
 
 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/scratch/crossdev-build/src/gcc-20010122
 /libiberty/../include  -W -Wall -Wtraditional -pedantic -fpic
 /scratch/crossdev-build/src/gcc-20010122/libiberty/partition.c -o
 pic/partition.o; \
 else true; fi
 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/scratch/crossdev-build/src/gcc-20010122
 /libiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/gcc-20010122/libiberty/partition.c
 if [ x"-fpic" != x ]; then \
 
 
 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/scratch/crossdev-build/src/gcc-20010122
 /libiberty/../include  -W -Wall -Wtraditional -pedantic -fpic
 /scratch/crossdev-build/src/gcc-20010122/libiberty/pexecute.c -o
 pic/pexecute.o; \
 else true; fi
 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/scratch/crossdev-build/src/gcc-20010122
 /libiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/gcc-20010122/libiberty/pexecute.c
 if [ x"-fpic" != x ]; then \
 
 
 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/scratch/crossdev-build/src/gcc-20010122
 /libiberty/../include  -W -Wall -Wtraditional -pedantic -fpic
 /scratch/crossdev-build/src/gcc-20010122/libiberty/safe-ctype.c -o
 pic/safe-ctype.o; \
 else true; fi
 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/scratch/crossdev-build/src/gcc-20010122
 /libiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/gcc-20010122/libiberty/safe-ctype.c
 if [ x"-fpic" != x ]; then \
 
 
 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/scratch/crossdev-build/src/gcc-20010122
 /libiberty/../include  -W -Wall -Wtraditional -pedantic -fpic
 /scratch/crossdev-build/src/gcc-20010122/libiberty/sort.c -o pic/sort.o; \
 else true; fi
 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/scratch/crossdev-build/src/gcc-20010122
 /libiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/gcc-20010122/libiberty/sort.c
 if [ x"-fpic" != x ]; then \
 
 
 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/scratch/crossdev-build/src/gcc-20010122
 /libiberty/../include  -W -Wall -Wtraditional -pedantic -fpic
 /scratch/crossdev-build/src/gcc-20010122/libiberty/spaces.c -o pic/spaces.o;
 \
 else true; fi
 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/scratch/crossdev-build/src/gcc-20010122
 /libiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/gcc-20010122/libiberty/spaces.c
 if [ x"-fpic" != x ]; then \
 
 
 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/scratch/crossdev-build/src/gcc-20010122
 /libiberty/../include  -W -Wall -Wtraditional -pedantic -fpic
 /scratch/crossdev-build/src/gcc-20010122/libiberty/splay-tree.c -o
 pic/splay-tree.o; \
 else true; fi
 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/scratch/crossdev-build/src/gcc-20010122
 /libiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/gcc-20010122/libiberty/splay-tree.c
 if [ x"-fpic" != x ]; then \
 
 
 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/scratch/crossdev-build/src/gcc-20010122
 /libiberty/../include  -W -Wall -Wtraditional -pedantic -fpic
 /scratch/crossdev-build/src/gcc-20010122/libiberty/strerror.c -o
 pic/strerror.o; \
 else true; fi
 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/scratch/crossdev-build/src/gcc-20010122
 /libiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/gcc-20010122/libiberty/strerror.c
 if [ x"-fpic" != x ]; then \
 
 
 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/scratch/crossdev-build/src/gcc-20010122
 /libiberty/../include  -W -Wall -Wtraditional -pedantic -fpic
 /scratch/crossdev-build/src/gcc-20010122/libiberty/strsignal.c -o
 pic/strsignal.o; \
 else true; fi
 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/scratch/crossdev-build/src/gcc-20010122
 /libiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/gcc-20010122/libiberty/strsignal.c
 if [ x"-fpic" != x ]; then \
 
 
 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/scratch/crossdev-build/src/gcc-20010122
 /libiberty/../include  -W -Wall -Wtraditional -pedantic -fpic
 /scratch/crossdev-build/src/gcc-20010122/libiberty/xatexit.c -o
 pic/xatexit.o; \
 else true; fi
 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/scratch/crossdev-build/src/gcc-20010122
 /libiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/gcc-20010122/libiberty/xatexit.c
 if [ x"-fpic" != x ]; then \
 
 
 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/scratch/crossdev-build/src/gcc-20010122
 /libiberty/../include  -W -Wall -Wtraditional -pedantic -fpic
 /scratch/crossdev-build/src/gcc-20010122/libiberty/xexit.c -o pic/xexit.o; \
 else true; fi
 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/scratch/crossdev-build/src/gcc-20010122
 /libiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/gcc-20010122/libiberty/xexit.c
 if [ x"-fpic" != x ]; then \
 
 
 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/scratch/crossdev-build/src/gcc-20010122
 /libiberty/../include  -W -Wall -Wtraditional -pedantic -fpic
 /scratch/crossdev-build/src/gcc-20010122/libiberty/xmalloc.c -o
 pic/xmalloc.o; \
 else true; fi
 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/scratch/crossdev-build/src/gcc-20010122
 /libiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/gcc-20010122/libiberty/xmalloc.c
 if [ x"-fpic" != x ]; then \
 
 
 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/scratch/crossdev-build/src/gcc-20010122
 /libiberty/../include  -W -Wall -Wtraditional -pedantic -fpic
 /scratch/crossdev-build/src/gcc-20010122/libiberty/xmemdup.c -o
 pic/xmemdup.o; \
 else true; fi
 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/scratch/crossdev-build/src/gcc-20010122
 /libiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/gcc-20010122/libiberty/xmemdup.c
 if [ x"-fpic" != x ]; then \
 
 
 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/scratch/crossdev-build/src/gcc-20010122
 /libiberty/../include  -W -Wall -Wtraditional -pedantic -fpic
 /scratch/crossdev-build/src/gcc-20010122/libiberty/xstrdup.c -o
 pic/xstrdup.o; \
 else true; fi
 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/scratch/crossdev-build/src/gcc-20010122
 /libiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/gcc-20010122/libiberty/xstrdup.c
 if [ x"-fpic" != x ]; then \
 
 
 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/scratch/crossdev-build/src/gcc-20010122
 /libiberty/../include  -W -Wall -Wtraditional -pedantic -fpic
 /scratch/crossdev-build/src/gcc-20010122/libiberty/xstrerror.c -o
 pic/xstrerror.o; \
 else true; fi
 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/scratch/crossdev-build/src/gcc-20010122
 /libiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/gcc-20010122/libiberty/xstrerror.c
 if [ x"-fpic" != x ]; then \
 
 
 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/scratch/crossdev-build/src/gcc-20010122
 /libiberty/../include  -W -Wall -Wtraditional -pedantic -fpic
 /scratch/crossdev-build/src/gcc-20010122/libiberty/mkstemps.c -o
 pic/mkstemps.o; \
 else true; fi
 gcc -c -DHAVE_CONFIG_H -g -O2 -I. -I/scratch/crossdev-build/src/gcc-20010122
 /libiberty/../include  -W -Wall -Wtraditional -pedantic
 /scratch/crossdev-build/src/gcc-20010122/libiberty/mkstemps.c
 rm -f libiberty.a
 ar rc libiberty.a \
   argv.o choose-temp.o concat.o cplus-dem.o cp-demangle.o dyn-string.o
 fdmatch.o fnmatch.o getopt.o getopt1.o getpwd.o getruntime.o hashtab.o hex.o
 floatformat.o md5.o objalloc.o obstack.o partition.o pexecute.o safe-ctype.o
 sort.o spaces.o splay-tree.o strerror.o strsignal.o xatexit.o xexit.o
 xmalloc.o xmemdup.o xstrdup.o xstrerror.o  mkstemps.o
 ranlib libiberty.a
 rm -f needed-list; touch needed-list; \
 for f in atexit calloc memchr memcmp memcpy memmove memset rename strchr
 strerror strncmp strrchr strstr strtol strtoul tmpnam vfprintf vprintf vfork
 waitpid bcmp bcopy bzero; do \
   for g in mkstemps.o ; do \
     case "$g" in \
       *$f*) echo $g >> needed-list ;; \
     esac; \
   done; \
 done
 echo argv.o choose-temp.o concat.o cplus-dem.o cp-demangle.o dyn-string.o
 fdmatch.o fnmatch.o getopt.o getopt1.o getpwd.o getruntime.o hashtab.o hex.o
 floatformat.o md5.o objalloc.o obstack.o partition.o pexecute.o safe-ctype.o
 sort.o spaces.o splay-tree.o strerror.o strsignal.o xatexit.o xexit.o
 xmalloc.o xmemdup.o xstrdup.o xstrerror.o > required-list
 make[2]: Entering directory
 `/scratch/crossdev-build/armv5-linux/gcc-20010122-obj/libiberty/testsuite'
 make[2]: Nothing to be done for `all'.
 make[2]: Leaving directory
 `/scratch/crossdev-build/armv5-linux/gcc-20010122-obj/libiberty/testsuite'
 make[1]: Leaving directory
 `/scratch/crossdev-build/armv5-linux/gcc-20010122-obj/libiberty'
 make[1]: Entering directory
 `/scratch/crossdev-build/armv5-linux/gcc-20010122-obj/zlib'
 gcc -DPACKAGE=\"zlib\" -DVERSION=\"1.1.3\" -DHAVE_UNISTD_H=1 -DHAVE_GETPAGES
 IZE=1 -DHAVE_MMAP=1 -DHAVE_MEMCPY=1 -DHAVE_STRERROR=1 -DHAVE_UNISTD_H=1  -I.
  -I/scratch/crossdev-build/src/gcc-20010122/zlib      -g -O2 -c
 /scratch/crossdev-build/src/gcc-20010122/zlib/adler32.c
 gcc -DPACKAGE=\"zlib\" -DVERSION=\"1.1.3\" -DHAVE_UNISTD_H=1 -DHAVE_GETPAGES
 IZE=1 -DHAVE_MMAP=1 -DHAVE_MEMCPY=1 -DHAVE_STRERROR=1 -DHAVE_UNISTD_H=1  -I.
  -I/scratch/crossdev-build/src/gcc-20010122/zlib      -g -O2 -c
 /scratch/crossdev-build/src/gcc-20010122/zlib/compress.c
 gcc -DPACKAGE=\"zlib\" -DVERSION=\"1.1.3\" -DHAVE_UNISTD_H=1 -DHAVE_GETPAGES
 IZE=1 -DHAVE_MMAP=1 -DHAVE_MEMCPY=1 -DHAVE_STRERROR=1 -DHAVE_UNISTD_H=1  -I.
  -I/scratch/crossdev-build/src/gcc-20010122/zlib      -g -O2 -c
 /scratch/crossdev-build/src/gcc-20010122/zlib/crc32.c
 gcc -DPACKAGE=\"zlib\" -DVERSION=\"1.1.3\" -DHAVE_UNISTD_H=1 -DHAVE_GETPAGES
 IZE=1 -DHAVE_MMAP=1 -DHAVE_MEMCPY=1 -DHAVE_STRERROR=1 -DHAVE_UNISTD_H=1  -I.
  -I/scratch/crossdev-build/src/gcc-20010122/zlib      -g -O2 -c
 /scratch/crossdev-build/src/gcc-20010122/zlib/deflate.c
 gcc -DPACKAGE=\"zlib\" -DVERSION=\"1.1.3\" -DHAVE_UNISTD_H=1 -DHAVE_GETPAGES
 IZE=1 -DHAVE_MMAP=1 -DHAVE_MEMCPY=1 -DHAVE_STRERROR=1 -DHAVE_UNISTD_H=1  -I.
  -I/scratch/crossdev-build/src/gcc-20010122/zlib      -g -O2 -c
 /scratch/crossdev-build/src/gcc-20010122/zlib/gzio.c
 gcc -DPACKAGE=\"zlib\" -DVERSION=\"1.1.3\" -DHAVE_UNISTD_H=1 -DHAVE_GETPAGES
 IZE=1 -DHAVE_MMAP=1 -DHAVE_MEMCPY=1 -DHAVE_STRERROR=1 -DHAVE_UNISTD_H=1  -I.
  -I/scratch/crossdev-build/src/gcc-20010122/zlib      -g -O2 -c
 /scratch/crossdev-build/src/gcc-20010122/zlib/infblock.c
 gcc -DPACKAGE=\"zlib\" -DVERSION=\"1.1.3\" -DHAVE_UNISTD_H=1 -DHAVE_GETPAGES
 IZE=1 -DHAVE_MMAP=1 -DHAVE_MEMCPY=1 -DHAVE_STRERROR=1 -DHAVE_UNISTD_H=1  -I.
  -I/scratch/crossdev-build/src/gcc-20010122/zlib      -g -O2 -c
 /scratch/crossdev-build/src/gcc-20010122/zlib/infcodes.c
 gcc -DPACKAGE=\"zlib\" -DVERSION=\"1.1.3\" -DHAVE_UNISTD_H=1 -DHAVE_GETPAGES
 IZE=1 -DHAVE_MMAP=1 -DHAVE_MEMCPY=1 -DHAVE_STRERROR=1 -DHAVE_UNISTD_H=1  -I.
  -I/scratch/crossdev-build/src/gcc-20010122/zlib      -g -O2 -c
 /scratch/crossdev-build/src/gcc-20010122/zlib/inffast.c
 gcc -DPACKAGE=\"zlib\" -DVERSION=\"1.1.3\" -DHAVE_UNISTD_H=1 -DHAVE_GETPAGES
 IZE=1 -DHAVE_MMAP=1 -DHAVE_MEMCPY=1 -DHAVE_STRERROR=1 -DHAVE_UNISTD_H=1  -I.
  -I/scratch/crossdev-build/src/gcc-20010122/zlib      -g -O2 -c
 /scratch/crossdev-build/src/gcc-20010122/zlib/inflate.c
 gcc -DPACKAGE=\"zlib\" -DVERSION=\"1.1.3\" -DHAVE_UNISTD_H=1 -DHAVE_GETPAGES
 IZE=1 -DHAVE_MMAP=1 -DHAVE_MEMCPY=1 -DHAVE_STRERROR=1 -DHAVE_UNISTD_H=1  -I.
  -I/scratch/crossdev-build/src/gcc-20010122/zlib      -g -O2 -c
 /scratch/crossdev-build/src/gcc-20010122/zlib/inftrees.c
 gcc -DPACKAGE=\"zlib\" -DVERSION=\"1.1.3\" -DHAVE_UNISTD_H=1 -DHAVE_GETPAGES
 IZE=1 -DHAVE_MMAP=1 -DHAVE_MEMCPY=1 -DHAVE_STRERROR=1 -DHAVE_UNISTD_H=1  -I.
  -I/scratch/crossdev-build/src/gcc-20010122/zlib      -g -O2 -c
 /scratch/crossdev-build/src/gcc-20010122/zlib/infutil.c
 gcc -DPACKAGE=\"zlib\" -DVERSION=\"1.1.3\" -DHAVE_UNISTD_H=1 -DHAVE_GETPAGES
 IZE=1 -DHAVE_MMAP=1 -DHAVE_MEMCPY=1 -DHAVE_STRERROR=1 -DHAVE_UNISTD_H=1  -I.
  -I/scratch/crossdev-build/src/gcc-20010122/zlib      -g -O2 -c
 /scratch/crossdev-build/src/gcc-20010122/zlib/trees.c
 gcc -DPACKAGE=\"zlib\" -DVERSION=\"1.1.3\" -DHAVE_UNISTD_H=1 -DHAVE_GETPAGES
 IZE=1 -DHAVE_MMAP=1 -DHAVE_MEMCPY=1 -DHAVE_STRERROR=1 -DHAVE_UNISTD_H=1  -I.
  -I/scratch/crossdev-build/src/gcc-20010122/zlib      -g -O2 -c
 /scratch/crossdev-build/src/gcc-20010122/zlib/uncompr.c
 gcc -DPACKAGE=\"zlib\" -DVERSION=\"1.1.3\" -DHAVE_UNISTD_H=1 -DHAVE_GETPAGES
 IZE=1 -DHAVE_MMAP=1 -DHAVE_MEMCPY=1 -DHAVE_STRERROR=1 -DHAVE_UNISTD_H=1  -I.
  -I/scratch/crossdev-build/src/gcc-20010122/zlib      -g -O2 -c
 /scratch/crossdev-build/src/gcc-20010122/zlib/zutil.c
 rm -f libz.a
 ar cru libz.a adler32.o compress.o crc32.o deflate.o gzio.o infblock.o
 infcodes.o inffast.o inflate.o inftrees.o infutil.o trees.o uncompr.o
 zutil.o
 ranlib libz.a
 true "AR_FLAGS=rc" "CC_FOR_BUILD=gcc" "CFLAGS=-g -O2" "CXXFLAGS=-g -O2"
 "CFLAGS_FOR_BUILD=" "CFLAGS_FOR_TARGET=-g -O2" "INSTALL=/bin/sh
 /scratch/crossdev-build/src/gcc-20010122/install-sh -c"
 "INSTALL_DATA=/bin/sh
 /scratch/crossdev-build/src/gcc-20010122/install-sh -c -m 644"
 "INSTALL_PROGRAM=/bin/sh
 /scratch/crossdev-build/src/gcc-20010122/install-sh -c "
 "INSTALL_SCRIPT=/bin/sh
 /scratch/crossdev-build/src/gcc-20010122/install-sh -c" "LDFLAGS="
 "LIBCFLAGS=-g -O2" "LIBCFLAGS_FOR_TARGET=-g -O2" "MAKE=make -j1"
 "MAKEINFO=makeinfo  " "PICFLAG=" "PICFLAG_FOR_TARGET=" "SHELL=/bin/sh"
 "EXPECT=expect" "RUNTEST=runtest" "RUNTESTFLAGS="
 "exec_prefix=/scratch/crossdev/armv5-linux"
 "infodir=/scratch/crossdev/armv5-linux/info"
 "libdir=/scratch/crossdev/armv5-linux/lib"
 "prefix=/scratch/crossdev/armv5-linux"
 "tooldir=/scratch/crossdev/armv5-linux/armv5-linux" "AR=ar" "AS=as" "CC=gcc"
 "CXX=c++" "LD=ld" "LIBCFLAGS=-g -O2" "NM=nm" "PICFLAG=" "RANLIB=ranlib"
 "DESTDIR=" DO=all multi-do
 make[1]: Leaving directory
 `/scratch/crossdev-build/armv5-linux/gcc-20010122-obj/zlib'
 make[1]: Entering directory
 `/scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc'
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H -DGENERATOR_FILE    -I. -I. -I/scratch/crossdev-build/src/gcc-20
 010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/cross
 dev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/gcc-2001
 0122/gcc/../include /scratch/crossdev-build/src/gcc-20010122/gcc/gengenrtl.c
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/gengenrtl.c:23:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 rm -f obstack.c
 ln -s /scratch/crossdev-build/src/gcc-20010122/gcc/../libiberty/obstack.c
 obstack.c
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H -DGENERATOR_FILE    -I. -I. -I/scratch/crossdev-build/src/gcc-20
 010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/cross
 dev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/gcc-2001
 0122/gcc/../include \
  obstack.c -o obstack.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/../include/obstack.h:146,
                  from obstack.c:27:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-pro
 totypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHAVE_
 CONFIG_H -DGENERATOR_FILE  -o gengenrtl \
  gengenrtl.o ` case "obstack.o" in ?*) echo obstack.o ;; esac ` ` case "" in
 ?*) echo  ;; esac ` ` case "" in ?*) echo  ;; esac ` ` case "" in ?*) echo
 ;; esac ` ` case "" in ?*) echo  ;; esac ` ` case "" in ?*) echo  ;; esac `
 ./gengenrtl -h >tmp-genrtl.h
 /bin/sh /scratch/crossdev-build/src/gcc-20010122/gcc/move-if-change
 tmp-genrtl.h genrtl.h
 ./gengenrtl >tmp-genrtl.c
 /bin/sh /scratch/crossdev-build/src/gcc-20010122/gcc/move-if-change
 tmp-genrtl.c genrtl.c
 touch s-genrtl
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H -DGENERATOR_FILE    -I. -I. -I/scratch/crossdev-build/src/gcc-20
 010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/cross
 dev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/gcc-2001
 0122/gcc/../include /scratch/crossdev-build/src/gcc-20010122/gcc/gencodes.c
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/gencodes.c:26:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H -DGENERATOR_FILE    -I. -I. -I/scratch/crossdev-build/src/gcc-20
 010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/cross
 dev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/gcc-2001
 0122/gcc/../include /scratch/crossdev-build/src/gcc-20010122/gcc/rtl.c -o
 rtl.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from /scratch/crossdev-build/src/gcc-20010122/gcc/rtl.c:24:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H -DGENERATOR_FILE    -I. -I. -I/scratch/crossdev-build/src/gcc-20
 010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/cross
 dev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/gcc-2001
 0122/gcc/../include /scratch/crossdev-build/src/gcc-20010122/gcc/bitmap.c -o
 bitmap.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/bitmap.c:22:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H -DGENERATOR_FILE    -I. -I. -I/scratch/crossdev-build/src/gcc-20
 010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/cross
 dev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/gcc-2001
 0122/gcc/../include
 /scratch/crossdev-build/src/gcc-20010122/gcc/ggc-none.c -o ggc-none.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/ggc-none.c:30:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H -DGENERATOR_FILE    -I. -I. -I/scratch/crossdev-build/src/gcc-20
 010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/cross
 dev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/gcc-2001
 0122/gcc/../include
 /scratch/crossdev-build/src/gcc-20010122/gcc/gensupport.c
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/gensupport.c:22:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 rm -f hashtab.c
 ln -s /scratch/crossdev-build/src/gcc-20010122/gcc/../libiberty/hashtab.c
 hashtab.c
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H -DGENERATOR_FILE    -I. -I. -I/scratch/crossdev-build/src/gcc-20
 010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/cross
 dev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/gcc-2001
 0122/gcc/../include hashtab.c
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from hashtab.c:45:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 hashtab.c: In function `higher_prime_number':
 hashtab.c:114: warning: integer constant is unsigned in ANSI C, signed
 with -traditional
 hashtab.c:114: warning: decimal constant is so large that it is unsigned
 rm -f safe-ctype.c
 ln -s /scratch/crossdev-build/src/gcc-20010122/gcc/../libiberty/safe-ctype.c
 safe-ctype.c
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H -DGENERATOR_FILE    -I. -I. -I/scratch/crossdev-build/src/gcc-20
 010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/cross
 dev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/gcc-2001
 0122/gcc/../include safe-ctype.c
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H -DGENERATOR_FILE    -I. -I. -I/scratch/crossdev-build/src/gcc-20
 010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/cross
 dev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/gcc-2001
 0122/gcc/../include
 /scratch/crossdev-build/src/gcc-20010122/gcc/print-rtl.c -o print-rtl.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/print-rtl.c:24:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H -DGENERATOR_FILE    -I. -I. -I/scratch/crossdev-build/src/gcc-20
 010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/cross
 dev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/gcc-2001
 0122/gcc/../include /scratch/crossdev-build/src/gcc-20010122/gcc/errors.c -o
 errors.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/errors.c:26:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-pro
 totypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHAVE_
 CONFIG_H -DGENERATOR_FILE  -o gencodes \
  gencodes.o rtl.o bitmap.o ggc-none.o gensupport.o hashtab.o safe-ctype.o
 print-rtl.o errors.o ` case "obstack.o" in ?*) echo obstack.o ;; esac ` `
 case "" in ?*) echo  ;; esac ` ` case "" in ?*) echo  ;; esac ` ` case "" in
 ?*) echo  ;; esac ` ` case "" in ?*) echo  ;; esac ` ` case "" in ?*) echo
 ;; esac `
 ./gencodes /scratch/crossdev-build/src/gcc-20010122/gcc/config/arm/arm.md >
 tmp-codes.h
 /bin/sh /scratch/crossdev-build/src/gcc-20010122/gcc/move-if-change
 tmp-codes.h insn-codes.h
 touch s-codes
 (cd intl && make -j1 all)
 make[2]: Entering directory
 `/scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/intl'
 make[2]: Nothing to be done for `all'.
 make[2]: Leaving directory
 `/scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/intl'
 (cd po && make -j1 all)
 make[2]: Entering directory
 `/scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/po'
 make[2]: Nothing to be done for `all'.
 make[2]: Leaving directory
 `/scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/po'
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H -DGENERATOR_FILE    -I. -I. -I/scratch/crossdev-build/src/gcc-20
 010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/cross
 dev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/gcc-2001
 0122/gcc/../include \
   /scratch/crossdev-build/src/gcc-20010122/gcc/gencheck.c
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/gencheck.c:22:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-pro
 totypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHAVE_
 CONFIG_H -DGENERATOR_FILE  -o gencheck \
  gencheck.o ` case "obstack.o" in ?*) echo obstack.o ;; esac ` ` case "" in
 ?*) echo  ;; esac ` ` case "" in ?*) echo  ;; esac ` ` case "" in ?*) echo
 ;; esac ` ` case "" in ?*) echo  ;; esac ` ` case "" in ?*) echo  ;; esac `
 ./gencheck > tmp-check.h
 /bin/sh /scratch/crossdev-build/src/gcc-20010122/gcc/move-if-change
 tmp-check.h tree-check.h
 touch s-check
 gcc -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-pro
 totypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHAVE_
 CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc-20
 010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../include 
 -c /scratch/crossdev-build/src/gcc-20010122/gcc/c-parse.c
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from c-parse.y:36:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/c-lang.c -o c-lang.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/c-lang.c:24:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/c-errors.c -o c-errors.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/c-errors.c:23:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/c-lex.c -o c-lex.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/c-lex.c:23:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 /scratch/crossdev-build/src/gcc-20010122/gcc/c-lex.c: In function
 `read_ucs':
 /scratch/crossdev-build/src/gcc-20010122/gcc/c-lex.c:407: warning: integer
 constant is unsigned in ANSI C, signed with -traditional
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/c-pragma.c -o c-pragma.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/c-pragma.c:22:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/c-decl.c -o c-decl.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/c-decl.c:30:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/c-typeck.c -o c-typeck.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/c-typeck.c:33:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/c-convert.c -o c-convert.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/c-convert.c:28:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/c-aux-info.c -o c-aux-info.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/c-aux-info.c:26:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/c-common.c -o c-common.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/c-common.c:23:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/c-format.c -o c-format.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/c-format.c:23:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/c-semantics.c -o
 c-semantics.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/c-semantics.c:25:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/c-dump.c -o c-dump.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/c-dump.c:23:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/cpplib.c -o cpplib.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/cpplib.c:23:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/cpplex.c -o cpplex.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/cpplex.c:38:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/cppmacro.c -o cppmacro.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/cppmacro.c:27:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/cppexp.c -o cppexp.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/cppexp.c:24:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/cppfiles.c -o cppfiles.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/cppfiles.c:24:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/cpphash.c -o cpphash.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/cpphash.c:27:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/cpperror.c -o cpperror.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/cpperror.c:27:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/cppinit.c -o cppinit.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/cppinit.c:23:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-pro
 totypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHAVE_
 CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc-20
 010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../include
 \
   -DGCC_INCLUDE_DIR=\"/scratch/crossdev/armv5-linux/lib/gcc-lib/armv5-linux/
 2.97/include\" -DGPLUSPLUS_INCLUDE_DIR=\"/scratch/crossdev/armv5-linux/lib/g
 cc-lib/armv5-linux/2.97/../../../..`echo /scratch/crossdev/armv5-linux |
 sed -e 's|^/scratch/crossdev/armv5-linux||' -e
 's|/[^/]*|/..|g'`/include/g++-v3\" -DGPLUSPLUS_TOOL_INCLUDE_DIR=\"/scratch/c
 rossdev/armv5-linux/armv5-linux/include/g++-v3\" -DLOCAL_INCLUDE_DIR=\"/scra
 tch/crossdev/armv5-linux/include\" -DCROSS_INCLUDE_DIR=\"/scratch/crossdev/a
 rmv5-linux/lib/gcc-lib/armv5-linux/2.97/../../../../armv5-linux/sys-include\
 " -DTOOL_INCLUDE_DIR=\"/scratch/crossdev/armv5-linux/lib/gcc-lib/armv5-linux
 /2.97/../../../../armv5-linux/include\" \
   -c /scratch/crossdev-build/src/gcc-20010122/gcc/cppdefault.c
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/cppdefault.c:26:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/mkdeps.c -o mkdeps.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/mkdeps.c:24:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-pro
 totypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHAVE_
 CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc-20
 010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../include
 \
 -DPREFIX=\"/scratch/crossdev/armv5-linux\" \
   -c /scratch/crossdev-build/src/gcc-20010122/gcc/prefix.c
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/prefix.c:68:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/version.c -o version.o
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/mbchar.c -o mbchar.o
 rm -rf libcpp.a
 ar rc libcpp.a cpplib.o cpplex.o cppmacro.o cppexp.o cppfiles.o cpphash.o
 cpperror.o cppinit.o cppdefault.o mkdeps.o prefix.o version.o mbchar.o
 if [ -f ranlib ] || [ -f /usr/bin/ranlib -o -f /bin/ranlib ] ; then ranlib
 libcpp.a ; else true ; fi
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H -DGENERATOR_FILE    -I. -I. -I/scratch/crossdev-build/src/gcc-20
 010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/cross
 dev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/gcc-2001
 0122/gcc/../include /scratch/crossdev-build/src/gcc-20010122/gcc/genattr.c
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/genattr.c:24:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-pro
 totypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHAVE_
 CONFIG_H -DGENERATOR_FILE  -o genattr \
  genattr.o rtl.o bitmap.o ggc-none.o gensupport.o hashtab.o safe-ctype.o
 print-rtl.o errors.o ` case "obstack.o" in ?*) echo obstack.o ;; esac ` `
 case "" in ?*) echo  ;; esac ` ` case "" in ?*) echo  ;; esac ` ` case "" in
 ?*) echo  ;; esac ` ` case "" in ?*) echo  ;; esac ` ` case "" in ?*) echo
 ;; esac `
 ./genattr /scratch/crossdev-build/src/gcc-20010122/gcc/config/arm/arm.md >
 tmp-attr.h
 /bin/sh /scratch/crossdev-build/src/gcc-20010122/gcc/move-if-change
 tmp-attr.h insn-attr.h
 touch s-attr
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H -DGENERATOR_FILE    -I. -I. -I/scratch/crossdev-build/src/gcc-20
 010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/cross
 dev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/gcc-2001
 0122/gcc/../include /scratch/crossdev-build/src/gcc-20010122/gcc/genconfig.c
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/genconfig.c:25:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-pro
 totypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHAVE_
 CONFIG_H -DGENERATOR_FILE  -o genconfig \
   genconfig.o rtl.o bitmap.o ggc-none.o gensupport.o hashtab.o safe-ctype.o
 print-rtl.o errors.o ` case "obstack.o" in ?*) echo obstack.o ;; esac ` `
 case "" in ?*) echo  ;; esac ` ` case "" in ?*) echo  ;; esac ` ` case "" in
 ?*) echo  ;; esac ` ` case "" in ?*) echo  ;; esac ` ` case "" in ?*) echo
 ;; esac `
 ./genconfig /scratch/crossdev-build/src/gcc-20010122/gcc/config/arm/arm.md >
 tmp-config.h
 /bin/sh /scratch/crossdev-build/src/gcc-20010122/gcc/move-if-change
 tmp-config.h insn-config.h
 touch s-config
 gcc -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-pro
 totypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHAVE_
 CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc-20
 010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../include
 \
   -DTARGET_NAME=\"armv5-linux\" \
   -c /scratch/crossdev-build/src/gcc-20010122/gcc/toplev.c
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/toplev.c:30:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/diagnostic.c -o diagnostic.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/diagnostic.c:29:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/tree.c -o tree.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/tree.c:37:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 /scratch/crossdev-build/src/gcc-20010122/gcc/tree.c: In function
 `perm_calloc':
 /scratch/crossdev-build/src/gcc-20010122/gcc/tree.c:246: warning: `long'
 switch expression not converted to `int' in ANSI C
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/print-tree.c -o print-tree.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/print-tree.c:24:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/stor-layout.c -o
 stor-layout.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/stor-layout.c:24:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 /scratch/crossdev-build/src/gcc-20010122/gcc/stor-layout.c: In function
 `start_record_layout':
 /scratch/crossdev-build/src/gcc-20010122/gcc/stor-layout.c:435: warning:
 comparison between signed and unsigned
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/fold-const.c -o fold-const.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/fold-const.c:46:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 /scratch/crossdev-build/src/gcc-20010122/gcc/fold-const.c: In function
 `div_and_round_double':
 /scratch/crossdev-build/src/gcc-20010122/gcc/fold-const.c:679: warning:
 comparison between signed and unsigned
 /scratch/crossdev-build/src/gcc-20010122/gcc/fold-const.c: In function
 `optimize_bit_field_compare':
 /scratch/crossdev-build/src/gcc-20010122/gcc/fold-const.c:2930: warning:
 comparison between signed and unsigned
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H -DGENERATOR_FILE    -I. -I. -I/scratch/crossdev-build/src/gcc-20
 010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/cross
 dev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/gcc-2001
 0122/gcc/../include /scratch/crossdev-build/src/gcc-20010122/gcc/genflags.c
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/genflags.c:26:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-pro
 totypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHAVE_
 CONFIG_H -DGENERATOR_FILE  -o genflags \
  genflags.o rtl.o bitmap.o ggc-none.o gensupport.o hashtab.o safe-ctype.o
 print-rtl.o errors.o ` case "obstack.o" in ?*) echo obstack.o ;; esac ` `
 case "" in ?*) echo  ;; esac ` ` case "" in ?*) echo  ;; esac ` ` case "" in
 ?*) echo  ;; esac ` ` case "" in ?*) echo  ;; esac ` ` case "" in ?*) echo
 ;; esac `
 ./genflags /scratch/crossdev-build/src/gcc-20010122/gcc/config/arm/arm.md >
 tmp-flags.h
 /bin/sh /scratch/crossdev-build/src/gcc-20010122/gcc/move-if-change
 tmp-flags.h insn-flags.h
 touch s-flags
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/function.c -o function.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/function.c:42:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 /scratch/crossdev-build/src/gcc-20010122/gcc/function.c: In function
 `fixup_stack_1':
 /scratch/crossdev-build/src/gcc-20010122/gcc/function.c:2613: warning:
 comparison between signed and unsigned
 /scratch/crossdev-build/src/gcc-20010122/gcc/function.c: In function
 `instantiate_decls':
 /scratch/crossdev-build/src/gcc-20010122/gcc/function.c:3589: warning:
 comparison between signed and unsigned
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/stmt.c -o stmt.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/stmt.c:37:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 /scratch/crossdev-build/src/gcc-20010122/gcc/stmt.c: In function
 `expand_end_case':
 /scratch/crossdev-build/src/gcc-20010122/gcc/stmt.c:5438: warning:
 comparison between signed and unsigned
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/except.c -o except.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/except.c:395:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 /scratch/crossdev-build/src/gcc-20010122/gcc/except.c: In function
 `eh_outer_context':
 /scratch/crossdev-build/src/gcc-20010122/gcc/except.c:1102: warning: integer
 constant is unsigned in ANSI C, signed with -traditional
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/expr.c -o expr.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/expr.c:23:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 /scratch/crossdev-build/src/gcc-20010122/gcc/expr.c: In function
 `store_constructor':
 /scratch/crossdev-build/src/gcc-20010122/gcc/expr.c:4573: warning: `minelt'
 might be used uninitialized in this function
 /scratch/crossdev-build/src/gcc-20010122/gcc/expr.c:4574: warning: `maxelt'
 might be used uninitialized in this function
 /scratch/crossdev-build/src/gcc-20010122/gcc/expr.c: In function
 `store_field':
 /scratch/crossdev-build/src/gcc-20010122/gcc/expr.c:5103: warning:
 comparison between signed and unsigned
 /scratch/crossdev-build/src/gcc-20010122/gcc/expr.c: In function
 `expand_expr':
 /scratch/crossdev-build/src/gcc-20010122/gcc/expr.c:7048: warning:
 comparison between signed and unsigned
 /scratch/crossdev-build/src/gcc-20010122/gcc/expr.c: In function
 `expand_expr_unaligned':
 /scratch/crossdev-build/src/gcc-20010122/gcc/expr.c:8990: warning:
 comparison between signed and unsigned
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/calls.c -o calls.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/calls.c:23:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/expmed.c -o expmed.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/expmed.c:25:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 /scratch/crossdev-build/src/gcc-20010122/gcc/expmed.c: In function
 `expand_shift':
 /scratch/crossdev-build/src/gcc-20010122/gcc/expmed.c:1991: warning:
 comparison between signed and unsigned
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/explow.c -o explow.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/explow.c:24:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 /scratch/crossdev-build/src/gcc-20010122/gcc/explow.c: In function
 `copy_all_regs':
 /scratch/crossdev-build/src/gcc-20010122/gcc/explow.c:452: warning:
 comparison between signed and unsigned
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/optabs.c -o optabs.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/optabs.c:24:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/real.c -o real.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/real.c:25:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/builtins.c -o builtins.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/builtins.c:23:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 /scratch/crossdev-build/src/gcc-20010122/gcc/builtins.c: In function
 `get_pointer_alignment':
 /scratch/crossdev-build/src/gcc-20010122/gcc/builtins.c:212: warning:
 comparison between signed and unsigned
 gcc -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-pro
 totypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHAVE_
 CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc-20
 010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../include
 \
   -DLOCALEDIR=\"/scratch/crossdev/armv5-linux/share/locale\" \
   -c /scratch/crossdev-build/src/gcc-20010122/gcc/intl.c
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/varasm.c -o varasm.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/varasm.c:31:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 /scratch/crossdev-build/src/gcc-20010122/gcc/varasm.c: In function
 `assemble_start_function':
 /scratch/crossdev-build/src/gcc-20010122/gcc/varasm.c:933: warning:
 assignment discards `const' from pointer target type
 /scratch/crossdev-build/src/gcc-20010122/gcc/varasm.c:933: warning:
 assignment discards `const' from pointer target type
 /scratch/crossdev-build/src/gcc-20010122/gcc/varasm.c:933: warning:
 assignment discards `const' from pointer target type
 /scratch/crossdev-build/src/gcc-20010122/gcc/varasm.c:933: warning:
 assignment discards `const' from pointer target type
 /scratch/crossdev-build/src/gcc-20010122/gcc/varasm.c:933: warning:
 assignment discards `const' from pointer target type
 /scratch/crossdev-build/src/gcc-20010122/gcc/varasm.c:933: warning:
 assignment discards `const' from pointer target type
 /scratch/crossdev-build/src/gcc-20010122/gcc/varasm.c:933: warning:
 assignment discards `const' from pointer target type
 /scratch/crossdev-build/src/gcc-20010122/gcc/varasm.c:933: warning:
 assignment discards `const' from pointer target type
 /scratch/crossdev-build/src/gcc-20010122/gcc/varasm.c: In function
 `asm_emit_uninitialised':
 /scratch/crossdev-build/src/gcc-20010122/gcc/varasm.c:1207: warning:
 assignment discards `const' from pointer target type
 /scratch/crossdev-build/src/gcc-20010122/gcc/varasm.c:1207: warning:
 assignment discards `const' from pointer target type
 /scratch/crossdev-build/src/gcc-20010122/gcc/varasm.c:1207: warning:
 assignment discards `const' from pointer target type
 /scratch/crossdev-build/src/gcc-20010122/gcc/varasm.c:1207: warning:
 assignment discards `const' from pointer target type
 /scratch/crossdev-build/src/gcc-20010122/gcc/varasm.c:1207: warning:
 assignment discards `const' from pointer target type
 /scratch/crossdev-build/src/gcc-20010122/gcc/varasm.c:1207: warning:
 assignment discards `const' from pointer target type
 /scratch/crossdev-build/src/gcc-20010122/gcc/varasm.c:1207: warning:
 assignment discards `const' from pointer target type
 /scratch/crossdev-build/src/gcc-20010122/gcc/varasm.c:1207: warning:
 assignment discards `const' from pointer target type
 /scratch/crossdev-build/src/gcc-20010122/gcc/varasm.c: In function
 `assemble_variable':
 /scratch/crossdev-build/src/gcc-20010122/gcc/varasm.c:1394: warning:
 comparison between signed and unsigned
 /scratch/crossdev-build/src/gcc-20010122/gcc/varasm.c:1503: warning:
 assignment discards `const' from pointer target type
 /scratch/crossdev-build/src/gcc-20010122/gcc/varasm.c:1503: warning:
 assignment discards `const' from pointer target type
 /scratch/crossdev-build/src/gcc-20010122/gcc/varasm.c:1503: warning:
 assignment discards `const' from pointer target type
 /scratch/crossdev-build/src/gcc-20010122/gcc/varasm.c:1503: warning:
 assignment discards `const' from pointer target type
 /scratch/crossdev-build/src/gcc-20010122/gcc/varasm.c:1503: warning:
 assignment discards `const' from pointer target type
 /scratch/crossdev-build/src/gcc-20010122/gcc/varasm.c:1503: warning:
 assignment discards `const' from pointer target type
 /scratch/crossdev-build/src/gcc-20010122/gcc/varasm.c:1503: warning:
 assignment discards `const' from pointer target type
 /scratch/crossdev-build/src/gcc-20010122/gcc/varasm.c:1503: warning:
 assignment discards `const' from pointer target type
 /scratch/crossdev-build/src/gcc-20010122/gcc/varasm.c: In function
 `assemble_alias':
 /scratch/crossdev-build/src/gcc-20010122/gcc/varasm.c:4838: warning:
 initialization discards `const' from pointer target type
 /scratch/crossdev-build/src/gcc-20010122/gcc/varasm.c:4838: warning:
 initialization discards `const' from pointer target type
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/rtlanal.c -o rtlanal.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/rtlanal.c:24:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/emit-rtl.c -o emit-rtl.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/emit-rtl.c:39:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 /scratch/crossdev-build/src/gcc-20010122/gcc/emit-rtl.c: In function
 `operand_subword':
 /scratch/crossdev-build/src/gcc-20010122/gcc/emit-rtl.c:1368: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/gcc/emit-rtl.c:1368: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/gcc/emit-rtl.c:1368: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/gcc/emit-rtl.c:1405: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/gcc/emit-rtl.c:1405: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/gcc/emit-rtl.c:1405: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/gcc/emit-rtl.c:1458: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/gcc/emit-rtl.c:1458: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/gcc/emit-rtl.c:1458: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de genrtl.c -o genrtl.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from genrtl.c:4:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/dbxout.c -o dbxout.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/dbxout.c:72:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 /scratch/crossdev-build/src/gcc-20010122/gcc/dbxout.c: In function
 `dbxout_symbol_location':
 /scratch/crossdev-build/src/gcc-20010122/gcc/dbxout.c:2093: warning:
 comparison between signed and unsigned
 /scratch/crossdev-build/src/gcc-20010122/gcc/dbxout.c: In function
 `dbxout_parms':
 /scratch/crossdev-build/src/gcc-20010122/gcc/dbxout.c:2422: warning:
 comparison between signed and unsigned
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/sdbout.c -o sdbout.o
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/dwarfout.c -o dwarfout.o
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/dwarf2out.c -o dwarf2out.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/dwarf2out.c:39:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 /scratch/crossdev-build/src/gcc-20010122/gcc/dwarf2out.c: In function
 `dwarf2out_frame_debug_expr':
 /scratch/crossdev-build/src/gcc-20010122/gcc/dwarf2out.c:1487: warning:
 comparison between signed and unsigned
 /scratch/crossdev-build/src/gcc-20010122/gcc/dwarf2out.c: In function
 `output_call_frame_info':
 /scratch/crossdev-build/src/gcc-20010122/gcc/dwarf2out.c:1874: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/gcc/dwarf2out.c:1882: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/gcc/dwarf2out.c: In function
 `build_abbrev_table':
 /scratch/crossdev-build/src/gcc-20010122/gcc/dwarf2out.c:5533: warning:
 `long' switch expression not converted to `int' in ANSI C
 /scratch/crossdev-build/src/gcc-20010122/gcc/dwarf2out.c: In function
 `int_loc_descriptor':
 /scratch/crossdev-build/src/gcc-20010122/gcc/dwarf2out.c:7530: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/gcc/dwarf2out.c:7542: warning:
 integer constant is unsigned in ANSI C, signed with -traditional
 /scratch/crossdev-build/src/gcc-20010122/gcc/dwarf2out.c: In function
 `rtl_for_decl_location':
 /scratch/crossdev-build/src/gcc-20010122/gcc/dwarf2out.c:8565: warning:
 comparison between signed and unsigned
 /scratch/crossdev-build/src/gcc-20010122/gcc/dwarf2out.c: In function
 `dwarf2out_begin_block':
 /scratch/crossdev-build/src/gcc-20010122/gcc/dwarf2out.c:11274: warning:
 comparison between signed and unsigned
 /scratch/crossdev-build/src/gcc-20010122/gcc/dwarf2out.c: In function
 `dwarf2out_end_block':
 /scratch/crossdev-build/src/gcc-20010122/gcc/dwarf2out.c:11285: warning:
 comparison between signed and unsigned
 /scratch/crossdev-build/src/gcc-20010122/gcc/dwarf2out.c: In function
 `dwarf2out_line':
 /scratch/crossdev-build/src/gcc-20010122/gcc/dwarf2out.c:11399: warning:
 comparison between signed and unsigned
 /scratch/crossdev-build/src/gcc-20010122/gcc/dwarf2out.c:11418: warning:
 comparison between signed and unsigned
 /scratch/crossdev-build/src/gcc-20010122/gcc/dwarf2out.c:11447: warning:
 comparison between signed and unsigned
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/xcoffout.c -o xcoffout.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/xcoffout.c:28:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/alias.c -o alias.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/alias.c:23:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 /scratch/crossdev-build/src/gcc-20010122/gcc/alias.c: In function
 `base_alias_check':
 /scratch/crossdev-build/src/gcc-20010122/gcc/alias.c:1275: warning:
 comparison between signed and unsigned
 /scratch/crossdev-build/src/gcc-20010122/gcc/alias.c:1279: warning:
 comparison between signed and unsigned
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/gcse.c -o gcse.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/gcse.c:147:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 /scratch/crossdev-build/src/gcc-20010122/gcc/gcse.c: In function
 `compute_hash_table':
 /scratch/crossdev-build/src/gcc-20010122/gcc/gcse.c:2209: warning:
 comparison between signed and unsigned
 /scratch/crossdev-build/src/gcc-20010122/gcc/gcse.c:2212: warning:
 comparison between signed and unsigned
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/integrate.c -o integrate.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/integrate.c:24:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/jump.c -o jump.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/jump.c:55:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 /scratch/crossdev-build/src/gcc-20010122/gcc/jump.c: In function
 `jump_optimize_1':
 /scratch/crossdev-build/src/gcc-20010122/gcc/jump.c:210: warning: unused
 variable `reversed_code'
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/cse.c -o cse.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from /scratch/crossdev-build/src/gcc-20010122/gcc/cse.c:24:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 /scratch/crossdev-build/src/gcc-20010122/gcc/cse.c: In function
 `make_regs_eqv':
 /scratch/crossdev-build/src/gcc-20010122/gcc/cse.c:1092: warning: comparison
 between signed and unsigned
 /scratch/crossdev-build/src/gcc-20010122/gcc/cse.c:1098: warning: comparison
 between signed and unsigned
 /scratch/crossdev-build/src/gcc-20010122/gcc/cse.c:1119: warning: comparison
 between signed and unsigned
 /scratch/crossdev-build/src/gcc-20010122/gcc/cse.c: In function
 `canon_hash':
 /scratch/crossdev-build/src/gcc-20010122/gcc/cse.c:2282: warning: comparison
 between signed and unsigned
 /scratch/crossdev-build/src/gcc-20010122/gcc/cse.c: In function `fold_rtx':
 /scratch/crossdev-build/src/gcc-20010122/gcc/cse.c:3509: warning: comparison
 between signed and unsigned
 /scratch/crossdev-build/src/gcc-20010122/gcc/cse.c:3511: warning: comparison
 between signed and unsigned
 /scratch/crossdev-build/src/gcc-20010122/gcc/cse.c:3624: warning: comparison
 between signed and unsigned
 /scratch/crossdev-build/src/gcc-20010122/gcc/cse.c:3644: warning: comparison
 between signed and unsigned
 /scratch/crossdev-build/src/gcc-20010122/gcc/cse.c:3655: warning: comparison
 between signed and unsigned
 /scratch/crossdev-build/src/gcc-20010122/gcc/cse.c:4261: warning: comparison
 between signed and unsigned
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/loop.c -o loop.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/loop.c:38:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 /scratch/crossdev-build/src/gcc-20010122/gcc/loop.c: In function
 `loop_giv_reduce_benefit':
 /scratch/crossdev-build/src/gcc-20010122/gcc/loop.c:4138: warning:
 comparison between signed and unsigned
 /scratch/crossdev-build/src/gcc-20010122/gcc/loop.c:4141: warning:
 comparison between signed and unsigned
 /scratch/crossdev-build/src/gcc-20010122/gcc/loop.c:4144: warning:
 comparison between signed and unsigned
 /scratch/crossdev-build/src/gcc-20010122/gcc/loop.c:4147: warning:
 comparison between signed and unsigned
 /scratch/crossdev-build/src/gcc-20010122/gcc/loop.c: In function
 `check_ext_dependant_givs':
 /scratch/crossdev-build/src/gcc-20010122/gcc/loop.c:6484: warning:
 `u_end_val' might be used uninitialized in this function
 /scratch/crossdev-build/src/gcc-20010122/gcc/loop.c:6484: warning:
 `u_start_val' might be used uninitialized in this function
 /scratch/crossdev-build/src/gcc-20010122/gcc/loop.c: In function
 `load_mems':
 /scratch/crossdev-build/src/gcc-20010122/gcc/loop.c:8984: warning:
 comparison between signed and unsigned
 /scratch/crossdev-build/src/gcc-20010122/gcc/loop.c:8998: warning:
 comparison between signed and unsigned
 /scratch/crossdev-build/src/gcc-20010122/gcc/loop.c: In function
 `try_swap_copy_prop':
 /scratch/crossdev-build/src/gcc-20010122/gcc/loop.c:9248: warning: `set'
 might be used uninitialized in this function
 /scratch/crossdev-build/src/gcc-20010122/gcc/loop.c: At top level:
 /scratch/crossdev-build/src/gcc-20010122/gcc/loop.c:9449: warning:
 `loop_insn_emit_after' defined but not used
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/doloop.c -o doloop.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/doloop.c:23:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/unroll.c -o unroll.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/unroll.c:156:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/flow.c -o flow.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/flow.c:122:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 /scratch/crossdev-build/src/gcc-20010122/gcc/flow.c: In function
 `try_pre_increment':
 /scratch/crossdev-build/src/gcc-20010122/gcc/flow.c:6185: warning:
 comparison between signed and unsigned
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/combine.c -o combine.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/combine.c:78:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 /scratch/crossdev-build/src/gcc-20010122/gcc/combine.c: In function
 `setup_incoming_promotions':
 /scratch/crossdev-build/src/gcc-20010122/gcc/combine.c:818: warning:
 unsigned value >= 0 is always 1
 /scratch/crossdev-build/src/gcc-20010122/gcc/combine.c: In function
 `sets_function_arg_p':
 /scratch/crossdev-build/src/gcc-20010122/gcc/combine.c:1244: warning:
 unsigned value >= 0 is always 1
 /scratch/crossdev-build/src/gcc-20010122/gcc/combine.c: In function
 `combinable_i3pat':
 /scratch/crossdev-build/src/gcc-20010122/gcc/combine.c:1378: warning:
 comparison between signed and unsigned
 /scratch/crossdev-build/src/gcc-20010122/gcc/combine.c: In function
 `find_split_point':
 /scratch/crossdev-build/src/gcc-20010122/gcc/combine.c:2970: warning:
 comparison between signed and unsigned
 /scratch/crossdev-build/src/gcc-20010122/gcc/combine.c: In function
 `combine_simplify_rtx':
 /scratch/crossdev-build/src/gcc-20010122/gcc/combine.c:3812: warning:
 comparison between signed and unsigned
 /scratch/crossdev-build/src/gcc-20010122/gcc/combine.c:4014: warning:
 comparison between signed and unsigned
 /scratch/crossdev-build/src/gcc-20010122/gcc/combine.c: In function
 `simplify_logical':
 /scratch/crossdev-build/src/gcc-20010122/gcc/combine.c:5454: warning:
 comparison between signed and unsigned
 /scratch/crossdev-build/src/gcc-20010122/gcc/combine.c:5548: warning:
 comparison between signed and unsigned
 /scratch/crossdev-build/src/gcc-20010122/gcc/combine.c: In function
 `expand_field_assignment':
 /scratch/crossdev-build/src/gcc-20010122/gcc/combine.c:5803: warning:
 comparison between signed and unsigned
 /scratch/crossdev-build/src/gcc-20010122/gcc/combine.c:5814: warning:
 comparison between signed and unsigned
 /scratch/crossdev-build/src/gcc-20010122/gcc/combine.c: In function
 `force_to_mode':
 /scratch/crossdev-build/src/gcc-20010122/gcc/combine.c:6967: warning:
 comparison between signed and unsigned
 /scratch/crossdev-build/src/gcc-20010122/gcc/combine.c:7012: warning:
 comparison between signed and unsigned
 /scratch/crossdev-build/src/gcc-20010122/gcc/combine.c:7024: warning:
 comparison between signed and unsigned
 /scratch/crossdev-build/src/gcc-20010122/gcc/combine.c:7080: warning:
 comparison between signed and unsigned
 /scratch/crossdev-build/src/gcc-20010122/gcc/combine.c:7163: warning:
 comparison between signed and unsigned
 /scratch/crossdev-build/src/gcc-20010122/gcc/combine.c:7212: warning:
 comparison between signed and unsigned
 /scratch/crossdev-build/src/gcc-20010122/gcc/combine.c: In function
 `num_sign_bit_copies':
 /scratch/crossdev-build/src/gcc-20010122/gcc/combine.c:8569: warning:
 comparison between signed and unsigned
 /scratch/crossdev-build/src/gcc-20010122/gcc/combine.c:8688: warning:
 comparison between signed and unsigned
 /scratch/crossdev-build/src/gcc-20010122/gcc/combine.c:8696: warning:
 comparison between signed and unsigned
 /scratch/crossdev-build/src/gcc-20010122/gcc/combine.c: In function
 `simplify_shift_const':
 /scratch/crossdev-build/src/gcc-20010122/gcc/combine.c:9173: warning:
 comparison between signed and unsigned
 /scratch/crossdev-build/src/gcc-20010122/gcc/combine.c:9513: warning:
 comparison between signed and unsigned
 /scratch/crossdev-build/src/gcc-20010122/gcc/combine.c:9534: warning:
 comparison between signed and unsigned
 /scratch/crossdev-build/src/gcc-20010122/gcc/combine.c:9577: warning:
 comparison between signed and unsigned
 /scratch/crossdev-build/src/gcc-20010122/gcc/combine.c: In function
 `recog_for_combine':
 /scratch/crossdev-build/src/gcc-20010122/gcc/combine.c:9709: warning:
 pointer targets in passing arg 1 of `do_SUBST_INT' differ in signedness
 /scratch/crossdev-build/src/gcc-20010122/gcc/combine.c: In function
 `simplify_comparison':
 /scratch/crossdev-build/src/gcc-20010122/gcc/combine.c:10666: warning:
 comparison between signed and unsigned
 /scratch/crossdev-build/src/gcc-20010122/gcc/combine.c:10923: warning:
 comparison between signed and unsigned
 /scratch/crossdev-build/src/gcc-20010122/gcc/combine.c:10999: warning:
 comparison between signed and unsigned
 /scratch/crossdev-build/src/gcc-20010122/gcc/combine.c:11012: warning:
 comparison between signed and unsigned
 /scratch/crossdev-build/src/gcc-20010122/gcc/combine.c: In function
 `mark_used_regs_combine':
 /scratch/crossdev-build/src/gcc-20010122/gcc/combine.c:11812: warning:
 comparison between signed and unsigned
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/varray.c -o varray.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/varray.c:23:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/regclass.c -o regclass.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/regclass.c:28:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/regmove.c -o regmove.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/regmove.c:29:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 /scratch/crossdev-build/src/gcc-20010122/gcc/regmove.c: In function
 `replace_in_call_usage':
 /scratch/crossdev-build/src/gcc-20010122/gcc/regmove.c:1596: warning:
 comparison between signed and unsigned
 /scratch/crossdev-build/src/gcc-20010122/gcc/regmove.c: In function
 `fixup_match_1':
 /scratch/crossdev-build/src/gcc-20010122/gcc/regmove.c:1633: warning:
 `newconst' might be used uninitialized in this function
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/local-alloc.c -o
 local-alloc.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/local-alloc.c:63:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/global.c -o global.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/global.c:24:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/reload.c -o reload.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/reload.c:90:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 /scratch/crossdev-build/src/gcc-20010122/gcc/reload.c: In function
 `update_auto_inc_notes':
 /scratch/crossdev-build/src/gcc-20010122/gcc/reload.c:5020: warning:
 comparison between signed and unsigned
 /scratch/crossdev-build/src/gcc-20010122/gcc/reload.c: In function
 `regno_clobbered_p':
 /scratch/crossdev-build/src/gcc-20010122/gcc/reload.c:6618: warning:
 comparison between signed and unsigned
 /scratch/crossdev-build/src/gcc-20010122/gcc/reload.c:6634: warning:
 comparison between signed and unsigned
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/reload1.c -o reload1.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/reload1.c:23:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 /scratch/crossdev-build/src/gcc-20010122/gcc/reload1.c: In function
 `replace_pseudos_in_call_usage':
 /scratch/crossdev-build/src/gcc-20010122/gcc/reload1.c:624: warning:
 comparison between signed and unsigned
 /scratch/crossdev-build/src/gcc-20010122/gcc/reload1.c: In function
 `reload_as_needed':
 /scratch/crossdev-build/src/gcc-20010122/gcc/reload1.c:3960: warning:
 comparison between signed and unsigned
 /scratch/crossdev-build/src/gcc-20010122/gcc/reload1.c:4027: warning:
 comparison between signed and unsigned
 /scratch/crossdev-build/src/gcc-20010122/gcc/reload1.c:3816: warning: `prev'
 might be used uninitialized in this function
 /scratch/crossdev-build/src/gcc-20010122/gcc/reload1.c: In function
 `choose_reload_regs':
 /scratch/crossdev-build/src/gcc-20010122/gcc/reload1.c:5472: warning:
 comparison between signed and unsigned
 /scratch/crossdev-build/src/gcc-20010122/gcc/reload1.c: In function
 `emit_input_reload_insns':
 /scratch/crossdev-build/src/gcc-20010122/gcc/reload1.c:6188: warning:
 comparison between signed and unsigned
 /scratch/crossdev-build/src/gcc-20010122/gcc/reload1.c:6190: warning:
 comparison between signed and unsigned
 /scratch/crossdev-build/src/gcc-20010122/gcc/reload1.c: In function
 `reload_combine':
 /scratch/crossdev-build/src/gcc-20010122/gcc/reload1.c:8737: warning:
 comparison between signed and unsigned
 /scratch/crossdev-build/src/gcc-20010122/gcc/reload1.c:8501: warning:
 `last_index_reg' might be used uninitialized in this function
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/caller-save.c -o
 caller-save.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/caller-save.c:23:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H -DGENERATOR_FILE    -I. -I. -I/scratch/crossdev-build/src/gcc-20
 010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/cross
 dev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/gcc-2001
 0122/gcc/../include /scratch/crossdev-build/src/gcc-20010122/gcc/genpeep.c
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/genpeep.c:24:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-pro
 totypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHAVE_
 CONFIG_H -DGENERATOR_FILE  -o genpeep \
  genpeep.o rtl.o bitmap.o ggc-none.o gensupport.o hashtab.o safe-ctype.o
 print-rtl.o errors.o ` case "obstack.o" in ?*) echo obstack.o ;; esac ` `
 case "" in ?*) echo  ;; esac ` ` case "" in ?*) echo  ;; esac ` ` case "" in
 ?*) echo  ;; esac ` ` case "" in ?*) echo  ;; esac ` ` case "" in ?*) echo
 ;; esac `
 ./genpeep /scratch/crossdev-build/src/gcc-20010122/gcc/config/arm/arm.md >
 tmp-peep.c
 /bin/sh /scratch/crossdev-build/src/gcc-20010122/gcc/move-if-change
 tmp-peep.c insn-peep.c
 touch s-peep
 gcc -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-pro
 totypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHAVE_
 CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc-20
 010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../include 
 -c insn-peep.c
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from insn-peep.c:5:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/reorg.c -o reorg.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/reorg.c:124:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/haifa-sched.c -o
 haifa-sched.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/haifa-sched.c:136:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/final.c -o final.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/final.c:48:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 /scratch/crossdev-build/src/gcc-20010122/gcc/final.c: In function `final':
 /scratch/crossdev-build/src/gcc-20010122/gcc/final.c:2025: warning:
 comparison between signed and unsigned
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/recog.c -o recog.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/recog.c:24:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/reg-stack.c -o reg-stack.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/reg-stack.c:155:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/regrename.c -o regrename.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/regrename.c:24:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H -DGENERATOR_FILE    -I. -I. -I/scratch/crossdev-build/src/gcc-20
 010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/cross
 dev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/gcc-2001
 0122/gcc/../include /scratch/crossdev-build/src/gcc-20010122/gcc/genopinit.c
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/genopinit.c:24:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-pro
 totypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHAVE_
 CONFIG_H -DGENERATOR_FILE  -o genopinit \
  genopinit.o rtl.o bitmap.o ggc-none.o gensupport.o hashtab.o safe-ctype.o
 print-rtl.o errors.o ` case "obstack.o" in ?*) echo obstack.o ;; esac ` `
 case "" in ?*) echo  ;; esac ` ` case "" in ?*) echo  ;; esac ` ` case "" in
 ?*) echo  ;; esac ` ` case "" in ?*) echo  ;; esac ` ` case "" in ?*) echo
 ;; esac `
 ./genopinit /scratch/crossdev-build/src/gcc-20010122/gcc/config/arm/arm.md >
 tmp-opinit.c
 /bin/sh /scratch/crossdev-build/src/gcc-20010122/gcc/move-if-change
 tmp-opinit.c insn-opinit.c
 touch s-opinit
 gcc -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-pro
 totypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHAVE_
 CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc-20
 010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../include 
 -c insn-opinit.c
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from insn-opinit.c:5:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H -DGENERATOR_FILE    -I. -I. -I/scratch/crossdev-build/src/gcc-20
 010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/cross
 dev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/gcc-2001
 0122/gcc/../include /scratch/crossdev-build/src/gcc-20010122/gcc/genrecog.c
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/genrecog.c:54:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-pro
 totypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHAVE_
 CONFIG_H -DGENERATOR_FILE  -o genrecog \
  genrecog.o rtl.o bitmap.o ggc-none.o gensupport.o hashtab.o safe-ctype.o
 print-rtl.o errors.o ` case "obstack.o" in ?*) echo obstack.o ;; esac ` `
 case "" in ?*) echo  ;; esac ` ` case "" in ?*) echo  ;; esac ` ` case "" in
 ?*) echo  ;; esac ` ` case "" in ?*) echo  ;; esac ` ` case "" in ?*) echo
 ;; esac `
 ./genrecog /scratch/crossdev-build/src/gcc-20010122/gcc/config/arm/arm.md >
 tmp-recog.c
 /bin/sh /scratch/crossdev-build/src/gcc-20010122/gcc/move-if-change
 tmp-recog.c insn-recog.c
 touch s-recog
 gcc -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-pro
 totypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHAVE_
 CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc-20
 010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../include 
 -c insn-recog.c
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from insn-recog.c:5:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 insn-recog.c: In function `recog_3':
 insn-recog.c:3043: warning: label `L6025' defined but not used
 insn-recog.c: In function `recog_7':
 insn-recog.c:11004: warning: label `L2447' defined but not used
 insn-recog.c: In function `recog_10':
 insn-recog.c:14361: warning: label `L1556' defined but not used
 insn-recog.c:14300: warning: label `L1542' defined but not used
 insn-recog.c: In function `recog_13':
 insn-recog.c:19821: warning: label `L2278' defined but not used
 insn-recog.c:18973: warning: label `L1643' defined but not used
 insn-recog.c:18926: warning: label `L1618' defined but not used
 insn-recog.c:18887: warning: label `L1610' defined but not used
 insn-recog.c:18351: warning: label `L1655' defined but not used
 insn-recog.c:18343: warning: label `L1651' defined but not used
 insn-recog.c:18006: warning: label `L150' defined but not used
 insn-recog.c: In function `recog_15':
 insn-recog.c:24144: warning: label `L5116' defined but not used
 insn-recog.c:23497: warning: label `L5158' defined but not used
 insn-recog.c: In function `split_insns':
 insn-recog.c:30808: warning: label `L4021' defined but not used
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H -DGENERATOR_FILE    -I. -I. -I/scratch/crossdev-build/src/gcc-20
 010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/cross
 dev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/gcc-2001
 0122/gcc/../include
 /scratch/crossdev-build/src/gcc-20010122/gcc/genextract.c
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/genextract.c:24:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-pro
 totypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHAVE_
 CONFIG_H -DGENERATOR_FILE  -o genextract \
  genextract.o rtl.o bitmap.o ggc-none.o gensupport.o hashtab.o safe-ctype.o
 print-rtl.o errors.o ` case "obstack.o" in ?*) echo obstack.o ;; esac ` `
 case "" in ?*) echo  ;; esac ` ` case "" in ?*) echo  ;; esac ` ` case "" in
 ?*) echo  ;; esac ` ` case "" in ?*) echo  ;; esac ` ` case "" in ?*) echo
 ;; esac `
 ./genextract /scratch/crossdev-build/src/gcc-20010122/gcc/config/arm/arm.md
 > tmp-extract.c
 /bin/sh /scratch/crossdev-build/src/gcc-20010122/gcc/move-if-change
 tmp-extract.c insn-extract.c
 touch s-extract
 gcc -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-pro
 totypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHAVE_
 CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc-20
 010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../include 
 -c insn-extract.c
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from insn-extract.c:5:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H -DGENERATOR_FILE    -I. -I. -I/scratch/crossdev-build/src/gcc-20
 010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/cross
 dev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/gcc-2001
 0122/gcc/../include /scratch/crossdev-build/src/gcc-20010122/gcc/genoutput.c
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/genoutput.c:89:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-pro
 totypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHAVE_
 CONFIG_H -DGENERATOR_FILE  -o genoutput \
  genoutput.o rtl.o bitmap.o ggc-none.o gensupport.o hashtab.o safe-ctype.o
 print-rtl.o errors.o ` case "obstack.o" in ?*) echo obstack.o ;; esac ` `
 case "" in ?*) echo  ;; esac ` ` case "" in ?*) echo  ;; esac ` ` case "" in
 ?*) echo  ;; esac ` ` case "" in ?*) echo  ;; esac ` ` case "" in ?*) echo
 ;; esac `
 ./genoutput /scratch/crossdev-build/src/gcc-20010122/gcc/config/arm/arm.md >
 tmp-output.c
 /bin/sh /scratch/crossdev-build/src/gcc-20010122/gcc/move-if-change
 tmp-output.c insn-output.c
 touch s-output
 gcc -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-pro
 totypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHAVE_
 CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc-20
 010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../include 
 -c insn-output.c
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from insn-output.c:5:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H -DGENERATOR_FILE    -I. -I. -I/scratch/crossdev-build/src/gcc-20
 010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/cross
 dev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/gcc-2001
 0122/gcc/../include /scratch/crossdev-build/src/gcc-20010122/gcc/genemit.c
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/genemit.c:24:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-pro
 totypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHAVE_
 CONFIG_H -DGENERATOR_FILE  -o genemit \
  genemit.o rtl.o bitmap.o ggc-none.o gensupport.o hashtab.o safe-ctype.o
 print-rtl.o errors.o ` case "obstack.o" in ?*) echo obstack.o ;; esac ` `
 case "" in ?*) echo  ;; esac ` ` case "" in ?*) echo  ;; esac ` ` case "" in
 ?*) echo  ;; esac ` ` case "" in ?*) echo  ;; esac ` ` case "" in ?*) echo
 ;; esac `
 ./genemit /scratch/crossdev-build/src/gcc-20010122/gcc/config/arm/arm.md >
 tmp-emit.c
 /bin/sh /scratch/crossdev-build/src/gcc-20010122/gcc/move-if-change
 tmp-emit.c insn-emit.c
 touch s-emit
 gcc -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-pro
 totypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHAVE_
 CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc-20
 010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../include 
 -c insn-emit.c
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from insn-emit.c:5:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/lcm.c -o lcm.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from /scratch/crossdev-build/src/gcc-20010122/gcc/lcm.c:53:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/profile.c -o profile.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/profile.c:37:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H -DGENERATOR_FILE    -I. -I. -I/scratch/crossdev-build/src/gcc-20
 010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/cross
 dev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/gcc-2001
 0122/gcc/../include
 /scratch/crossdev-build/src/gcc-20010122/gcc/genattrtab.c
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/genattrtab.c:99:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-pro
 totypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHAVE_
 CONFIG_H -DGENERATOR_FILE  -o genattrtab \
  genattrtab.o rtl.o bitmap.o ggc-none.o gensupport.o hashtab.o safe-ctype.o
 print-rtl.o errors.o ` case "obstack.o" in ?*) echo obstack.o ;; esac ` `
 case "" in ?*) echo  ;; esac ` ` case "" in ?*) echo  ;; esac ` ` case "" in
 ?*) echo  ;; esac ` ` case "" in ?*) echo  ;; esac ` ` case "" in ?*) echo
 ;; esac `
 ./genattrtab /scratch/crossdev-build/src/gcc-20010122/gcc/config/arm/arm.md
 > tmp-attrtab.c
 /bin/sh /scratch/crossdev-build/src/gcc-20010122/gcc/move-if-change
 tmp-attrtab.c insn-attrtab.c
 touch s-attrtab
 gcc -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-pro
 totypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHAVE_
 CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc-20
 010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../include 
 -c insn-attrtab.c
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from insn-attrtab.c:5:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de \
  /scratch/crossdev-build/src/gcc-20010122/gcc/config/arm/arm.c -o arm.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/config/arm/arm.c:26:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/convert.c -o convert.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/convert.c:27:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 /scratch/crossdev-build/src/gcc-20010122/gcc/convert.c: In function
 `convert_to_complex':
 /scratch/crossdev-build/src/gcc-20010122/gcc/convert.c:407: warning:
 `subtype' might be used uninitialized in this function
 rm -f splay-tree.c
 ln -s /scratch/crossdev-build/src/gcc-20010122/gcc/../libiberty/splay-tree.c
 splay-tree.c
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H -DGENERATOR_FILE    -I. -I. -I/scratch/crossdev-build/src/gcc-20
 010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/cross
 dev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/gcc-2001
 0122/gcc/../include \
  splay-tree.c -o splay-tree.o
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/graph.c -o graph.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/graph.c:23:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/sbitmap.c -o sbitmap.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/sbitmap.c:22:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/resource.c -o resource.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/resource.c:22:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H -DGENERATOR_FILE    -I. -I. -I/scratch/crossdev-build/src/gcc-20
 010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/cross
 dev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/gcc-2001
 0122/gcc/../include /scratch/crossdev-build/src/gcc-20010122/gcc/hash.c -o
 hash.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/hash.c:23:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/predict.c -o predict.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/predict.c:34:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/lists.c -o lists.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/lists.c:23:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/ggc-common.c -o ggc-common.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/ggc-common.c:25:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/ggc-page.c -o ggc-page.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/ggc-page.c:22:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/stringpool.c -o stringpool.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/stringpool.c:33:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/simplify-rtx.c -o
 simplify-rtx.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/simplify-rtx.c:24:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/ssa.c -o ssa.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from /scratch/crossdev-build/src/gcc-20010122/gcc/ssa.c:33:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/bb-reorder.c -o bb-reorder.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/bb-reorder.c:84:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/sibcall.c -o sibcall.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/sibcall.c:22:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/conflict.c -o conflict.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/conflict.c:29:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/timevar.c -o timevar.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/timevar.c:23:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/ifcvt.c -o ifcvt.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/ifcvt.c:22:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/dominance.c -o dominance.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/dominance.c:37:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/dependence.c -o dependence.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/dependence.c:27:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/dce.c -o dce.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from /scratch/crossdev-build/src/gcc-20010122/gcc/dce.c:70:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/sched-vis.c -o sched-vis.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/sched-vis.c:25:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/sched-deps.c -o sched-deps.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/sched-deps.c:26:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 /scratch/crossdev-build/src/gcc-20010122/gcc/sched-deps.c: In function
 `add_dependence':
 /scratch/crossdev-build/src/gcc-20010122/gcc/sched-deps.c:200: warning:
 `present_dep_type' might be used uninitialized in this function
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/sched-rgn.c -o sched-rgn.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/sched-rgn.c:49:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/sched-ebb.c -o sched-ebb.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/sched-ebb.c:25:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 rm -rf libbackend.a
 ar rc libbackend.a diagnostic.o version.o tree.o print-tree.o stor-layout.o
 fold-const.o function.o stmt.o except.o expr.o calls.o expmed.o explow.o
 optabs.o real.o builtins.o intl.o varasm.o rtl.o print-rtl.o rtlanal.o
 emit-rtl.o genrtl.o dbxout.o sdbout.o dwarfout.o dwarf2out.o xcoffout.o
 bitmap.o alias.o gcse.o integrate.o jump.o cse.o loop.o doloop.o unroll.o
 flow.o combine.o varray.o regclass.o regmove.o local-alloc.o global.o
 reload.o reload1.o caller-save.o insn-peep.o reorg.o haifa-sched.o final.o
 recog.o reg-stack.o regrename.o insn-opinit.o insn-recog.o insn-extract.o
 insn-output.o insn-emit.o lcm.o profile.o insn-attrtab.o arm.o  convert.o
 mbchar.o splay-tree.o graph.o sbitmap.o resource.o hash.o predict.o lists.o
 ggc-common.o ggc-page.o stringpool.o simplify-rtx.o ssa.o bb-reorder.o
 sibcall.o conflict.o timevar.o ifcvt.o dominance.o dependence.o dce.o
 sched-vis.o sched-deps.o sched-rgn.o sched-ebb.o hashtab.o
 if [ -f ranlib ] || [ -f /usr/bin/ranlib -o -f /bin/ranlib ] ; then ranlib
 libbackend.a ; else true ; fi
 gcc -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-pro
 totypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHAVE_
 CONFIG_H  -o cc1 \
  c-parse.o c-lang.o c-errors.o c-lex.o c-pragma.o c-decl.o c-typeck.o
 c-convert.o c-aux-info.o c-common.o c-format.o c-semantics.o c-dump.o
 libcpp.a  toplev.o libbackend.a obstack.o         ../libiberty/libiberty.a
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/tradcpp.c -o tradcpp.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/tradcpp.c:23:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 /scratch/crossdev-build/src/gcc-20010122/gcc/tradcpp.c: In function
 `rescan':
 /scratch/crossdev-build/src/gcc-20010122/gcc/tradcpp.c:1170: warning: `c'
 might be used uninitialized in this function
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/tradcif.c -o tradcif.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from tradcif.y:26:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-pro
 totypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHAVE_
 CONFIG_H  -o tradcpp0 \
 tradcpp.o tradcif.o mkdeps.o cppdefault.o version.o intl.o obstack.o
 ../libiberty/libiberty.a
 gcc -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-pro
 totypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHAVE_
 CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc-20
 010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../include
 \
 -DTARGET_MACHINE=\"armv5-linux\"  \
 -c /scratch/crossdev-build/src/gcc-20010122/gcc/collect2.c
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/collect2.c:30:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/tlink.c -o tlink.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/tlink.c:25:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 /bin/sh /scratch/crossdev-build/src/gcc-20010122/gcc/genmultilib \
   "" \
   "" \
   "" \
   "" \
   "" \
   "" > tmp-mlib.h
 /bin/sh /scratch/crossdev-build/src/gcc-20010122/gcc/move-if-change
 tmp-mlib.h multilib.h
 touch s-mlib
 gcc -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-pro
 totypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHAVE_
 CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc-20
 010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../include
 \
   -DSTANDARD_STARTFILE_PREFIX=\"../../../\" -DSTANDARD_EXEC_PREFIX=\"/scratc
 h/crossdev/armv5-linux/lib/gcc-lib/\" -DDEFAULT_TARGET_VERSION=\"2.97\" -DDE
 FAULT_TARGET_MACHINE=\"armv5-linux\" -DSTANDARD_BINDIR_PREFIX=\"/scratch/cro
 ssdev/armv5-linux/bin/\" -DTOOLDIR_BASE_PREFIX=\"../../../../\" `test
 "HLIB_LINK" -a "yes" = "yes" && echo "-DENABLE_SHARED_LIBGCC"` `test
 "HLIB_MULTILIB" && echo "-DNO_SHARED_LIBGCC_MULTILIB"` \
   -c /scratch/crossdev-build/src/gcc-20010122/gcc/gcc.c
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from /scratch/crossdev-build/src/gcc-20010122/gcc/gcc.c:36:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/gccspec.c -o gccspec.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/gccspec.c:22:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-pro
 totypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHAVE_
 CONFIG_H  -o xgcc gcc.o gccspec.o intl.o \
   prefix.o version.o  obstack.o         ../libiberty/libiberty.a
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/cppmain.c -o cppmain.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/cppmain.c:25:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-pro
 totypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHAVE_
 CONFIG_H  -o cpp0 cppmain.o \
 intl.o libcpp.a obstack.o         ../libiberty/libiberty.a
 /scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/xgcc -B/scratch/cro
 ssdev-build/armv5-linux/gcc-20010122-obj/gcc/ -B/scratch/crossdev/armv5-linu
 x/armv5-linux/bin/ -B/scratch/crossdev/armv5-linux/armv5-linux/lib/ -isystem
 /scratch/crossdev/armv5-linux/armv5-linux/include -dumpspecs > tmp-specs
 mv tmp-specs specs
 echo "int xxy_us_dummy;" >tmp-dum.c
 /scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/xgcc -B/scratch/cro
 ssdev-build/armv5-linux/gcc-20010122-obj/gcc/ -B/scratch/crossdev/armv5-linu
 x/armv5-linux/bin/ -B/scratch/crossdev/armv5-linux/armv5-linux/lib/ -isystem
 /scratch/crossdev/armv5-linux/armv5-linux/include -S tmp-dum.c
 echo '/*WARNING: This file is automatically generated!*/' >tmp-under.c
 if grep _xxy_us_dummy tmp-dum.s > /dev/null ; then \
   echo "int prepends_underscore = 1;" >>tmp-under.c; \
 else \
   echo "int prepends_underscore = 0;" >>tmp-under.c; \
 fi
 /bin/sh /scratch/crossdev-build/src/gcc-20010122/gcc/move-if-change
 tmp-under.c underscore.c
 rm -f tmp-dum.c tmp-dum.s
 touch s-under
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de underscore.c -o underscore.o
 rm -f collect2
 gcc -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-pro
 totypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHAVE_
 CONFIG_H  -o collect2 collect2.o tlink.o hash.o intl.o underscore.o
 version.o obstack.o         ../libiberty/libiberty.a
 cp xgcc gcc-cross
 gcc -c -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-
 prototypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHA
 VE_CONFIG_H    -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scr
 atch/crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc
 -20010122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../inclu
 de /scratch/crossdev-build/src/gcc-20010122/gcc/cppspec.c -o cppspec.o
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/cppspec.c:22:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -DCROSS_COMPILE -DIN_GCC    -g -O2 -W -Wall -Wwrite-strings -Wstrict-pro
 totypes -Wmissing-prototypes -Wtraditional -pedantic -Wno-long-long  -DHAVE_
 CONFIG_H  -o cpp gcc.o cppspec.o intl.o \
   prefix.o version.o  obstack.o         ../libiberty/libiberty.a
 if [ -f specs.ready ] ; then \
  true; \
 else \
  touch specs.ready; \
 fi
 (MAKE="make -j1"; srcdir=`cd
 /scratch/crossdev-build/src/gcc-20010122/gcc/fixinc && pwd` ; \
 CC="gcc"; CFLAGS="-g -O2"; LDFLAGS=""; \
 WARN_CFLAGS="-W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototyp
 es -Wtraditional -pedantic -Wno-long-long"; \
 export MAKE srcdir CC CFLAGS LDFLAGS WARN_CFLAGS; cd ./fixinc && \
 /bin/sh ${srcdir}/mkfixinc.sh i686-pc-linux-gnu armv5-unknown-linux-gnu)
 constructing ../fixinc.sh for armv5-unknown-linux-gnu to run on
 i686-pc-linux-gnu
 make -j1 TARGETS=oneprocess SHELL="/bin/sh" CC="gcc" CFLAGS="-g -O2"
 LDFLAGS="" install-bin
 make[2]: Entering directory
 `/scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/fixinc'
 /bin/sh /scratch/crossdev-build/src/gcc-20010122/gcc/fixinc/genfixes
 machname.h
 Forbidden identifiers: linux unix
 gcc -c -DIN_GCC -g -O2  -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissi
 ng-prototypes -Wtraditional -pedantic -Wno-long-long -I. -I.. -I/scratch/cro
 ssdev-build/src/gcc-20010122/gcc/fixinc -I/scratch/crossdev-build/src/gcc-20
 010122/gcc/fixinc/.. -I/scratch/crossdev-build/src/gcc-20010122/gcc/fixinc/.
 ./config -I/scratch/crossdev-build/src/gcc-20010122/gcc/fixinc/../../include
 /scratch/crossdev-build/src/gcc-20010122/gcc/fixinc/fixincl.c
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/fixinc/../system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/fixinc/fixlib.h:30,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/fixinc/fixincl.c:24:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 /scratch/crossdev-build/src/gcc-20010122/gcc/fixinc/fixincl.c: In function
 `test_test':
 /scratch/crossdev-build/src/gcc-20010122/gcc/fixinc/fixincl.c:630: warning:
 `res' might be used uninitialized in this function
 /scratch/crossdev-build/src/gcc-20010122/gcc/fixinc/fixincl.c: In function
 `start_fixer':
 /scratch/crossdev-build/src/gcc-20010122/gcc/fixinc/fixincl.c:1037: warning:
 `pz_cmd_save' might be used uninitialized in this function
 gcc -c -DIN_GCC -g -O2  -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissi
 ng-prototypes -Wtraditional -pedantic -Wno-long-long -I. -I.. -I/scratch/cro
 ssdev-build/src/gcc-20010122/gcc/fixinc -I/scratch/crossdev-build/src/gcc-20
 010122/gcc/fixinc/.. -I/scratch/crossdev-build/src/gcc-20010122/gcc/fixinc/.
 ./config -I/scratch/crossdev-build/src/gcc-20010122/gcc/fixinc/../../include
 /scratch/crossdev-build/src/gcc-20010122/gcc/fixinc/fixtests.c
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/fixinc/../system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/fixinc/fixlib.h:30,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/fixinc/fixtests.c:48:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DIN_GCC -g -O2  -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissi
 ng-prototypes -Wtraditional -pedantic -Wno-long-long -I. -I.. -I/scratch/cro
 ssdev-build/src/gcc-20010122/gcc/fixinc -I/scratch/crossdev-build/src/gcc-20
 010122/gcc/fixinc/.. -I/scratch/crossdev-build/src/gcc-20010122/gcc/fixinc/.
 ./config -I/scratch/crossdev-build/src/gcc-20010122/gcc/fixinc/../../include
 /scratch/crossdev-build/src/gcc-20010122/gcc/fixinc/fixfixes.c
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/fixinc/../system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/fixinc/fixlib.h:30,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/fixinc/fixfixes.c:60:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DIN_GCC -g -O2  -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissi
 ng-prototypes -Wtraditional -pedantic -Wno-long-long -I. -I.. -I/scratch/cro
 ssdev-build/src/gcc-20010122/gcc/fixinc -I/scratch/crossdev-build/src/gcc-20
 010122/gcc/fixinc/.. -I/scratch/crossdev-build/src/gcc-20010122/gcc/fixinc/.
 ./config -I/scratch/crossdev-build/src/gcc-20010122/gcc/fixinc/../../include
 /scratch/crossdev-build/src/gcc-20010122/gcc/fixinc/server.c
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/fixinc/../system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/fixinc/server.c:51:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DIN_GCC -g -O2  -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissi
 ng-prototypes -Wtraditional -pedantic -Wno-long-long -I. -I.. -I/scratch/cro
 ssdev-build/src/gcc-20010122/gcc/fixinc -I/scratch/crossdev-build/src/gcc-20
 010122/gcc/fixinc/.. -I/scratch/crossdev-build/src/gcc-20010122/gcc/fixinc/.
 ./config -I/scratch/crossdev-build/src/gcc-20010122/gcc/fixinc/../../include
 /scratch/crossdev-build/src/gcc-20010122/gcc/fixinc/procopen.c
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/fixinc/../system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/fixinc/procopen.c:50:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -c -DIN_GCC -g -O2  -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissi
 ng-prototypes -Wtraditional -pedantic -Wno-long-long -I. -I.. -I/scratch/cro
 ssdev-build/src/gcc-20010122/gcc/fixinc -I/scratch/crossdev-build/src/gcc-20
 010122/gcc/fixinc/.. -I/scratch/crossdev-build/src/gcc-20010122/gcc/fixinc/.
 ./config -I/scratch/crossdev-build/src/gcc-20010122/gcc/fixinc/../../include
 /scratch/crossdev-build/src/gcc-20010122/gcc/fixinc/gnu-regex.c
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/fixinc/gnu-regex.c:114:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 /scratch/crossdev-build/src/gcc-20010122/gcc/fixinc/gnu-regex.c: At top
 level:
 /scratch/crossdev-build/src/gcc-20010122/gcc/fixinc/gnu-regex.c:160:
 warning: function declaration isn't a prototype
 gcc -c -DIN_GCC -g -O2  -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissi
 ng-prototypes -Wtraditional -pedantic -Wno-long-long -I. -I.. -I/scratch/cro
 ssdev-build/src/gcc-20010122/gcc/fixinc -I/scratch/crossdev-build/src/gcc-20
 010122/gcc/fixinc/.. -I/scratch/crossdev-build/src/gcc-20010122/gcc/fixinc/.
 ./config -I/scratch/crossdev-build/src/gcc-20010122/gcc/fixinc/../../include
 /scratch/crossdev-build/src/gcc-20010122/gcc/fixinc/fixlib.c
 /usr/include/bits/string2.h: In function `__stpcpy_small':
 In file included from /usr/include/string.h:346,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/fixinc/../system.h:97,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/fixinc/fixlib.h:30,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/fixinc/fixlib.c:25:
 /usr/include/bits/string2.h:611: warning: pointer targets in return differ
 in signedness
 gcc -DIN_GCC -g -O2  -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-
 prototypes -Wtraditional -pedantic -Wno-long-long -I. -I.. -I/scratch/crossd
 ev-build/src/gcc-20010122/gcc/fixinc -I/scratch/crossdev-build/src/gcc-20010
 122/gcc/fixinc/.. -I/scratch/crossdev-build/src/gcc-20010122/gcc/fixinc/../c
 onfig -I/scratch/crossdev-build/src/gcc-20010122/gcc/fixinc/../../include  -
 o fixincl fixincl.o fixtests.o fixfixes.o server.o procopen.o gnu-regex.o
 fixlib.o ../../libiberty/libiberty.a
 touch full-stamp
 ./fixincl -v
 'fixincl version 1.1'
 chmod 755 ../fixinc.sh
 make[2]: Leaving directory
 `/scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/fixinc'
 rm -rf include; mkdir include
 chmod a+rx include
 (TARGET_MACHINE=armv5-unknown-linux-gnu; srcdir=`cd
 /scratch/crossdev-build/src/gcc-20010122/gcc; pwd`; \
 INSTALL_ASSERT_H=; SHELL=/bin/sh ;\
 export TARGET_MACHINE srcdir INSTALL_ASSERT_H SHELL ; \
 /bin/sh ./fixinc.sh `pwd`/include
 /scratch/crossdev/armv5-linux/armv5-linux/sys-include ; \
 rm -f include/syslimits.h; \
 if [ -f include/limits.h ]; then \
   mv include/limits.h include/syslimits.h; \
 else \
   cp /scratch/crossdev-build/src/gcc-20010122/gcc/gsyslimits.h
 include/syslimits.h; \
 fi; \
 chmod a+r include/syslimits.h)
 Fixing headers into
 /scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/include for
 armv5-unknown-linux-gnu target
 if [ "/scratch/crossdev/armv5-linux/armv5-linux/sys-include" =
 "/scratch/crossdev/armv5-linux/armv5-linux/sys-include" ] \
    && [ -d /scratch/crossdev/armv5-linux/armv5-linux/sys-include ]; then \
   if [ -d /scratch/crossdev/armv5-linux/lib ] ; then true ; else mkdir
 /scratch/crossdev/armv5-linux/lib ; fi; \
   if [ -d /scratch/crossdev/armv5-linux/lib/gcc-lib ] ; then true ; else
 mkdir /scratch/crossdev/armv5-linux/lib/gcc-lib; fi; \
   if [ -d /scratch/crossdev/armv5-linux/lib/gcc-lib/armv5-linux ] ; then
 true ; else mkdir /scratch/crossdev/armv5-linux/lib/gcc-lib/armv5-linux ;
 fi; \
   if [ -d /scratch/crossdev/armv5-linux/lib/gcc-lib/armv5-linux/2.97 ] ;
 then true ; else mkdir
 /scratch/crossdev/armv5-linux/lib/gcc-lib/armv5-linux/2.97 ; fi; \
 else true; fi
 touch stmp-fixinc
 if [ -f /scratch/crossdev/armv5-linux/armv5-linux/sys-include/limits.h ] ;
 then \
   cat /scratch/crossdev-build/src/gcc-20010122/gcc/limitx.h
 /scratch/crossdev-build/src/gcc-20010122/gcc/glimits.h
 /scratch/crossdev-build/src/gcc-20010122/gcc/limity.h > tmp-xlimits.h; \
 else \
   cat /scratch/crossdev-build/src/gcc-20010122/gcc/glimits.h >
 tmp-xlimits.h; \
 fi
 mv tmp-xlimits.h xlimits.h
 if [ -d include ] ; then true; else mkdir include; chmod a+rx include; fi
 for file in ..
 /scratch/crossdev-build/src/gcc-20010122/gcc/ginclude/stdarg.h
 /scratch/crossdev-build/src/gcc-20010122/gcc/ginclude/stddef.h
 /scratch/crossdev-build/src/gcc-20010122/gcc/ginclude/varargs.h
 /scratch/crossdev-build/src/gcc-20010122/gcc/ginclude/proto.h
 /scratch/crossdev-build/src/gcc-20010122/gcc/ginclude/stdbool.h
 /scratch/crossdev-build/src/gcc-20010122/gcc/ginclude/iso646.h  ; do \
   if [ X$file != X.. ]; then \
     realfile=`echo $file | sed -e 's|.*/\([^/]*\)$|\1|'`; \
     touch include/$realfile; \
     rm -f include/$realfile; \
     cp $file include; \
     chmod a+r include/$realfile; \
   fi; \
 done
 rm -f include/limits.h
 cp xlimits.h include/limits.h
 chmod a+r include/limits.h
 rm -f include/float.h
 if [ xfloat-i64.h != xMakefile.in ]; then \
   cp /scratch/crossdev-build/src/gcc-20010122/gcc/config/float-i64.h
 include/float.h && \
   chmod a+r include/float.h; \
 else :; fi
 rm -f include/README
 cp /scratch/crossdev-build/src/gcc-20010122/gcc/README-fixinc include/README
 chmod a+r include/README
 touch stmp-int-hdrs
 objext='.o' \
 OLDCC='cc' \
 LIBGCC1='libgcc1-asm.a' \
 LIB1FUNCS='_mulsi3 _udivsi3 _divsi3 _umodsi3 _modsi3 _lshrsi3 _ashrsi3
 _ashlsi3 _divdf3 _muldf3 _negdf2 _adddf3 _subdf3 _fixdfsi _fixsfsi
 _floatsidf _floatsisf _truncdfsf2 _extendsfdf2 _addsf3 _negsf2 _subsf3
 _mulsf3 _divsf3 _eqdf2 _nedf2 _gtdf2 _gedf2 _ltdf2 _ledf2 _eqsf2 _nesf2
 _gtsf2 _gesf2 _ltsf2 _lesf2' \
 LIB1ASMFUNCS='_udivsi3 _divsi3 _umodsi3 _modsi3 _dvmd_lnx' \
 LIB1FUNCS_EXTRA='' \
 LIB2FUNCS='_muldi3 _divdi3 _moddi3 _udivdi3 _umoddi3 _negdi2 _lshrdi3
 _ashldi3 _ashrdi3 _ffsdi2 _clz _udiv_w_sdiv _udivmoddi4 _cmpdi2 _ucmpdi2
 _floatdidf _floatdisf _fixunsdfsi _fixunssfsi _fixunsdfdi _fixdfdi
 _fixunssfdi _fixsfdi _fixxfdi _fixunsxfdi _floatdixf _fixunsxfsi _fixtfdi
 _fixunstfdi _floatditf __gcc_bcmp _varargs __dummy _eprintf _bb _clear_cache
 _trampoline __main _exit _absvsi2 _absvdi2 _addvsi3 _addvdi3 _subvsi3
 _subvdi3 _mulvsi3 _mulvdi3 _negvsi2 _negvdi2 _ctors' \
 LIB2FUNCS_EH='_eh' \
 LIB2ADD='/scratch/crossdev-build/src/gcc-20010122/gcc/frame-dwarf2.c ' \
 FPBIT='' \
 FPBIT_FUNCS='_pack_sf _unpack_sf _addsub_sf _mul_sf _div_sf _fpcmp_parts_sf
 _compare_sf _eq_sf _ne_sf _gt_sf _ge_sf _lt_sf _le_sf _unord_sf _si_to_sf
 _sf_to_si _negate_sf _make_sf _sf_to_df _thenan_sf _sf_to_usi _usi_to_sf' \
 DPBIT='' \
 DPBIT_FUNCS='_pack_df _unpack_df _addsub_df _mul_df _div_df _fpcmp_parts_df
 _compare_df _eq_df _ne_df _gt_df _ge_df _lt_df _le_df _unord_df _si_to_df
 _df_to_si _negate_df _make_df _df_to_sf _thenan_df _df_to_usi _usi_to_df' \
 MULTILIBS=`/scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/xgcc -B/
 scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/ -B/scratch/crossdev
 /armv5-linux/armv5-linux/bin/ -B/scratch/crossdev/armv5-linux/armv5-linux/li
 b/ -isystem
 /scratch/crossdev/armv5-linux/armv5-linux/include --print-multi-lib` \
 EXTRA_MULTILIB_PARTS='' \
 SHLIB_LINK='/scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/xgcc -B
 /scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/ -B/scratch/crossde
 v/armv5-linux/armv5-linux/bin/ -B/scratch/crossdev/armv5-linux/armv5-linux/l
 ib/ -isystem
 scratch/crossdev/armv5-linux/armv5-linux/include -O2  -DCROSS_COMPILE -DIN_G
 CC    -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -isy
 stem
 ./include  -fomit-frame-pointer -fPIC -g0 -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -
 D__GCC_FLOAT_NOT_NEEDED -Dinhibit_libc -shared -nodefaultlibs -Wl,--soname=@
 shlib_base_name@.so.0 -Wl,--version-script=@shlib_map_file@ -o
 @shlib_base_name@.so @multilib_flags@ @shlib_objs@ -lc && rm -f
 @shlib_base_name@.so.0 && ln -s @shlib_base_name@.so @shlib_base_name@.so.0'
 \
 SHLIB_INSTALL='/bin/sh
 /scratch/crossdev-build/src/gcc-20010122/install-sh -c -m 644
 @shlib_base_name@.so $(slibdir)/@shlib_base_name@.so.0; rm -f
 $(slibdir)/@shlib_base_name@.so; ln -s @shlib_base_name@.so.0
 $(slibdir)/@shlib_base_name@.so' \
 SHLIB_EXT='.so' \
 SHLIB_MULTILIB='' \
 SHLIB_MKMAP='/scratch/crossdev-build/src/gcc-20010122/gcc/mkmap-symver.awk'
 \
 SHLIB_MAPFILES='/scratch/crossdev-build/src/gcc-20010122/gcc/libgcc-std.ver
 /scratch/crossdev-build/src/gcc-20010122/gcc/config/libgcc-glibc.ver' \
 SHLIB_NM_FLAGS='-pg' \
   /bin/sh mklibgcc > tmp-libgcc.mk
 mv tmp-libgcc.mk libgcc.mk
 /scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/xgcc -B/scratch/cro
 ssdev-build/armv5-linux/gcc-20010122-obj/gcc/ -B/scratch/crossdev/armv5-linu
 x/armv5-linux/bin/ -B/scratch/crossdev/armv5-linux/armv5-linux/lib/ -isystem
 /scratch/crossdev/armv5-linux/armv5-linux/include -DCROSS_COMPILE -DIN_GCC  
   -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -isystem
 ./include  -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scratch
 /crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc-200
 10122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../include  
 -g0 \
   -finhibit-size-directive -fno-inline-functions \
   -fno-exceptions  -Dinhibit_libc \
   -c /scratch/crossdev-build/src/gcc-20010122/gcc/crtstuff.c -DCRT_BEGIN -o
 crtbegin.o
 /scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/xgcc -B/scratch/cro
 ssdev-build/armv5-linux/gcc-20010122-obj/gcc/ -B/scratch/crossdev/armv5-linu
 x/armv5-linux/bin/ -B/scratch/crossdev/armv5-linux/armv5-linux/lib/ -isystem
 /scratch/crossdev/armv5-linux/armv5-linux/include -DCROSS_COMPILE -DIN_GCC  
   -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -isystem
 ./include  -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scratch
 /crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc-200
 10122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../include  
 -g0 \
   -finhibit-size-directive -fno-inline-functions \
   -fno-exceptions -fPIC -Dinhibit_libc \
   -c
 /scratch/crossdev-build/src/gcc-20010122/gcc/crtstuff.c -DCRT_BEGIN -DCRTSTU
 FFS_O \
   -o crtbeginS.o
 /scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/xgcc -B/scratch/cro
 ssdev-build/armv5-linux/gcc-20010122-obj/gcc/ -B/scratch/crossdev/armv5-linu
 x/armv5-linux/bin/ -B/scratch/crossdev/armv5-linux/armv5-linux/lib/ -isystem
 /scratch/crossdev/armv5-linux/armv5-linux/include -DCROSS_COMPILE -DIN_GCC  
   -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -isystem
 ./include  -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scratch
 /crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc-200
 10122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../include  
 -g0 \
   -finhibit-size-directive -fno-inline-functions \
   -fno-exceptions  -Dinhibit_libc \
   -c /scratch/crossdev-build/src/gcc-20010122/gcc/crtstuff.c -DCRT_END -o
 crtend.o
 /scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/xgcc -B/scratch/cro
 ssdev-build/armv5-linux/gcc-20010122-obj/gcc/ -B/scratch/crossdev/armv5-linu
 x/armv5-linux/bin/ -B/scratch/crossdev/armv5-linux/armv5-linux/lib/ -isystem
 /scratch/crossdev/armv5-linux/armv5-linux/include -DCROSS_COMPILE -DIN_GCC  
   -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -isystem
 ./include  -I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scratch
 /crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc-200
 10122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../include  
 -g0 \
   -finhibit-size-directive -fno-inline-functions \
   -fno-exceptions -fPIC -Dinhibit_libc \
   -c
 /scratch/crossdev-build/src/gcc-20010122/gcc/crtstuff.c -DCRT_END -DCRTSTUFF
 S_O \
   -o crtendS.o
 make -j1
 GCC_FOR_TARGET="/scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/xgc
 c -B/scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/ -B/scratch/cro
 ssdev/armv5-linux/armv5-linux/bin/ -B/scratch/crossdev/armv5-linux/armv5-lin
 ux/lib/ -isystem /scratch/crossdev/armv5-linux/armv5-linux/include" \
   HOST_PREFIX="" HOST_PREFIX_1="loser-" \
   AR_FOR_TARGET="armv5-linux-ar" \
   AR_CREATE_FOR_TARGET="armv5-linux-ar  rc" \
   AR_FLAGS_FOR_TARGET="" \
   OLDCC="cc" CCLIBFLAGS="-O" \
 
 
 CFLAGS="-g -O2 -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-protot
 ypes -Wtraditional -pedantic -Wno-long-long" \
   RANLIB_FOR_TARGET="armv5-linux-ranlib" \
   RANLIB_TEST_FOR_TARGET="[ -f armv5-linux-ranlib ] || ( [
 "i686-pc-linux-gnu" = "armv5-unknown-linux-gnu" ] && [ -f
 /usr/bin/ranlib -o -f /bin/ranlib ] )" \
   NM_FOR_TARGET="armv5-linux-nm" AWK="mawk" \
 
 
 LIBGCC2_CFLAGS="-O2  -DCROSS_COMPILE -DIN_GCC    -W -Wall -Wwrite-strings -W
 strict-prototypes -Wmissing-prototypes -isystem
 /include  -fomit-frame-pointer -fPIC -g0 -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -D
 __GCC_FLOAT_NOT_NEEDED -Dinhibit_libc" \
 
 
 INCLUDES="-I. -I. -I/scratch/crossdev-build/src/gcc-20010122/gcc -I/scratch/
 crossdev-build/src/gcc-20010122/gcc/. -I/scratch/crossdev-build/src/gcc-2001
 0122/gcc/config -I/scratch/crossdev-build/src/gcc-20010122/gcc/../include"
 MAYBE_USE_COLLECT2="" \
   CONFIG_H=" insn-codes.h" MACHMODE_H="machmode.h machmode.def" \
   LIB1ASMSRC='arm/lib1funcs.asm' \
   MAKEOVERRIDES= \
   -f libgcc.mk all
 make[2]: Entering directory
 `/scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc'
 for d in libgcc; do \
   if [ -d $d ]; then true; else mkdir $d; fi \
 done
 if [ -f stmp-dirs ]; then true; else touch stmp-dirs; fi
 /scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/xgcc -B/scratch/cro
 ssdev-build/armv5-linux/gcc-20010122-obj/gcc/ -B/scratch/crossdev/armv5-linu
 x/armv5-linux/bin/ -B/scratch/crossdev/armv5-linux/armv5-linux/lib/ -isystem
 /scratch/crossdev/armv5-linux/armv5-linux/include -O2  -DCROSS_COMPILE -DIN_
 GCC    -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -is
 ystem
 ./include  -fomit-frame-pointer -fPIC -g0 -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -
 D__GCC_FLOAT_NOT_NEEDED -Dinhibit_libc -I. -I. -I/scratch/crossdev-build/src
 /gcc-20010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/g
 cc-20010122/gcc/../include -DL_udivsi3 -xassembler-with-cpp -c
 /scratch/crossdev-build/src/gcc-20010122/gcc/config/arm/lib1funcs.asm -o
 libgcc/./_udivsi3.o
 /scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/xgcc -B/scratch/cro
 ssdev-build/armv5-linux/gcc-20010122-obj/gcc/ -B/scratch/crossdev/armv5-linu
 x/armv5-linux/bin/ -B/scratch/crossdev/armv5-linux/armv5-linux/lib/ -isystem
 /scratch/crossdev/armv5-linux/armv5-linux/include -O2  -DCROSS_COMPILE -DIN_
 GCC    -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -is
 ystem
 ./include  -fomit-frame-pointer -fPIC -g0 -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -
 D__GCC_FLOAT_NOT_NEEDED -Dinhibit_libc -I. -I. -I/scratch/crossdev-build/src
 /gcc-20010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/g
 cc-20010122/gcc/../include -DL_divsi3 -xassembler-with-cpp -c
 /scratch/crossdev-build/src/gcc-20010122/gcc/config/arm/lib1funcs.asm -o
 libgcc/./_divsi3.o
 /scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/xgcc -B/scratch/cro
 ssdev-build/armv5-linux/gcc-20010122-obj/gcc/ -B/scratch/crossdev/armv5-linu
 x/armv5-linux/bin/ -B/scratch/crossdev/armv5-linux/armv5-linux/lib/ -isystem
 /scratch/crossdev/armv5-linux/armv5-linux/include -O2  -DCROSS_COMPILE -DIN_
 GCC    -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -is
 ystem
 ./include  -fomit-frame-pointer -fPIC -g0 -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -
 D__GCC_FLOAT_NOT_NEEDED -Dinhibit_libc -I. -I. -I/scratch/crossdev-build/src
 /gcc-20010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/g
 cc-20010122/gcc/../include -DL_umodsi3 -xassembler-with-cpp -c
 /scratch/crossdev-build/src/gcc-20010122/gcc/config/arm/lib1funcs.asm -o
 libgcc/./_umodsi3.o
 /scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/xgcc -B/scratch/cro
 ssdev-build/armv5-linux/gcc-20010122-obj/gcc/ -B/scratch/crossdev/armv5-linu
 x/armv5-linux/bin/ -B/scratch/crossdev/armv5-linux/armv5-linux/lib/ -isystem
 /scratch/crossdev/armv5-linux/armv5-linux/include -O2  -DCROSS_COMPILE -DIN_
 GCC    -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -is
 ystem
 ./include  -fomit-frame-pointer -fPIC -g0 -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -
 D__GCC_FLOAT_NOT_NEEDED -Dinhibit_libc -I. -I. -I/scratch/crossdev-build/src
 /gcc-20010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/g
 cc-20010122/gcc/../include -DL_modsi3 -xassembler-with-cpp -c
 /scratch/crossdev-build/src/gcc-20010122/gcc/config/arm/lib1funcs.asm -o
 libgcc/./_modsi3.o
 /scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/xgcc -B/scratch/cro
 ssdev-build/armv5-linux/gcc-20010122-obj/gcc/ -B/scratch/crossdev/armv5-linu
 x/armv5-linux/bin/ -B/scratch/crossdev/armv5-linux/armv5-linux/lib/ -isystem
 /scratch/crossdev/armv5-linux/armv5-linux/include -O2  -DCROSS_COMPILE -DIN_
 GCC    -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -is
 ystem
 ./include  -fomit-frame-pointer -fPIC -g0 -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -
 D__GCC_FLOAT_NOT_NEEDED -Dinhibit_libc -I. -I. -I/scratch/crossdev-build/src
 /gcc-20010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/g
 cc-20010122/gcc/../include -DL_dvmd_lnx -xassembler-with-cpp -c
 /scratch/crossdev-build/src/gcc-20010122/gcc/config/arm/lib1funcs.asm -o
 libgcc/./_dvmd_lnx.o
 /scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/xgcc -B/scratch/cro
 ssdev-build/armv5-linux/gcc-20010122-obj/gcc/ -B/scratch/crossdev/armv5-linu
 x/armv5-linux/bin/ -B/scratch/crossdev/armv5-linux/armv5-linux/lib/ -isystem
 /scratch/crossdev/armv5-linux/armv5-linux/include -O2  -DCROSS_COMPILE -DIN_
 GCC    -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -is
 ystem
 ./include  -fomit-frame-pointer -fPIC -g0 -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -
 D__GCC_FLOAT_NOT_NEEDED -Dinhibit_libc -I. -I. -I/scratch/crossdev-build/src
 /gcc-20010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/g
 cc-20010122/gcc/../include  -DL_muldi3 -c
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c -o libgcc/./_muldi3.o
 /scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/xgcc -B/scratch/cro
 ssdev-build/armv5-linux/gcc-20010122-obj/gcc/ -B/scratch/crossdev/armv5-linu
 x/armv5-linux/bin/ -B/scratch/crossdev/armv5-linux/armv5-linux/lib/ -isystem
 /scratch/crossdev/armv5-linux/armv5-linux/include -O2  -DCROSS_COMPILE -DIN_
 GCC    -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -is
 ystem
 ./include  -fomit-frame-pointer -fPIC -g0 -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -
 D__GCC_FLOAT_NOT_NEEDED -Dinhibit_libc -I. -I. -I/scratch/crossdev-build/src
 /gcc-20010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/g
 cc-20010122/gcc/../include  -DL_divdi3 -c
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c -o libgcc/./_divdi3.o
 /scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/xgcc -B/scratch/cro
 ssdev-build/armv5-linux/gcc-20010122-obj/gcc/ -B/scratch/crossdev/armv5-linu
 x/armv5-linux/bin/ -B/scratch/crossdev/armv5-linux/armv5-linux/lib/ -isystem
 /scratch/crossdev/armv5-linux/armv5-linux/include -O2  -DCROSS_COMPILE -DIN_
 GCC    -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -is
 ystem
 ./include  -fomit-frame-pointer -fPIC -g0 -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -
 D__GCC_FLOAT_NOT_NEEDED -Dinhibit_libc -I. -I. -I/scratch/crossdev-build/src
 /gcc-20010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/g
 cc-20010122/gcc/../include  -DL_moddi3 -c
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c -o libgcc/./_moddi3.o
 /scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/xgcc -B/scratch/cro
 ssdev-build/armv5-linux/gcc-20010122-obj/gcc/ -B/scratch/crossdev/armv5-linu
 x/armv5-linux/bin/ -B/scratch/crossdev/armv5-linux/armv5-linux/lib/ -isystem
 /scratch/crossdev/armv5-linux/armv5-linux/include -O2  -DCROSS_COMPILE -DIN_
 GCC    -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -is
 ystem
 ./include  -fomit-frame-pointer -fPIC -g0 -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -
 D__GCC_FLOAT_NOT_NEEDED -Dinhibit_libc -I. -I. -I/scratch/crossdev-build/src
 /gcc-20010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/g
 cc-20010122/gcc/../include  -DL_udivdi3 -c
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c -o
 libgcc/./_udivdi3.o
 /scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/xgcc -B/scratch/cro
 ssdev-build/armv5-linux/gcc-20010122-obj/gcc/ -B/scratch/crossdev/armv5-linu
 x/armv5-linux/bin/ -B/scratch/crossdev/armv5-linux/armv5-linux/lib/ -isystem
 /scratch/crossdev/armv5-linux/armv5-linux/include -O2  -DCROSS_COMPILE -DIN_
 GCC    -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -is
 ystem
 ./include  -fomit-frame-pointer -fPIC -g0 -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -
 D__GCC_FLOAT_NOT_NEEDED -Dinhibit_libc -I. -I. -I/scratch/crossdev-build/src
 /gcc-20010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/g
 cc-20010122/gcc/../include  -DL_umoddi3 -c
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c -o
 libgcc/./_umoddi3.o
 /scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/xgcc -B/scratch/cro
 ssdev-build/armv5-linux/gcc-20010122-obj/gcc/ -B/scratch/crossdev/armv5-linu
 x/armv5-linux/bin/ -B/scratch/crossdev/armv5-linux/armv5-linux/lib/ -isystem
 /scratch/crossdev/armv5-linux/armv5-linux/include -O2  -DCROSS_COMPILE -DIN_
 GCC    -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -is
 ystem
 ./include  -fomit-frame-pointer -fPIC -g0 -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -
 D__GCC_FLOAT_NOT_NEEDED -Dinhibit_libc -I. -I. -I/scratch/crossdev-build/src
 /gcc-20010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/g
 cc-20010122/gcc/../include  -DL_negdi2 -c
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c -o libgcc/./_negdi2.o
 /scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/xgcc -B/scratch/cro
 ssdev-build/armv5-linux/gcc-20010122-obj/gcc/ -B/scratch/crossdev/armv5-linu
 x/armv5-linux/bin/ -B/scratch/crossdev/armv5-linux/armv5-linux/lib/ -isystem
 /scratch/crossdev/armv5-linux/armv5-linux/include -O2  -DCROSS_COMPILE -DIN_
 GCC    -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -is
 ystem
 ./include  -fomit-frame-pointer -fPIC -g0 -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -
 D__GCC_FLOAT_NOT_NEEDED -Dinhibit_libc -I. -I. -I/scratch/crossdev-build/src
 /gcc-20010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/g
 cc-20010122/gcc/../include  -DL_lshrdi3 -c
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c -o
 libgcc/./_lshrdi3.o
 /scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/xgcc -B/scratch/cro
 ssdev-build/armv5-linux/gcc-20010122-obj/gcc/ -B/scratch/crossdev/armv5-linu
 x/armv5-linux/bin/ -B/scratch/crossdev/armv5-linux/armv5-linux/lib/ -isystem
 /scratch/crossdev/armv5-linux/armv5-linux/include -O2  -DCROSS_COMPILE -DIN_
 GCC    -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -is
 ystem
 ./include  -fomit-frame-pointer -fPIC -g0 -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -
 D__GCC_FLOAT_NOT_NEEDED -Dinhibit_libc -I. -I. -I/scratch/crossdev-build/src
 /gcc-20010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/g
 cc-20010122/gcc/../include  -DL_ashldi3 -c
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c -o
 libgcc/./_ashldi3.o
 /scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/xgcc -B/scratch/cro
 ssdev-build/armv5-linux/gcc-20010122-obj/gcc/ -B/scratch/crossdev/armv5-linu
 x/armv5-linux/bin/ -B/scratch/crossdev/armv5-linux/armv5-linux/lib/ -isystem
 /scratch/crossdev/armv5-linux/armv5-linux/include -O2  -DCROSS_COMPILE -DIN_
 GCC    -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -is
 ystem
 ./include  -fomit-frame-pointer -fPIC -g0 -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -
 D__GCC_FLOAT_NOT_NEEDED -Dinhibit_libc -I. -I. -I/scratch/crossdev-build/src
 /gcc-20010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/g
 cc-20010122/gcc/../include  -DL_ashrdi3 -c
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c -o
 libgcc/./_ashrdi3.o
 /scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/xgcc -B/scratch/cro
 ssdev-build/armv5-linux/gcc-20010122-obj/gcc/ -B/scratch/crossdev/armv5-linu
 x/armv5-linux/bin/ -B/scratch/crossdev/armv5-linux/armv5-linux/lib/ -isystem
 /scratch/crossdev/armv5-linux/armv5-linux/include -O2  -DCROSS_COMPILE -DIN_
 GCC    -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -is
 ystem
 ./include  -fomit-frame-pointer -fPIC -g0 -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -
 D__GCC_FLOAT_NOT_NEEDED -Dinhibit_libc -I. -I. -I/scratch/crossdev-build/src
 /gcc-20010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/g
 cc-20010122/gcc/../include  -DL_ffsdi2 -c
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c -o libgcc/./_ffsdi2.o
 /scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/xgcc -B/scratch/cro
 ssdev-build/armv5-linux/gcc-20010122-obj/gcc/ -B/scratch/crossdev/armv5-linu
 x/armv5-linux/bin/ -B/scratch/crossdev/armv5-linux/armv5-linux/lib/ -isystem
 /scratch/crossdev/armv5-linux/armv5-linux/include -O2  -DCROSS_COMPILE -DIN_
 GCC    -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -is
 ystem
 ./include  -fomit-frame-pointer -fPIC -g0 -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -
 D__GCC_FLOAT_NOT_NEEDED -Dinhibit_libc -I. -I. -I/scratch/crossdev-build/src
 /gcc-20010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/g
 cc-20010122/gcc/../include  -DL_clz -c
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c -o libgcc/./_clz.o
 /scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/xgcc -B/scratch/cro
 ssdev-build/armv5-linux/gcc-20010122-obj/gcc/ -B/scratch/crossdev/armv5-linu
 x/armv5-linux/bin/ -B/scratch/crossdev/armv5-linux/armv5-linux/lib/ -isystem
 /scratch/crossdev/armv5-linux/armv5-linux/include -O2  -DCROSS_COMPILE -DIN_
 GCC    -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -is
 ystem
 ./include  -fomit-frame-pointer -fPIC -g0 -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -
 D__GCC_FLOAT_NOT_NEEDED -Dinhibit_libc -I. -I. -I/scratch/crossdev-build/src
 /gcc-20010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/g
 cc-20010122/gcc/../include  -DL_udiv_w_sdiv -c
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c -o
 libgcc/./_udiv_w_sdiv.o
 /scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/xgcc -B/scratch/cro
 ssdev-build/armv5-linux/gcc-20010122-obj/gcc/ -B/scratch/crossdev/armv5-linu
 x/armv5-linux/bin/ -B/scratch/crossdev/armv5-linux/armv5-linux/lib/ -isystem
 /scratch/crossdev/armv5-linux/armv5-linux/include -O2  -DCROSS_COMPILE -DIN_
 GCC    -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -is
 ystem
 ./include  -fomit-frame-pointer -fPIC -g0 -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -
 D__GCC_FLOAT_NOT_NEEDED -Dinhibit_libc -I. -I. -I/scratch/crossdev-build/src
 /gcc-20010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/g
 cc-20010122/gcc/../include  -DL_udivmoddi4 -c
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c -o
 libgcc/./_udivmoddi4.o
 /scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/xgcc -B/scratch/cro
 ssdev-build/armv5-linux/gcc-20010122-obj/gcc/ -B/scratch/crossdev/armv5-linu
 x/armv5-linux/bin/ -B/scratch/crossdev/armv5-linux/armv5-linux/lib/ -isystem
 /scratch/crossdev/armv5-linux/armv5-linux/include -O2  -DCROSS_COMPILE -DIN_
 GCC    -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -is
 ystem
 ./include  -fomit-frame-pointer -fPIC -g0 -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -
 D__GCC_FLOAT_NOT_NEEDED -Dinhibit_libc -I. -I. -I/scratch/crossdev-build/src
 /gcc-20010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/g
 cc-20010122/gcc/../include  -DL_cmpdi2 -c
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c -o libgcc/./_cmpdi2.o
 /scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/xgcc -B/scratch/cro
 ssdev-build/armv5-linux/gcc-20010122-obj/gcc/ -B/scratch/crossdev/armv5-linu
 x/armv5-linux/bin/ -B/scratch/crossdev/armv5-linux/armv5-linux/lib/ -isystem
 /scratch/crossdev/armv5-linux/armv5-linux/include -O2  -DCROSS_COMPILE -DIN_
 GCC    -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -is
 ystem
 ./include  -fomit-frame-pointer -fPIC -g0 -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -
 D__GCC_FLOAT_NOT_NEEDED -Dinhibit_libc -I. -I. -I/scratch/crossdev-build/src
 /gcc-20010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/g
 cc-20010122/gcc/../include  -DL_ucmpdi2 -c
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c -o
 libgcc/./_ucmpdi2.o
 /scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/xgcc -B/scratch/cro
 ssdev-build/armv5-linux/gcc-20010122-obj/gcc/ -B/scratch/crossdev/armv5-linu
 x/armv5-linux/bin/ -B/scratch/crossdev/armv5-linux/armv5-linux/lib/ -isystem
 /scratch/crossdev/armv5-linux/armv5-linux/include -O2  -DCROSS_COMPILE -DIN_
 GCC    -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -is
 ystem
 ./include  -fomit-frame-pointer -fPIC -g0 -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -
 D__GCC_FLOAT_NOT_NEEDED -Dinhibit_libc -I. -I. -I/scratch/crossdev-build/src
 /gcc-20010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/g
 cc-20010122/gcc/../include  -DL_floatdidf -c
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c -o
 libgcc/./_floatdidf.o
 /scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/xgcc -B/scratch/cro
 ssdev-build/armv5-linux/gcc-20010122-obj/gcc/ -B/scratch/crossdev/armv5-linu
 x/armv5-linux/bin/ -B/scratch/crossdev/armv5-linux/armv5-linux/lib/ -isystem
 /scratch/crossdev/armv5-linux/armv5-linux/include -O2  -DCROSS_COMPILE -DIN_
 GCC    -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -is
 ystem
 ./include  -fomit-frame-pointer -fPIC -g0 -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -
 D__GCC_FLOAT_NOT_NEEDED -Dinhibit_libc -I. -I. -I/scratch/crossdev-build/src
 /gcc-20010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/g
 cc-20010122/gcc/../include  -DL_floatdisf -c
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c -o
 libgcc/./_floatdisf.o
 /scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/xgcc -B/scratch/cro
 ssdev-build/armv5-linux/gcc-20010122-obj/gcc/ -B/scratch/crossdev/armv5-linu
 x/armv5-linux/bin/ -B/scratch/crossdev/armv5-linux/armv5-linux/lib/ -isystem
 /scratch/crossdev/armv5-linux/armv5-linux/include -O2  -DCROSS_COMPILE -DIN_
 GCC    -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -is
 ystem
 ./include  -fomit-frame-pointer -fPIC -g0 -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -
 D__GCC_FLOAT_NOT_NEEDED -Dinhibit_libc -I. -I. -I/scratch/crossdev-build/src
 /gcc-20010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/g
 cc-20010122/gcc/../include  -DL_fixunsdfsi -c
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c -o
 libgcc/./_fixunsdfsi.o
 /scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/xgcc -B/scratch/cro
 ssdev-build/armv5-linux/gcc-20010122-obj/gcc/ -B/scratch/crossdev/armv5-linu
 x/armv5-linux/bin/ -B/scratch/crossdev/armv5-linux/armv5-linux/lib/ -isystem
 /scratch/crossdev/armv5-linux/armv5-linux/include -O2  -DCROSS_COMPILE -DIN_
 GCC    -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -is
 ystem
 ./include  -fomit-frame-pointer -fPIC -g0 -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -
 D__GCC_FLOAT_NOT_NEEDED -Dinhibit_libc -I. -I. -I/scratch/crossdev-build/src
 /gcc-20010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/g
 cc-20010122/gcc/../include  -DL_fixunssfsi -c
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c -o
 libgcc/./_fixunssfsi.o
 /scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/xgcc -B/scratch/cro
 ssdev-build/armv5-linux/gcc-20010122-obj/gcc/ -B/scratch/crossdev/armv5-linu
 x/armv5-linux/bin/ -B/scratch/crossdev/armv5-linux/armv5-linux/lib/ -isystem
 /scratch/crossdev/armv5-linux/armv5-linux/include -O2  -DCROSS_COMPILE -DIN_
 GCC    -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -is
 ystem
 ./include  -fomit-frame-pointer -fPIC -g0 -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -
 D__GCC_FLOAT_NOT_NEEDED -Dinhibit_libc -I. -I. -I/scratch/crossdev-build/src
 /gcc-20010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/g
 cc-20010122/gcc/../include  -DL_fixunsdfdi -c
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c -o
 libgcc/./_fixunsdfdi.o
 /scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/xgcc -B/scratch/cro
 ssdev-build/armv5-linux/gcc-20010122-obj/gcc/ -B/scratch/crossdev/armv5-linu
 x/armv5-linux/bin/ -B/scratch/crossdev/armv5-linux/armv5-linux/lib/ -isystem
 /scratch/crossdev/armv5-linux/armv5-linux/include -O2  -DCROSS_COMPILE -DIN_
 GCC    -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -is
 ystem
 ./include  -fomit-frame-pointer -fPIC -g0 -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -
 D__GCC_FLOAT_NOT_NEEDED -Dinhibit_libc -I. -I. -I/scratch/crossdev-build/src
 /gcc-20010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/g
 cc-20010122/gcc/../include  -DL_fixdfdi -c
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c -o
 libgcc/./_fixdfdi.o
 /scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/xgcc -B/scratch/cro
 ssdev-build/armv5-linux/gcc-20010122-obj/gcc/ -B/scratch/crossdev/armv5-linu
 x/armv5-linux/bin/ -B/scratch/crossdev/armv5-linux/armv5-linux/lib/ -isystem
 /scratch/crossdev/armv5-linux/armv5-linux/include -O2  -DCROSS_COMPILE -DIN_
 GCC    -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -is
 ystem
 ./include  -fomit-frame-pointer -fPIC -g0 -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -
 D__GCC_FLOAT_NOT_NEEDED -Dinhibit_libc -I. -I. -I/scratch/crossdev-build/src
 /gcc-20010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/g
 cc-20010122/gcc/../include  -DL_fixunssfdi -c
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c -o
 libgcc/./_fixunssfdi.o
 /scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/xgcc -B/scratch/cro
 ssdev-build/armv5-linux/gcc-20010122-obj/gcc/ -B/scratch/crossdev/armv5-linu
 x/armv5-linux/bin/ -B/scratch/crossdev/armv5-linux/armv5-linux/lib/ -isystem
 /scratch/crossdev/armv5-linux/armv5-linux/include -O2  -DCROSS_COMPILE -DIN_
 GCC    -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -is
 ystem
 ./include  -fomit-frame-pointer -fPIC -g0 -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -
 D__GCC_FLOAT_NOT_NEEDED -Dinhibit_libc -I. -I. -I/scratch/crossdev-build/src
 /gcc-20010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/g
 cc-20010122/gcc/../include  -DL_fixsfdi -c
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c -o
 libgcc/./_fixsfdi.o
 /scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/xgcc -B/scratch/cro
 ssdev-build/armv5-linux/gcc-20010122-obj/gcc/ -B/scratch/crossdev/armv5-linu
 x/armv5-linux/bin/ -B/scratch/crossdev/armv5-linux/armv5-linux/lib/ -isystem
 /scratch/crossdev/armv5-linux/armv5-linux/include -O2  -DCROSS_COMPILE -DIN_
 GCC    -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -is
 ystem
 ./include  -fomit-frame-pointer -fPIC -g0 -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -
 D__GCC_FLOAT_NOT_NEEDED -Dinhibit_libc -I. -I. -I/scratch/crossdev-build/src
 /gcc-20010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/g
 cc-20010122/gcc/../include  -DL_fixxfdi -c
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c -o
 libgcc/./_fixxfdi.o
 /scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/xgcc -B/scratch/cro
 ssdev-build/armv5-linux/gcc-20010122-obj/gcc/ -B/scratch/crossdev/armv5-linu
 x/armv5-linux/bin/ -B/scratch/crossdev/armv5-linux/armv5-linux/lib/ -isystem
 /scratch/crossdev/armv5-linux/armv5-linux/include -O2  -DCROSS_COMPILE -DIN_
 GCC    -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -is
 ystem
 ./include  -fomit-frame-pointer -fPIC -g0 -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -
 D__GCC_FLOAT_NOT_NEEDED -Dinhibit_libc -I. -I. -I/scratch/crossdev-build/src
 /gcc-20010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/g
 cc-20010122/gcc/../include  -DL_fixunsxfdi -c
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c -o
 libgcc/./_fixunsxfdi.o
 /scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/xgcc -B/scratch/cro
 ssdev-build/armv5-linux/gcc-20010122-obj/gcc/ -B/scratch/crossdev/armv5-linu
 x/armv5-linux/bin/ -B/scratch/crossdev/armv5-linux/armv5-linux/lib/ -isystem
 /scratch/crossdev/armv5-linux/armv5-linux/include -O2  -DCROSS_COMPILE -DIN_
 GCC    -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -is
 ystem
 ./include  -fomit-frame-pointer -fPIC -g0 -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -
 D__GCC_FLOAT_NOT_NEEDED -Dinhibit_libc -I. -I. -I/scratch/crossdev-build/src
 /gcc-20010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/g
 cc-20010122/gcc/../include  -DL_floatdixf -c
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c -o
 libgcc/./_floatdixf.o
 /scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/xgcc -B/scratch/cro
 ssdev-build/armv5-linux/gcc-20010122-obj/gcc/ -B/scratch/crossdev/armv5-linu
 x/armv5-linux/bin/ -B/scratch/crossdev/armv5-linux/armv5-linux/lib/ -isystem
 /scratch/crossdev/armv5-linux/armv5-linux/include -O2  -DCROSS_COMPILE -DIN_
 GCC    -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -is
 ystem
 ./include  -fomit-frame-pointer -fPIC -g0 -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -
 D__GCC_FLOAT_NOT_NEEDED -Dinhibit_libc -I. -I. -I/scratch/crossdev-build/src
 /gcc-20010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/g
 cc-20010122/gcc/../include  -DL_fixunsxfsi -c
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c -o
 libgcc/./_fixunsxfsi.o
 /scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/xgcc -B/scratch/cro
 ssdev-build/armv5-linux/gcc-20010122-obj/gcc/ -B/scratch/crossdev/armv5-linu
 x/armv5-linux/bin/ -B/scratch/crossdev/armv5-linux/armv5-linux/lib/ -isystem
 /scratch/crossdev/armv5-linux/armv5-linux/include -O2  -DCROSS_COMPILE -DIN_
 GCC    -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -is
 ystem
 ./include  -fomit-frame-pointer -fPIC -g0 -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -
 D__GCC_FLOAT_NOT_NEEDED -Dinhibit_libc -I. -I. -I/scratch/crossdev-build/src
 /gcc-20010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/g
 cc-20010122/gcc/../include  -DL_fixtfdi -c
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c -o
 libgcc/./_fixtfdi.o
 /scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/xgcc -B/scratch/cro
 ssdev-build/armv5-linux/gcc-20010122-obj/gcc/ -B/scratch/crossdev/armv5-linu
 x/armv5-linux/bin/ -B/scratch/crossdev/armv5-linux/armv5-linux/lib/ -isystem
 /scratch/crossdev/armv5-linux/armv5-linux/include -O2  -DCROSS_COMPILE -DIN_
 GCC    -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -is
 ystem
 ./include  -fomit-frame-pointer -fPIC -g0 -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -
 D__GCC_FLOAT_NOT_NEEDED -Dinhibit_libc -I. -I. -I/scratch/crossdev-build/src
 /gcc-20010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/g
 cc-20010122/gcc/../include  -DL_fixunstfdi -c
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c -o
 libgcc/./_fixunstfdi.o
 /scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/xgcc -B/scratch/cro
 ssdev-build/armv5-linux/gcc-20010122-obj/gcc/ -B/scratch/crossdev/armv5-linu
 x/armv5-linux/bin/ -B/scratch/crossdev/armv5-linux/armv5-linux/lib/ -isystem
 /scratch/crossdev/armv5-linux/armv5-linux/include -O2  -DCROSS_COMPILE -DIN_
 GCC    -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -is
 ystem
 ./include  -fomit-frame-pointer -fPIC -g0 -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -
 D__GCC_FLOAT_NOT_NEEDED -Dinhibit_libc -I. -I. -I/scratch/crossdev-build/src
 /gcc-20010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/g
 cc-20010122/gcc/../include  -DL_floatditf -c
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c -o
 libgcc/./_floatditf.o
 /scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/xgcc -B/scratch/cro
 ssdev-build/armv5-linux/gcc-20010122-obj/gcc/ -B/scratch/crossdev/armv5-linu
 x/armv5-linux/bin/ -B/scratch/crossdev/armv5-linux/armv5-linux/lib/ -isystem
 /scratch/crossdev/armv5-linux/armv5-linux/include -O2  -DCROSS_COMPILE -DIN_
 GCC    -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -is
 ystem
 ./include  -fomit-frame-pointer -fPIC -g0 -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -
 D__GCC_FLOAT_NOT_NEEDED -Dinhibit_libc -I. -I. -I/scratch/crossdev-build/src
 /gcc-20010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/g
 cc-20010122/gcc/../include  -DL__gcc_bcmp -c
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c -o
 libgcc/./__gcc_bcmp.o
 /scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/xgcc -B/scratch/cro
 ssdev-build/armv5-linux/gcc-20010122-obj/gcc/ -B/scratch/crossdev/armv5-linu
 x/armv5-linux/bin/ -B/scratch/crossdev/armv5-linux/armv5-linux/lib/ -isystem
 /scratch/crossdev/armv5-linux/armv5-linux/include -O2  -DCROSS_COMPILE -DIN_
 GCC    -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -is
 ystem
 ./include  -fomit-frame-pointer -fPIC -g0 -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -
 D__GCC_FLOAT_NOT_NEEDED -Dinhibit_libc -I. -I. -I/scratch/crossdev-build/src
 /gcc-20010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/g
 cc-20010122/gcc/../include  -DL_varargs -c
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c -o
 libgcc/./_varargs.o
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c: In function
 `__builtin_saveregs':
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c:1463: warning:
 implicit declaration of function `abort'
 /scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/xgcc -B/scratch/cro
 ssdev-build/armv5-linux/gcc-20010122-obj/gcc/ -B/scratch/crossdev/armv5-linu
 x/armv5-linux/bin/ -B/scratch/crossdev/armv5-linux/armv5-linux/lib/ -isystem
 /scratch/crossdev/armv5-linux/armv5-linux/include -O2  -DCROSS_COMPILE -DIN_
 GCC    -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -is
 ystem
 ./include  -fomit-frame-pointer -fPIC -g0 -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -
 D__GCC_FLOAT_NOT_NEEDED -Dinhibit_libc -I. -I. -I/scratch/crossdev-build/src
 /gcc-20010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/g
 cc-20010122/gcc/../include  -DL__dummy -c
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c -o libgcc/./__dummy.o
 /scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/xgcc -B/scratch/cro
 ssdev-build/armv5-linux/gcc-20010122-obj/gcc/ -B/scratch/crossdev/armv5-linu
 x/armv5-linux/bin/ -B/scratch/crossdev/armv5-linux/armv5-linux/lib/ -isystem
 /scratch/crossdev/armv5-linux/armv5-linux/include -O2  -DCROSS_COMPILE -DIN_
 GCC    -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -is
 ystem
 ./include  -fomit-frame-pointer -fPIC -g0 -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -
 D__GCC_FLOAT_NOT_NEEDED -Dinhibit_libc -I. -I. -I/scratch/crossdev-build/src
 /gcc-20010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/g
 cc-20010122/gcc/../include  -DL_eprintf -c
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c -o
 libgcc/./_eprintf.o
 /scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/xgcc -B/scratch/cro
 ssdev-build/armv5-linux/gcc-20010122-obj/gcc/ -B/scratch/crossdev/armv5-linu
 x/armv5-linux/bin/ -B/scratch/crossdev/armv5-linux/armv5-linux/lib/ -isystem
 /scratch/crossdev/armv5-linux/armv5-linux/include -O2  -DCROSS_COMPILE -DIN_
 GCC    -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -is
 ystem
 ./include  -fomit-frame-pointer -fPIC -g0 -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -
 D__GCC_FLOAT_NOT_NEEDED -Dinhibit_libc -I. -I. -I/scratch/crossdev-build/src
 /gcc-20010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/g
 cc-20010122/gcc/../include  -DL_bb -c
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c -o libgcc/./_bb.o
 /scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/xgcc -B/scratch/cro
 ssdev-build/armv5-linux/gcc-20010122-obj/gcc/ -B/scratch/crossdev/armv5-linu
 x/armv5-linux/bin/ -B/scratch/crossdev/armv5-linux/armv5-linux/lib/ -isystem
 /scratch/crossdev/armv5-linux/armv5-linux/include -O2  -DCROSS_COMPILE -DIN_
 GCC    -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -is
 ystem
 ./include  -fomit-frame-pointer -fPIC -g0 -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -
 D__GCC_FLOAT_NOT_NEEDED -Dinhibit_libc -I. -I. -I/scratch/crossdev-build/src
 /gcc-20010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/g
 cc-20010122/gcc/../include  -DL_clear_cache -c
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c -o
 libgcc/./_clear_cache.o
 /scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/xgcc -B/scratch/cro
 ssdev-build/armv5-linux/gcc-20010122-obj/gcc/ -B/scratch/crossdev/armv5-linu
 x/armv5-linux/bin/ -B/scratch/crossdev/armv5-linux/armv5-linux/lib/ -isystem
 /scratch/crossdev/armv5-linux/armv5-linux/include -O2  -DCROSS_COMPILE -DIN_
 GCC    -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -is
 ystem
 ./include  -fomit-frame-pointer -fPIC -g0 -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -
 D__GCC_FLOAT_NOT_NEEDED -Dinhibit_libc -I. -I. -I/scratch/crossdev-build/src
 /gcc-20010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/g
 cc-20010122/gcc/../include  -DL_trampoline -c
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c -o
 libgcc/./_trampoline.o
 /scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/xgcc -B/scratch/cro
 ssdev-build/armv5-linux/gcc-20010122-obj/gcc/ -B/scratch/crossdev/armv5-linu
 x/armv5-linux/bin/ -B/scratch/crossdev/armv5-linux/armv5-linux/lib/ -isystem
 /scratch/crossdev/armv5-linux/armv5-linux/include -O2  -DCROSS_COMPILE -DIN_
 GCC    -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -is
 ystem
 ./include  -fomit-frame-pointer -fPIC -g0 -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -
 D__GCC_FLOAT_NOT_NEEDED -Dinhibit_libc -I. -I. -I/scratch/crossdev-build/src
 /gcc-20010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/g
 cc-20010122/gcc/../include  -DL__main -c
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c -o libgcc/./__main.o
 /scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/xgcc -B/scratch/cro
 ssdev-build/armv5-linux/gcc-20010122-obj/gcc/ -B/scratch/crossdev/armv5-linu
 x/armv5-linux/bin/ -B/scratch/crossdev/armv5-linux/armv5-linux/lib/ -isystem
 /scratch/crossdev/armv5-linux/armv5-linux/include -O2  -DCROSS_COMPILE -DIN_
 GCC    -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -is
 ystem
 ./include  -fomit-frame-pointer -fPIC -g0 -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -
 D__GCC_FLOAT_NOT_NEEDED -Dinhibit_libc -I. -I. -I/scratch/crossdev-build/src
 /gcc-20010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/g
 cc-20010122/gcc/../include  -DL_exit -c
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c -o libgcc/./_exit.o
 /scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/xgcc -B/scratch/cro
 ssdev-build/armv5-linux/gcc-20010122-obj/gcc/ -B/scratch/crossdev/armv5-linu
 x/armv5-linux/bin/ -B/scratch/crossdev/armv5-linux/armv5-linux/lib/ -isystem
 /scratch/crossdev/armv5-linux/armv5-linux/include -O2  -DCROSS_COMPILE -DIN_
 GCC    -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -is
 ystem
 ./include  -fomit-frame-pointer -fPIC -g0 -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -
 D__GCC_FLOAT_NOT_NEEDED -Dinhibit_libc -I. -I. -I/scratch/crossdev-build/src
 /gcc-20010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/g
 cc-20010122/gcc/../include  -DL_absvsi2 -c
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c -o
 libgcc/./_absvsi2.o
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c: In function
 `__absvsi2':
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c:194: warning:
 implicit declaration of function `abort'
 /scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/xgcc -B/scratch/cro
 ssdev-build/armv5-linux/gcc-20010122-obj/gcc/ -B/scratch/crossdev/armv5-linu
 x/armv5-linux/bin/ -B/scratch/crossdev/armv5-linux/armv5-linux/lib/ -isystem
 /scratch/crossdev/armv5-linux/armv5-linux/include -O2  -DCROSS_COMPILE -DIN_
 GCC    -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -is
 ystem
 ./include  -fomit-frame-pointer -fPIC -g0 -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -
 D__GCC_FLOAT_NOT_NEEDED -Dinhibit_libc -I. -I. -I/scratch/crossdev-build/src
 /gcc-20010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/g
 cc-20010122/gcc/../include  -DL_absvdi2 -c
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c -o
 libgcc/./_absvdi2.o
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c: In function
 `__absvdi2':
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c:214: warning:
 implicit declaration of function `abort'
 /scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/xgcc -B/scratch/cro
 ssdev-build/armv5-linux/gcc-20010122-obj/gcc/ -B/scratch/crossdev/armv5-linu
 x/armv5-linux/bin/ -B/scratch/crossdev/armv5-linux/armv5-linux/lib/ -isystem
 /scratch/crossdev/armv5-linux/armv5-linux/include -O2  -DCROSS_COMPILE -DIN_
 GCC    -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -is
 ystem
 ./include  -fomit-frame-pointer -fPIC -g0 -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -
 D__GCC_FLOAT_NOT_NEEDED -Dinhibit_libc -I. -I. -I/scratch/crossdev-build/src
 /gcc-20010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/g
 cc-20010122/gcc/../include  -DL_addvsi3 -c
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c -o
 libgcc/./_addvsi3.o
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c: In function
 `__addvsi3':
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c:77: warning: implicit
 declaration of function `abort'
 /scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/xgcc -B/scratch/cro
 ssdev-build/armv5-linux/gcc-20010122-obj/gcc/ -B/scratch/crossdev/armv5-linu
 x/armv5-linux/bin/ -B/scratch/crossdev/armv5-linux/armv5-linux/lib/ -isystem
 /scratch/crossdev/armv5-linux/armv5-linux/include -O2  -DCROSS_COMPILE -DIN_
 GCC    -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -is
 ystem
 ./include  -fomit-frame-pointer -fPIC -g0 -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -
 D__GCC_FLOAT_NOT_NEEDED -Dinhibit_libc -I. -I. -I/scratch/crossdev-build/src
 /gcc-20010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/g
 cc-20010122/gcc/../include  -DL_addvdi3 -c
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c -o
 libgcc/./_addvdi3.o
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c: In function
 `__addvdi3':
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c:92: warning: implicit
 declaration of function `abort'
 /scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/xgcc -B/scratch/cro
 ssdev-build/armv5-linux/gcc-20010122-obj/gcc/ -B/scratch/crossdev/armv5-linu
 x/armv5-linux/bin/ -B/scratch/crossdev/armv5-linux/armv5-linux/lib/ -isystem
 /scratch/crossdev/armv5-linux/armv5-linux/include -O2  -DCROSS_COMPILE -DIN_
 GCC    -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -is
 ystem
 ./include  -fomit-frame-pointer -fPIC -g0 -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -
 D__GCC_FLOAT_NOT_NEEDED -Dinhibit_libc -I. -I. -I/scratch/crossdev-build/src
 /gcc-20010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/g
 cc-20010122/gcc/../include  -DL_subvsi3 -c
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c -o
 libgcc/./_subvsi3.o
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c: In function
 `__subvsi3':
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c:110: warning:
 implicit declaration of function `abort'
 /scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/xgcc -B/scratch/cro
 ssdev-build/armv5-linux/gcc-20010122-obj/gcc/ -B/scratch/crossdev/armv5-linu
 x/armv5-linux/bin/ -B/scratch/crossdev/armv5-linux/armv5-linux/lib/ -isystem
 /scratch/crossdev/armv5-linux/armv5-linux/include -O2  -DCROSS_COMPILE -DIN_
 GCC    -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -is
 ystem
 ./include  -fomit-frame-pointer -fPIC -g0 -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -
 D__GCC_FLOAT_NOT_NEEDED -Dinhibit_libc -I. -I. -I/scratch/crossdev-build/src
 /gcc-20010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/g
 cc-20010122/gcc/../include  -DL_subvdi3 -c
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c -o
 libgcc/./_subvdi3.o
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c: In function
 `__subvdi3':
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c:129: warning:
 implicit declaration of function `abort'
 /scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/xgcc -B/scratch/cro
 ssdev-build/armv5-linux/gcc-20010122-obj/gcc/ -B/scratch/crossdev/armv5-linu
 x/armv5-linux/bin/ -B/scratch/crossdev/armv5-linux/armv5-linux/lib/ -isystem
 /scratch/crossdev/armv5-linux/armv5-linux/include -O2  -DCROSS_COMPILE -DIN_
 GCC    -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -is
 ystem
 ./include  -fomit-frame-pointer -fPIC -g0 -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -
 D__GCC_FLOAT_NOT_NEEDED -Dinhibit_libc -I. -I. -I/scratch/crossdev-build/src
 /gcc-20010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/g
 cc-20010122/gcc/../include  -DL_mulvsi3 -c
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c -o
 libgcc/./_mulvsi3.o
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c: In function
 `__mulvsi3':
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c:145: warning:
 implicit declaration of function `abort'
 /scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/xgcc -B/scratch/cro
 ssdev-build/armv5-linux/gcc-20010122-obj/gcc/ -B/scratch/crossdev/armv5-linu
 x/armv5-linux/bin/ -B/scratch/crossdev/armv5-linux/armv5-linux/lib/ -isystem
 /scratch/crossdev/armv5-linux/armv5-linux/include -O2  -DCROSS_COMPILE -DIN_
 GCC    -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -is
 ystem
 ./include  -fomit-frame-pointer -fPIC -g0 -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -
 D__GCC_FLOAT_NOT_NEEDED -Dinhibit_libc -I. -I. -I/scratch/crossdev-build/src
 /gcc-20010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/g
 cc-20010122/gcc/../include  -DL_mulvdi3 -c
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c -o
 libgcc/./_mulvdi3.o
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c: In function
 `__mulvdi3':
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c:230: warning:
 implicit declaration of function `abort'
 /scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/xgcc -B/scratch/cro
 ssdev-build/armv5-linux/gcc-20010122-obj/gcc/ -B/scratch/crossdev/armv5-linu
 x/armv5-linux/bin/ -B/scratch/crossdev/armv5-linux/armv5-linux/lib/ -isystem
 /scratch/crossdev/armv5-linux/armv5-linux/include -O2  -DCROSS_COMPILE -DIN_
 GCC    -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -is
 ystem
 ./include  -fomit-frame-pointer -fPIC -g0 -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -
 D__GCC_FLOAT_NOT_NEEDED -Dinhibit_libc -I. -I. -I/scratch/crossdev-build/src
 /gcc-20010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/g
 cc-20010122/gcc/../include  -DL_negvsi2 -c
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c -o
 libgcc/./_negvsi2.o
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c: In function
 `__negvsi2':
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c:160: warning:
 implicit declaration of function `abort'
 /scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/xgcc -B/scratch/cro
 ssdev-build/armv5-linux/gcc-20010122-obj/gcc/ -B/scratch/crossdev/armv5-linu
 x/armv5-linux/bin/ -B/scratch/crossdev/armv5-linux/armv5-linux/lib/ -isystem
 /scratch/crossdev/armv5-linux/armv5-linux/include -O2  -DCROSS_COMPILE -DIN_
 GCC    -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -is
 ystem
 ./include  -fomit-frame-pointer -fPIC -g0 -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -
 D__GCC_FLOAT_NOT_NEEDED -Dinhibit_libc -I. -I. -I/scratch/crossdev-build/src
 /gcc-20010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/g
 cc-20010122/gcc/../include  -DL_negvdi2 -c
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c -o
 libgcc/./_negvdi2.o
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c: In function
 `__negvdi2':
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c:175: warning:
 implicit declaration of function `abort'
 /scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/xgcc -B/scratch/cro
 ssdev-build/armv5-linux/gcc-20010122-obj/gcc/ -B/scratch/crossdev/armv5-linu
 x/armv5-linux/bin/ -B/scratch/crossdev/armv5-linux/armv5-linux/lib/ -isystem
 /scratch/crossdev/armv5-linux/armv5-linux/include -O2  -DCROSS_COMPILE -DIN_
 GCC    -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -is
 ystem
 ./include  -fomit-frame-pointer -fPIC -g0 -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -
 D__GCC_FLOAT_NOT_NEEDED -Dinhibit_libc -I. -I. -I/scratch/crossdev-build/src
 /gcc-20010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/g
 cc-20010122/gcc/../include  -DL_ctors -c
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c -o libgcc/./_ctors.o
 /scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc/xgcc -B/scratch/cro
 ssdev-build/armv5-linux/gcc-20010122-obj/gcc/ -B/scratch/crossdev/armv5-linu
 x/armv5-linux/bin/ -B/scratch/crossdev/armv5-linux/armv5-linux/lib/ -isystem
 /scratch/crossdev/armv5-linux/armv5-linux/include -O2  -DCROSS_COMPILE -DIN_
 GCC    -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -is
 ystem
 ./include  -fomit-frame-pointer -fPIC -g0 -DHAVE_GTHR_DEFAULT -DIN_LIBGCC2 -
 D__GCC_FLOAT_NOT_NEEDED -Dinhibit_libc -I. -I. -I/scratch/crossdev-build/src
 /gcc-20010122/gcc -I/scratch/crossdev-build/src/gcc-20010122/gcc/. -I/scratc
 h/crossdev-build/src/gcc-20010122/gcc/config -I/scratch/crossdev-build/src/g
 cc-20010122/gcc/../include  -fexceptions -DL_eh -c
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c -o libgcc/./_eh.o
 In file included from gthr-default.h:1,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/gthr.h:98,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c:3136:
 /scratch/crossdev-build/src/gcc-20010122/gcc/gthr-posix.h:37:21: pthread.h:
 No such file or directory
 In file included from gthr-default.h:1,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/gthr.h:98,
                  from
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c:3136:
 /scratch/crossdev-build/src/gcc-20010122/gcc/gthr-posix.h:39: parse error
 before "__gthread_key_t"
 /scratch/crossdev-build/src/gcc-20010122/gcc/gthr-posix.h:39: warning: type
 defaults to `int' in declaration of `__gthread_key_t'
 /scratch/crossdev-build/src/gcc-20010122/gcc/gthr-posix.h:39: warning: data
 definition has no type or storage class
 /scratch/crossdev-build/src/gcc-20010122/gcc/gthr-posix.h:40: parse error
 before "__gthread_once_t"
 /scratch/crossdev-build/src/gcc-20010122/gcc/gthr-posix.h:40: warning: type
 defaults to `int' in declaration of `__gthread_once_t'
 /scratch/crossdev-build/src/gcc-20010122/gcc/gthr-posix.h:40: warning: data
 definition has no type or storage class
 /scratch/crossdev-build/src/gcc-20010122/gcc/gthr-posix.h:41: parse error
 before "__gthread_mutex_t"
 /scratch/crossdev-build/src/gcc-20010122/gcc/gthr-posix.h:41: warning: type
 defaults to `int' in declaration of `__gthread_mutex_t'
 /scratch/crossdev-build/src/gcc-20010122/gcc/gthr-posix.h:41: warning: data
 definition has no type or storage class
 /scratch/crossdev-build/src/gcc-20010122/gcc/gthr-posix.h:73:
 `pthread_create' undeclared here (not in a function)
 /scratch/crossdev-build/src/gcc-20010122/gcc/gthr-posix.h:427: parse error
 before '*' token
 /scratch/crossdev-build/src/gcc-20010122/gcc/gthr-posix.h:427: parse error
 before ')' token
 /scratch/crossdev-build/src/gcc-20010122/gcc/gthr-posix.h:436: parse error
 before '*' token
 /scratch/crossdev-build/src/gcc-20010122/gcc/gthr-posix.h:436: parse error
 before ')' token
 /scratch/crossdev-build/src/gcc-20010122/gcc/gthr-posix.h:442: parse error
 before "key"
 /scratch/crossdev-build/src/gcc-20010122/gcc/gthr-posix.h:443: warning:
 function declaration isn't a prototype
 /scratch/crossdev-build/src/gcc-20010122/gcc/gthr-posix.h: In function
 `__gthread_key_dtor':
 /scratch/crossdev-build/src/gcc-20010122/gcc/gthr-posix.h:445: `ptr'
 undeclared (first use in this function)
 /scratch/crossdev-build/src/gcc-20010122/gcc/gthr-posix.h:445: (Each
 undeclared identifier is reported only once
 /scratch/crossdev-build/src/gcc-20010122/gcc/gthr-posix.h:445: for each
 function it appears in.)
 /scratch/crossdev-build/src/gcc-20010122/gcc/gthr-posix.h:446: warning:
 implicit declaration of function `pthread_setspecific'
 /scratch/crossdev-build/src/gcc-20010122/gcc/gthr-posix.h:446: `key'
 undeclared (first use in this function)
 /scratch/crossdev-build/src/gcc-20010122/gcc/gthr-posix.h: At top level:
 /scratch/crossdev-build/src/gcc-20010122/gcc/gthr-posix.h:452: parse error
 before "key"
 /scratch/crossdev-build/src/gcc-20010122/gcc/gthr-posix.h:453: warning:
 function declaration isn't a prototype
 /scratch/crossdev-build/src/gcc-20010122/gcc/gthr-posix.h: In function
 `__gthread_key_delete':
 /scratch/crossdev-build/src/gcc-20010122/gcc/gthr-posix.h:454: warning:
 implicit declaration of function `pthread_key_delete'
 /scratch/crossdev-build/src/gcc-20010122/gcc/gthr-posix.h:454: `key'
 undeclared (first use in this function)
 /scratch/crossdev-build/src/gcc-20010122/gcc/gthr-posix.h: At top level:
 /scratch/crossdev-build/src/gcc-20010122/gcc/gthr-posix.h:458: parse error
 before "key"
 /scratch/crossdev-build/src/gcc-20010122/gcc/gthr-posix.h:459: warning:
 function declaration isn't a prototype
 /scratch/crossdev-build/src/gcc-20010122/gcc/gthr-posix.h: In function
 `__gthread_getspecific':
 /scratch/crossdev-build/src/gcc-20010122/gcc/gthr-posix.h:460: warning:
 implicit declaration of function `pthread_getspecific'
 /scratch/crossdev-build/src/gcc-20010122/gcc/gthr-posix.h:460: `key'
 undeclared (first use in this function)
 /scratch/crossdev-build/src/gcc-20010122/gcc/gthr-posix.h:460: warning:
 return makes pointer from integer without a cast
 /scratch/crossdev-build/src/gcc-20010122/gcc/gthr-posix.h: At top level:
 /scratch/crossdev-build/src/gcc-20010122/gcc/gthr-posix.h:464: parse error
 before "key"
 /scratch/crossdev-build/src/gcc-20010122/gcc/gthr-posix.h:465: warning:
 function declaration isn't a prototype
 /scratch/crossdev-build/src/gcc-20010122/gcc/gthr-posix.h: In function
 `__gthread_setspecific':
 /scratch/crossdev-build/src/gcc-20010122/gcc/gthr-posix.h:466: `key'
 undeclared (first use in this function)
 /scratch/crossdev-build/src/gcc-20010122/gcc/gthr-posix.h:466: `ptr'
 undeclared (first use in this function)
 /scratch/crossdev-build/src/gcc-20010122/gcc/gthr-posix.h: At top level:
 /scratch/crossdev-build/src/gcc-20010122/gcc/gthr-posix.h:470: parse error
 before '*' token
 /scratch/crossdev-build/src/gcc-20010122/gcc/gthr-posix.h:471: warning:
 function declaration isn't a prototype
 /scratch/crossdev-build/src/gcc-20010122/gcc/gthr-posix.h: In function
 `__gthread_mutex_lock':
 /scratch/crossdev-build/src/gcc-20010122/gcc/gthr-posix.h:473: warning:
 implicit declaration of function `pthread_mutex_lock'
 /scratch/crossdev-build/src/gcc-20010122/gcc/gthr-posix.h:473: `mutex'
 undeclared (first use in this function)
 /scratch/crossdev-build/src/gcc-20010122/gcc/gthr-posix.h: At top level:
 /scratch/crossdev-build/src/gcc-20010122/gcc/gthr-posix.h:479: parse error
 before '*' token
 /scratch/crossdev-build/src/gcc-20010122/gcc/gthr-posix.h:480: warning:
 function declaration isn't a prototype
 /scratch/crossdev-build/src/gcc-20010122/gcc/gthr-posix.h: In function
 `__gthread_mutex_trylock':
 /scratch/crossdev-build/src/gcc-20010122/gcc/gthr-posix.h:482: warning:
 implicit declaration of function `pthread_mutex_trylock'
 /scratch/crossdev-build/src/gcc-20010122/gcc/gthr-posix.h:482: `mutex'
 undeclared (first use in this function)
 /scratch/crossdev-build/src/gcc-20010122/gcc/gthr-posix.h: At top level:
 /scratch/crossdev-build/src/gcc-20010122/gcc/gthr-posix.h:488: parse error
 before '*' token
 /scratch/crossdev-build/src/gcc-20010122/gcc/gthr-posix.h:489: warning:
 function declaration isn't a prototype
 /scratch/crossdev-build/src/gcc-20010122/gcc/gthr-posix.h: In function
 `__gthread_mutex_unlock':
 /scratch/crossdev-build/src/gcc-20010122/gcc/gthr-posix.h:491: warning:
 implicit declaration of function `pthread_mutex_unlock'
 /scratch/crossdev-build/src/gcc-20010122/gcc/gthr-posix.h:491: `mutex'
 undeclared (first use in this function)
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c: In function
 `__default_terminate':
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c:3143: warning:
 implicit declaration of function `abort'
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c: In function
 `__throw_type_match':
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c:3162: warning:
 implicit declaration of function `strcmp'
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c: In function
 `new_eh_context':
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c:3194: warning:
 implicit declaration of function `memset'
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c: At top level:
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c:3208: parse error
 before "eh_context_key"
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c:3208: warning: type
 defaults to `int' in declaration of `eh_context_key'
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c:3208: warning: data
 definition has no type or storage class
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c: In function
 `eh_threads_initialize':
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c:3266: warning:
 implicit declaration of function `__gthread_key_create'
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c: In function
 `eh_context_initialize':
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c:3282: syntax error
 before "once"
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c:3286: warning:
 implicit declaration of function `__gthread_once'
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c:3286: `once'
 undeclared (first use in this function)
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c:3294: syntax error
 before "once_regsizes"
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c:3295: `once_regsizes'
 undeclared (first use in this function)
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c: In function
 `copy_reg':
 /scratch/crossdev-build/src/gcc-20010122/gcc/libgcc2.c:3835: warning:
 implicit declaration of function `memcpy'
 make[2]: *** [libgcc/./_eh.o] Error 1
 make[2]: Leaving directory
 `/scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc'
 make[1]: *** [libgcc.a] Error 2
 make[1]: Leaving directory
 `/scratch/crossdev-build/armv5-linux/gcc-20010122-obj/gcc'
 make: *** [all-gcc] Error 2
 + exit 1
 
 
 
 
 > This doesn't help much -- I'm not running Linux myself so I can't see from
 > this what is failing.  Please can you run the script with
 >
 > /bin/bash -xv make-cross.sh <your usual args>
 >
 > and post the output.  Also, I suspect I shall need to see the
 > pre-processed output of the file that is failing to compile.
 >
 > R.
 >
 
 


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]