public inbox for gcc-help@gcc.gnu.org
 help / color / mirror / Atom feed
* Cross compiler
@ 2000-01-03  5:44 David Toba
  2000-04-01  0:00 ` David Toba
  0 siblings, 1 reply; 13+ messages in thread
From: David Toba @ 2000-01-03  5:44 UTC (permalink / raw)
  To: help-gcc

Happy new year,

Can I build a cross compiler for MIPS 
processor.

Thank you,
 

____________________________________________________________________
Get free email and a permanent address at http://www.netaddress.com/?N=1

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Cross compiler
  2000-01-03  5:44 Cross compiler David Toba
@ 2000-04-01  0:00 ` David Toba
  0 siblings, 0 replies; 13+ messages in thread
From: David Toba @ 2000-04-01  0:00 UTC (permalink / raw)
  To: help-gcc

Happy new year,

Can I build a cross compiler for MIPS 
processor.

Thank you,
 

____________________________________________________________________
Get free email and a permanent address at http://www.netaddress.com/?N=1

^ permalink raw reply	[flat|nested] 13+ messages in thread

* cross compiler
@ 2002-09-10  2:28 Qiang YiLiang
  0 siblings, 0 replies; 13+ messages in thread
From: Qiang YiLiang @ 2002-09-10  2:28 UTC (permalink / raw)
  To: gcc-help

I have a cross compiler, it means that "mips-mips-elf-gcc".

What's the elf format?

And it seems that it has some relations to the gnu gcc, and what's the 
relation?

Rgrds,
Yiliang


^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: cross compiler
  2002-05-06 11:10 Wimberly Eddie Contr WRALC/LYSFR
@ 2002-05-06 22:10 ` Frank Schaefer
  0 siblings, 0 replies; 13+ messages in thread
From: Frank Schaefer @ 2002-05-06 22:10 UTC (permalink / raw)
  To: gcc-help

On Mon, 2002-05-06 at 20:09, Wimberly Eddie Contr WRALC/LYSFR wrote:
> I am trying to make a cross-compiler targeted for m68k-wrs-vxworks hosted on
> sun solaris 8.  Has anyone else been successful at this?  I have read thru
> the FAQ and failed at each attempt to make a cross compiler.
>  
> Can somebody point to me to some up-to-date documentation?  Everything that
> I can find seems to be for much older versions of gcc.
>  
> Thanks,
>  
> Eddie
Hi Eddie,

try
http://gcc.gnu.org/onlinedocs/gcc-3.0.4/gcc_4.html#SEC59

Hope this helps
Frank

^ permalink raw reply	[flat|nested] 13+ messages in thread

* cross compiler
@ 2002-05-06 11:10 Wimberly Eddie Contr WRALC/LYSFR
  2002-05-06 22:10 ` Frank Schaefer
  0 siblings, 1 reply; 13+ messages in thread
From: Wimberly Eddie Contr WRALC/LYSFR @ 2002-05-06 11:10 UTC (permalink / raw)
  To: gcc-help


[-- Attachment #1.1: Type: text/plain, Size: 364 bytes --]

I am trying to make a cross-compiler targeted for m68k-wrs-vxworks hosted on
sun solaris 8.  Has anyone else been successful at this?  I have read thru
the FAQ and failed at each attempt to make a cross compiler.
 
Can somebody point to me to some up-to-date documentation?  Everything that
I can find seems to be for much older versions of gcc.
 
Thanks,
 
Eddie

[-- Attachment #1.2: Type: text/html, Size: 1206 bytes --]

^ permalink raw reply	[flat|nested] 13+ messages in thread

* RE: Cross Compiler
       [not found] <616BE6A276E3714788D2AC35C40CD18D2C4E1C@whale.softwire.co.uk>
@ 2002-01-07 10:07 ` Rupert Wood
  0 siblings, 0 replies; 13+ messages in thread
From: Rupert Wood @ 2002-01-07 10:07 UTC (permalink / raw)
  To: 'Antonio Catani'; +Cc: gcc-help

Antonio Catani wrotes:

> Sparc system is so slow to compile kernel, so, my ix86 system is to
> fast, for this i would like build a cross compiler from ix86 linux
> system to sparc system.

I haven't had much luck building cross-compilers for sparc-linux (at
least from solaris), but here's the process: you need binutils and GCC
distributions, plus sparc-linux system includes and libraries. It sounds
like you already have a working sparc-linux system so you can just take
the last two from that: otherwise, you'll need to generate them from
glibc and the linux kernel source.

1. Copy the contents of /lib (but not subdirectories) and /usr/lib (but
not subdirectories) from your sparc-linux machine to a directory your
build machine.
2. Copy the whole /usr/include tree from your sparc-linux machine to a
directory on your build machine. Make sure you copy the contents of
/usr/include/asm and /usr/include/linux rather than just the symlinks!
3. Uncompress binutils and gcc into the same source tree. Whichever one
has the more recent include and libiberty files should take precedence.
You can do this a number of ways, including combining separate trees
using find and cpio (see http://gcc.gnu.org/simtest-howto.html) or just
untar them both into the same directory using symlinks, e.g.:

    fox:~/src$ mkdir toolchain
    fox:~/src$ ln -s toolchain binutils-2.11.2
    fox:~/src$ ln -s toolchain gcc-3.02
    fox:~/src$ bzip2 -cd binutils-2.11.2.tar.bz2 |tar xvf -
    fox:~/src$ bzip2 -cd gcc-3.02.tar.bz2 |tar xvf -

4. In an empty build directory, configure, build and install the
toolchain, e.g.:

    fox:~/build/sparc-linux$ ~/src/toolchain/configure \
    --prefix=<wherever> \
    --with-headers=<path to sparc-linux /usr/include copy> \
    --with-libs=<path to sparc-linux /lib copy> \
    --with-libs=<path to sparc-linux /usr/lib copy> \
    --enable-languages=c \
    --target=sparc-linux && make && make install

(I don't think you need C++ for the kernel, do you?) Beware that the
configure and install steps above will attempt to write to the prefix
tree, so you'll need appropriate permissions (or set prefix to a subdir
of your home directory.)

You now might have 'sparc-linux-gcc' and friends, so you can edit the
kernel makefile:

    ARCH=sparc
    CROSS-COMPILE=sparc-linux-

However, my build falls over because (I think) of a specs error: the new
sparc-linux linker tries to link in /lib/ld-linux.so even though this
belogs to the build system and not the target system. I'm no specs
wizard and I haven't had time to come up with a correct fix for this
yet. Hacking around that, the kernel build falls over because
'task_struct' doesn't seem to be defined, and I know even less about the
kernel sources to try and fix that one.

Good luck,
Rup.

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Cross Compiler
@ 2002-01-07  9:24 Antonio Catani
  0 siblings, 0 replies; 13+ messages in thread
From: Antonio Catani @ 2002-01-07  9:24 UTC (permalink / raw)
  To: gcc-help

Hi list, i'have a linux machine with red-hat 7.2on ix86 machine and i would
like build a gcc cross compiler for old sparc system, someone have try to do
it? if yes, it's possible to get some doc how-to build cross-compiler? i'v
read some doc, but when start to compile the kernel for sparc, i get a big
number of warning and some errors and the process cont continue and i dont
be able to build the kernel.
Sparc system is so slow to compile kernel, so, my ix86 system is to fast,
for this i would like build a cross compiler from ix86 linux system to sparc
system.

Any Help wil be accepted

Many thanks

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: cross compiler
  2001-07-27 12:16 cross compiler Der Herr Hofrat
@ 2001-07-28 20:25 ` Alexandre Oliva
  0 siblings, 0 replies; 13+ messages in thread
From: Alexandre Oliva @ 2001-07-28 20:25 UTC (permalink / raw)
  To: Der Herr Hofrat; +Cc: gcc-help

On Jul 27, 2001, Der Herr Hofrat <der.herr@hofr.at> wrote:

>  I'm trying to cross compile glibc-2.1.3 for ppc.

> can anybody point me to a dummys guide for crosscompiling or point me to
> some line here where I messed up ?

May I suggest that, to ask questions about how to build glibc, you use
some glibc-specific mailing list?

> C-ctype.c:379: parse error before `{'
> C-ctype.c:382: parse error before `}'

What's there in these lines?

-- 
Alexandre Oliva   Enjoy Guarana', see http://www.ic.unicamp.br/~oliva/
Red Hat GCC Developer                  aoliva@{cygnus.com, redhat.com}
CS PhD student at IC-Unicamp        oliva@{lsd.ic.unicamp.br, gnu.org}
Free Software Evangelist    *Please* write to mailing lists, not to me

^ permalink raw reply	[flat|nested] 13+ messages in thread

* cross compiler
@ 2001-07-27 12:16 Der Herr Hofrat
  2001-07-28 20:25 ` Alexandre Oliva
  0 siblings, 1 reply; 13+ messages in thread
From: Der Herr Hofrat @ 2001-07-27 12:16 UTC (permalink / raw)
  To: gcc-help

HI !

 I'm trying to cross compile glibc-2.1.3 for ppc . The
 INSTALL claims its realy easy ...

 I exported CC=3Dppc-linux-gcc and setup configparms to=20
 point to a few values

PATH	:=3D/opt/rtldk-1.0/bin:${PATH}
CC	:=3Dppc-linux-gcc
BUILD_CC	:=3Dgcc
AS	:=3Dppc-linux-as
RANLIB	:=3Dppc-linux-ranlib


and ran configure with


./configure ppc-linux --with-bindir=3D/opt/rtldk-1.0/bin \
    --with-binutils=3D/opt/rtldk-1.0/bin \
    --with-headers=3D/opt/rtldk-1.0/ppc-linux/include/ \
    --libdir=3D/opt/rtldk-1.0/ppc-linux/lib/ \
    --includedir=3D/opt/rtldk-1.0/ppc-linux/include \
    --enable-add-ons=3Dcrypt,linuxthreads

can anybody point me to a dummys guide for crosscompiling or point me to
some line here where I messed up ?

thx !
hofrat

---- output of make ----

(echo 'sysd-Makefile-sysdirs :=3D sysdeps/powerpc/elf crypt/sysdeps/unix li=
nuxthreads/sysdeps/unix/sysv/linux linuxthreads/sysdeps/pthread linuxthread=
s/sysdeps/unix/sysv linuxthreads/sysdeps/unix linuxthreads/sysdeps/powerpc =
sysdeps/unix/sysv/linux/powerpc=
 sysdeps/unix/sysv/linux sysdeps/gnu sysdeps/unix/common sysdeps/unix/mman =
sysdeps/unix/inet sysdeps/unix/sysv sysdeps/unix sysdeps/posix sysdeps/powe=
rpc sysdeps/wordsize-32 sysdeps/ieee754 sysdeps/libm-ieee754 sysdeps/generi=
c/elf sysdeps/generic';		   =20=
  \
 for file in sysdeps/powerpc/elf/Makefile crypt/sysdeps/unix/Makefile linux=
threads/sysdeps/unix/sysv/linux/Makefile linuxthreads/sysdeps/pthread/Makef=
ile linuxthreads/sysdeps/unix/sysv/Makefile linuxthreads/sysdeps/unix/Makef=
ile linuxthreads/sysdeps/powe=
rpc/Makefile sysdeps/unix/sysv/linux/powerpc/Makefile sysdeps/unix/sysv/lin=
ux/Makefile sysdeps/gnu/Makefile sysdeps/unix/common/Makefile sysdeps/unix/=
mman/Makefile sysdeps/unix/inet/Makefile sysdeps/unix/sysv/Makefile sysdeps=
/unix/Makefile sysdeps/posix/=
Makefile sysdeps/powerpc/Makefile sysdeps/wordsize-32/Makefile sysdeps/ieee=
754/Makefile sysdeps/libm-ieee754/Makefile sysdeps/generic/elf/Makefile sys=
deps/generic/Makefile; do  			      \
   if [ -f $file ]; then					      \
     echo include "\$(..)$file";				      \
   else true; fi;						      \
 done;								      \
 echo 'sysd-Makefile-done=3Dt') > sysdeps/../sysd-MakefileT
mv -f sysdeps/../sysd-MakefileT sysdeps/../sysd-Makefile
gawk 'BEGIN { subdirs =3D ""; inhibit =3D "" };			\
/^#/ { next };						\
/^[^-]/ { subdirs =3D subdirs " " $0 };			\
/^-/ { inhibit =3D inhibit " " substr($0, 2) };		\
END { printf "sysdep-subdirs =3D%s\n", subdirs;		\
      printf "sysdep-inhibit-subdirs =3D%s\n", inhibit;	\
      print "sysd-dirs-done =3D t" }'			\
       /dev/null linuxthreads/sysdeps/pthread/Subdirs sysdeps/unix/inet/Sub=
dirs sysdeps/unix/Subdirs > sysdeps/../sysd-dirs-tmp
mv -f sysdeps/../sysd-dirs-tmp sysdeps/../sysd-dirs
cat Versions.def > sysdeps/../Versions.allT
mv -f sysdeps/../Versions.allT sysdeps/../Versions.all
{ echo 'sysd-versions-subdirs =3D csu assert ctype db db2 locale intl catge=
ts math setjmp signal stdlib stdio-common libio malloc string wcsmbs time d=
irent grp pwd posix io termios resource misc socket sysvipc gmon gnulib ico=
nv iconvdata wctype manual shad=
ow md5-crypt po argp crypt linuxthreads nss localedata timezone rt debug li=
nuxthreads_db inet resolv hesiod sunrpc nis nscd streams login elf sysdeps/=
powerpc/elf crypt/sysdeps/unix linuxthreads/sysdeps/unix/sysv/linux linuxth=
reads/sysdeps/pthread linuxth=
reads/sysdeps/unix/sysv linuxthreads/sysdeps/unix linuxthreads/sysdeps/powe=
rpc sysdeps/unix/sysv/linux/powerpc sysdeps/unix/sysv/linux sysdeps/gnu sys=
deps/unix/common sysdeps/unix/mman sysdeps/unix/inet sysdeps/unix/sysv sysd=
eps/unix sysdeps/posix sysdep=
s/powerpc sysdeps/wordsize-32 sysdeps/ieee754 sysdeps/libm-ieee754 sysdeps/=
generic/elf sysdeps/generic' ; \
  LC_ALL=3DC gawk -v buildroot=3Dsysdeps/../ -v defsfile=3Dsysdeps/../Versi=
ons.all \
	 -v move_if_change=3D'/bin/sh scripts/move-if-change' \
	 -f scripts/versions.awk csu/Versions assert/Versions ctype/Versions db/Ve=
rsions db2/Versions locale/Versions intl/Versions catgets/Versions math/Ver=
sions setjmp/Versions signal/Versions stdlib/Versions stdio-common/Versions=
 libio/Versions malloc/Versio=
ns string/Versions wcsmbs/Versions time/Versions dirent/Versions grp/Versio=
ns pwd/Versions posix/Versions io/Versions termios/Versions resource/Versio=
ns misc/Versions socket/Versions sysvipc/Versions gmon/Versions iconv/Versi=
ons wctype/Versions shadow/Ve=
rsions md5-crypt/Versions argp/Versions linuxthreads/Versions nss/Versions =
rt/Versions debug/Versions linuxthreads_db/Versions inet/Versions resolv/Ve=
rsions hesiod/Versions sunrpc/Versions nis/Versions streams/Versions login/=
Versions elf/Versions sysdeps=
/unix/sysv/linux/Versions sysdeps/unix/sysv/Versions sysdeps/powerpc/Versio=
ns; \
} > sysdeps/../sysd-versionsT
mv -f sysdeps/../sysd-versionsT sysdeps/../sysd-versions
(echo 'sysd-rules-sysdirs :=3D sysdeps/powerpc/elf crypt/sysdeps/unix linux=
threads/sysdeps/unix/sysv/linux linuxthreads/sysdeps/pthread linuxthreads/s=
ysdeps/unix/sysv linuxthreads/sysdeps/unix linuxthreads/sysdeps/powerpc sys=
deps/unix/sysv/linux/powerpc sy=
sdeps/unix/sysv/linux sysdeps/gnu sysdeps/unix/common sysdeps/unix/mman sys=
deps/unix/inet sysdeps/unix/sysv sysdeps/unix sysdeps/posix sysdeps/powerpc=
 sysdeps/wordsize-32 sysdeps/ieee754 sysdeps/libm-ieee754 sysdeps/generic/e=
lf sysdeps/generic';		      \=

 for dir in '$(..)sysdeps/powerpc/elf' '$(..)crypt/sysdeps/unix' '$(..)linu=
xthreads/sysdeps/unix/sysv/linux' '$(..)linuxthreads/sysdeps/pthread' '$(..=
)linuxthreads/sysdeps/unix/sysv' '$(..)linuxthreads/sysdeps/unix' '$(..)lin=
uxthreads/sysdeps/powerpc' '$=
(..)sysdeps/unix/sysv/linux/powerpc' '$(..)sysdeps/unix/sysv/linux' '$(..)s=
ysdeps/gnu' '$(..)sysdeps/unix/common' '$(..)sysdeps/unix/mman' '$(..)sysde=
ps/unix/inet' '$(..)sysdeps/unix/sysv' '$(..)sysdeps/unix' '$(..)sysdeps/po=
six' '$(..)sysdeps/powerpc' '=
$(..)sysdeps/wordsize-32' '$(..)sysdeps/ieee754' '$(..)sysdeps/libm-ieee754=
' '$(..)sysdeps/generic/elf' '$(..)sysdeps/generic'; do			      \
   for o in .o .os .op .og .ob .oS; do \
      \
     echo "\$(objpfx)%$o: $dir/%.S \$(before-compile); \
	  \$(compile-command.S)";				      \
     echo "\$(objpfx)%$o: $dir/%.s \$(before-compile); \
	  \$(compile-command.s)";				      \
     	\
     echo "\$(objpfx)%$o: $dir/%.c \$(before-compile); \
	  \$(compile-command.c)";				      \
   done; \
    \
   echo "\$(objpfx)%.d: $dir/%.s \$(common-objpfx)dummy.d; \
	\$(make-dummy-dep)";			       \
   echo "\$(objpfx)%.d: $dir/%.S \$(before-compile); \
	\$(+make-deps)";					      \
   	\
   echo "\$(objpfx)%.d: $dir/%.c \$(before-compile); \
	\$(+make-deps)";					      \
 done;								      \
 echo 'sysd-rules-done =3D t') > sysdeps/../sysd-rulesT
mv -f sysdeps/../sysd-rulesT sysdeps/../sysd-rules
for dir in sysdeps/powerpc/elf crypt/sysdeps/unix linuxthreads/sysdeps/unix=
/sysv/linux linuxthreads/sysdeps/pthread linuxthreads/sysdeps/unix/sysv lin=
uxthreads/sysdeps/unix linuxthreads/sysdeps/powerpc sysdeps/unix/sysv/linux=
/powerpc sysdeps/unix/sysv/li=
nux sysdeps/gnu sysdeps/unix/common sysdeps/unix/mman sysdeps/unix/inet sys=
deps/unix/sysv sysdeps/unix sysdeps/posix sysdeps/powerpc sysdeps/wordsize-=
32 sysdeps/ieee754 sysdeps/libm-ieee754 sysdeps/generic/elf sysdeps/generic=
; do \
  test -f $dir/syscalls.list && \
  { /bin/sh sysdeps/unix/make-syscalls.sh $dir || exit 1; }; \
  test $dir =3D sysdeps/unix && break; \
done > sysdeps/../sysd-syscallsT
mv -f sysdeps/../sysd-syscallsT sysdeps/../sysd-syscalls
{ { dirs=3D'nis nscd nss rt';\
    for d in $dirs; do						  \
      while read on; do						  \
	echo "depend $d $on";					  \
      done < $d/Depend;					  \
    done;							  \
    for f in csu assert ctype db db2 locale intl catgets math setjmp signal=
 stdlib stdio-common libio malloc string wcsmbs time dirent grp pwd posix i=
o termios resource misc socket sysvipc gmon gnulib iconv iconvdata wctype m=
anual shadow md5-crypt po arg=
p crypt linuxthreads nss localedata timezone rt debug linuxthreads_db inet =
resolv hesiod sunrpc nis nscd streams login elf; do					  \
      echo $f;							  \
    done;							  \
  } | gawk -f scripts/gen-sorted.awk &&						  \
  echo sysd-sorted-done =3D t;					  \
} > sysdeps/../sysd-sorted-tmp
mv -f sysdeps/../sysd-sorted-tmp sysdeps/../sysd-sorted
(file=3D"linuxthreads/shlib-versions \
       linuxthreads/shlib-versions linuxthreads_db/shlib-versions \
       shlib-versions"; \
 for f in $file; do \
   sed 's/#.*$//' $f | while read conf versions; do \
     test -n "$versions" && \
     test `expr 'powerpc-unknown-linux-gnu' \
		: "$conf"` !=3D 0 || continue; \
     for v in $versions; do \
       lib=3D`echo $v | sed 's/=3D.*$//'`; \
       if eval "test -z \"\$vers_lib$lib\""; then \
	 eval vers_lib${lib}=3Dyes; \
	 number=3D`echo $v | sed "s/^.*=3D//"`; \
	 case $number in \
	   [0-9]*) echo "$lib.so-version=3D.$number"; \
		   echo "all-sonames+=3D$lib.so\$($lib.so-version)";;\
	   *) echo "$lib.so-version=3D$number"; \
	      echo "all-sonames+=3D\$($lib.so-version)";;  \
         esac; \
       fi; \
     done; \
   done; \
 done;) > sysdeps/../soversions.mkT; exit 0
mv -f sysdeps/../soversions.mkT sysdeps/../soversions.mk
rm -f stamp.o; > stamp.o
rm -f stamp.os; > stamp.os
rm -f stamp.op; > stamp.op
rm -f stamp.oS; > stamp.oS
make  -C csu subdir_lib
make[1]: Entering directory `/opt/rtldk-1.0/ppc_root_src/glibc/glibc-2.1.3/=
csu'
echo '#include "../posix/bits/posix1_lim.h"' |		\
SUNPRO_DEPENDENCIES=3D'../bits/stdio_lim.dT ../bits/stdio_lim.st'				\
ppc-linux-gcc -I../include -I.  -I.. -I../libio  -I../sysdeps/powerpc/elf -=
I../crypt/sysdeps/unix -I../linuxthreads/sysdeps/unix/sysv/linux -I../linux=
threads/sysdeps/pthread -I../linuxthreads/sysdeps/unix/sysv -I../linuxthrea=
ds/sysdeps/unix -I../linuxthr=
eads/sysdeps/powerpc -I../sysdeps/unix/sysv/linux/powerpc -I../sysdeps/unix=
/sysv/linux -I../sysdeps/gnu -I../sysdeps/unix/common -I../sysdeps/unix/mma=
n -I../sysdeps/unix/inet -I../sysdeps/unix/sysv -I../sysdeps/unix -I../sysd=
eps/posix -I../sysdeps/powerp=
c -I../sysdeps/wordsize-32 -I../sysdeps/ieee754 -I../sysdeps/libm-ieee754 -=
I../sysdeps/generic/elf -I../sysdeps/generic  -nostdinc -isystem /opt/rtldk=
-1.0/lib/gcc-lib/ppc-linux/2.95.2/include -isystem /opt/rtldk-1.0/ppc-linux=
/include/ -E -dM -xc - -o ../=
bits/stdio_lim.hT
mv -f ../bits/stdio_lim.dT ../bits/stdio_lim.d
fopen_max=3D`sed -n 's/^#define OPEN_MAX //p' ../bits/stdio_lim.hT`; 	\
filename_max=3D`sed -n 's/^#define PATH_MAX //p' ../bits/stdio_lim.hT`;	\
fopen_max=3D${fopen_max:-16};					\
filename_max=3D${filename_max:-1024};				\
sed -e "s/@FOPEN_MAX@/$fopen_max/"				\
    -e "s/@FILENAME_MAX@/$filename_max/"			\
    -e "s/@L_tmpnam@/20/"				\
    -e "s/@TMP_MAX@/238328/"				\
    -e "s/@L_ctermid@/9/"				\
    -e "s/@L_cuserid@/9/"				\
    ../stdio-common/stdio_lim.h.in > ../bits/stdio_lim.h.new
/bin/sh ../scripts/move-if-change ../bits/stdio_lim.h.new ../bits/stdio_lim=
.h
rm -f ../bits/stdio_lim.hT ../bits/stdio_lim.dT
touch ../bits/stdio_lim.st
(case linux-gnu in \
   linux*) version=3D`(echo -e "#include <linux/version.h>\nUTS_RELEASE"\
		     | ppc-linux-gcc -E -P - | \
		     sed -e 's/"\([^"]*\)".*/\1/p' -e d) 2>/dev/null`;\
	   if [ -z "$version" ]; then \
	     if [ -r /proc/version ]; then \
	       version=3D`sed 's/.*Linux version \([^ ]*\) .*/>>\1<</' \
			< /proc/version`; \
	     else \
	       version=3D`uname -r`; \
	     fi; \
	   fi; \
	   echo -n "\"Compiled on a Linux $version system "; \
	   echo "on `date +%Y-%m-%d`.\\n\"" ;; \
   *) ;; \
 esac; \
 files=3D"../libio/Banner ../crypt/Banner ../linuxthreads/Banner ../resolv/=
Banner ../linuxthreads_db/Banner ../nis/Banner";				\
 if test -n "$files"; then				\
   echo "\"Available extensions:";			\
   sed -e '/^#/d' -e 's/^[[:space:]]*/	/' $files;	\
   echo "\"";						\
 fi) > version-info.hT
mv -f version-info.hT version-info.h
(echo '/* This file is automatically generated.';\
 echo '   It defines macros to allow user program to find the shared';\
 echo '   library files which come as part of GNU libc.  */';\
 echo '#ifndef __GNU_LIB_NAMES_H'; \
 echo '#define __GNU_LIB_NAMES_H	1'; \
 echo; \
 (libs=3D'libpthread.so.0 libpthread.so.0 libthread_db.so.1 libm.so.6 libc.=
so.6 ld.so.1 libdl.so.2 libutil.so.1 libresolv.so.2 libnss_files.so.2 libns=
s_dns.so.2 libnss_db.so.2 libnss_compat.so.2 libnss_nis.so.2 libnss_nisplus=
.so.2 libnss_ldap.so.2 libnss_h=
esiod.so.2 libnsl.so.1 libdb.so.3 libdb1.so.2 libcrypt.so.1 libBrokenLocale=
.so.1 librt.so.1';\
  for l in $libs; do \
    upname=3D`echo $l | sed 's/[.]so.*//' | \
	    tr 'abcdefghijklmnopqrstuvwxyz-' \
	       'ABCDEFGHIJKLMNOPQRSTUVWXYZ_'`; \
    echo "#define	${upname}_SO	\"$l\""; \
  done;) | sort; \
 echo; \
 echo '#endif	/* gnu/lib-names.h */';) > ../gnu/lib-names.T
/bin/sh ../scripts/move-if-change ../gnu/lib-names.T ../gnu/lib-names.h
touch ../gnu/lib-names.stmp
rm -f abi-tag.h.new
sed -e 's/#.*$//' -e '/^[ 	]*$/d' ../abi-tags | \
while read conf tag; do \
  test `expr 'powerpc-unknown-linux-gnu' \
	     : "$conf"` !=3D 0 || continue; \
  echo "$tag" | \
  sed -e 's/[^0-9xXa-fA-F]/ /g' -e 's/ *$//' \
      -e 's/ /,/g' -e 's/^ */#define ABI_TAG /' > abi-tag.h.new; \
done
if test -r abi-tag.h.new; then mv -f abi-tag.h.new abi-tag.h; \
else echo >&2 'This configuration not matched in ../abi-tags'; exit 1; fi
make[1]: Leaving directory `/opt/rtldk-1.0/ppc_root_src/glibc/glibc-2.1.3/c=
su'
make[1]: Entering directory `/opt/rtldk-1.0/ppc_root_src/glibc/glibc-2.1.3/=
csu'
ppc-linux-gcc ../sysdeps/unix/sysv/linux/init-first.c -c -O -Wall -Winline =
-Wstrict-prototypes -Wwrite-strings -g   -fkeep-inline-functions   -I../inc=
lude -I.  -I.. -I../libio  -I../sysdeps/powerpc/elf -I../crypt/sysdeps/unix=
 -I../linuxthreads/sysdeps/un=
ix/sysv/linux -I../linuxthreads/sysdeps/pthread -I../linuxthreads/sysdeps/u=
nix/sysv -I../linuxthreads/sysdeps/unix -I../linuxthreads/sysdeps/powerpc -=
I../sysdeps/unix/sysv/linux/powerpc -I../sysdeps/unix/sysv/linux -I../sysde=
ps/gnu -I../sysdeps/unix/comm=
on -I../sysdeps/unix/mman -I../sysdeps/unix/inet -I../sysdeps/unix/sysv -I.=
./sysdeps/unix -I../sysdeps/posix -I../sysdeps/powerpc -I../sysdeps/wordsiz=
e-32 -I../sysdeps/ieee754 -I../sysdeps/libm-ieee754 -I../sysdeps/generic/el=
f -I../sysdeps/generic  -nost=
dinc -isystem /opt/rtldk-1.0/lib/gcc-lib/ppc-linux/2.95.2/include -isystem =
/opt/rtldk-1.0/ppc-linux/include/ -D_LIBC_REENTRANT -include ../include/lib=
c-symbols.h     -DHAVE_INITFINI -o init-first.o
ppc-linux-gcc ../sysdeps/powerpc/elf/libc-start.c -c -O -Wall -Winline -Wst=
rict-prototypes -Wwrite-strings -g      -I../include -I.  -I.. -I../libio  =
-I../sysdeps/powerpc/elf -I../crypt/sysdeps/unix -I../linuxthreads/sysdeps/=
unix/sysv/linux -I../linuxthr=
eads/sysdeps/pthread -I../linuxthreads/sysdeps/unix/sysv -I../linuxthreads/=
sysdeps/unix -I../linuxthreads/sysdeps/powerpc -I../sysdeps/unix/sysv/linux=
/powerpc -I../sysdeps/unix/sysv/linux -I../sysdeps/gnu -I../sysdeps/unix/co=
mmon -I../sysdeps/unix/mman -=
I../sysdeps/unix/inet -I../sysdeps/unix/sysv -I../sysdeps/unix -I../sysdeps=
/posix -I../sysdeps/powerpc -I../sysdeps/wordsize-32 -I../sysdeps/ieee754 -=
I../sysdeps/libm-ieee754 -I../sysdeps/generic/elf -I../sysdeps/generic  -no=
stdinc -isystem /opt/rtldk-1.=
0/lib/gcc-lib/ppc-linux/2.95.2/include -isystem /opt/rtldk-1.0/ppc-linux/in=
clude/ -D_LIBC_REENTRANT -include ../include/libc-symbols.h     -DHAVE_INIT=
FINI -o libc-start.o
ppc-linux-gcc set-init.c -c -O -Wall -Winline -Wstrict-prototypes -Wwrite-s=
trings -g      -I../include -I.  -I.. -I../libio  -I../sysdeps/powerpc/elf =
-I../crypt/sysdeps/unix -I../linuxthreads/sysdeps/unix/sysv/linux -I../linu=
xthreads/sysdeps/pthread -I..=
/linuxthreads/sysdeps/unix/sysv -I../linuxthreads/sysdeps/unix -I../linuxth=
reads/sysdeps/powerpc -I../sysdeps/unix/sysv/linux/powerpc -I../sysdeps/uni=
x/sysv/linux -I../sysdeps/gnu -I../sysdeps/unix/common -I../sysdeps/unix/mm=
an -I../sysdeps/unix/inet -I.=
./sysdeps/unix/sysv -I../sysdeps/unix -I../sysdeps/posix -I../sysdeps/power=
pc -I../sysdeps/wordsize-32 -I../sysdeps/ieee754 -I../sysdeps/libm-ieee754 =
-I../sysdeps/generic/elf -I../sysdeps/generic  -nostdinc -isystem /opt/rtld=
k-1.0/lib/gcc-lib/ppc-linux/2=
.95.2/include -isystem /opt/rtldk-1.0/ppc-linux/include/ -D_LIBC_REENTRANT =
-include ../include/libc-symbols.h     -DHAVE_INITFINI -o set-init.o
ppc-linux-gcc ../sysdeps/unix/sysv/linux/powerpc/sysdep.c -c -O -Wall -Winl=
ine -Wstrict-prototypes -Wwrite-strings -g      -I../include -I.  -I.. -I..=
/libio  -I../sysdeps/powerpc/elf -I../crypt/sysdeps/unix -I../linuxthreads/=
sysdeps/unix/sysv/linux -I../=
linuxthreads/sysdeps/pthread -I../linuxthreads/sysdeps/unix/sysv -I../linux=
threads/sysdeps/unix -I../linuxthreads/sysdeps/powerpc -I../sysdeps/unix/sy=
sv/linux/powerpc -I../sysdeps/unix/sysv/linux -I../sysdeps/gnu -I../sysdeps=
/unix/common -I../sysdeps/uni=
x/mman -I../sysdeps/unix/inet -I../sysdeps/unix/sysv -I../sysdeps/unix -I..=
/sysdeps/posix -I../sysdeps/powerpc -I../sysdeps/wordsize-32 -I../sysdeps/i=
eee754 -I../sysdeps/libm-ieee754 -I../sysdeps/generic/elf -I../sysdeps/gene=
ric  -nostdinc -isystem /opt/=
rtldk-1.0/lib/gcc-lib/ppc-linux/2.95.2/include -isystem /opt/rtldk-1.0/ppc-=
linux/include/ -D_LIBC_REENTRANT -include ../include/libc-symbols.h     -DH=
AVE_INITFINI -o sysdep.o
ppc-linux-gcc version.c -c -O -Wall -Winline -Wstrict-prototypes -Wwrite-st=
rings -g      -I../include -I.  -I.. -I../libio  -I../sysdeps/powerpc/elf -=
I../crypt/sysdeps/unix -I../linuxthreads/sysdeps/unix/sysv/linux -I../linux=
threads/sysdeps/pthread -I../=
linuxthreads/sysdeps/unix/sysv -I../linuxthreads/sysdeps/unix -I../linuxthr=
eads/sysdeps/powerpc -I../sysdeps/unix/sysv/linux/powerpc -I../sysdeps/unix=
/sysv/linux -I../sysdeps/gnu -I../sysdeps/unix/common -I../sysdeps/unix/mma=
n -I../sysdeps/unix/inet -I..=
/sysdeps/unix/sysv -I../sysdeps/unix -I../sysdeps/posix -I../sysdeps/powerp=
c -I../sysdeps/wordsize-32 -I../sysdeps/ieee754 -I../sysdeps/libm-ieee754 -=
I../sysdeps/generic/elf -I../sysdeps/generic  -nostdinc -isystem /opt/rtldk=
-1.0/lib/gcc-lib/ppc-linux/2.=
95.2/include -isystem /opt/rtldk-1.0/ppc-linux/include/ -D_LIBC_REENTRANT -=
include ../include/libc-symbols.h     -DHAVE_INITFINI -o version.o
ppc-linux-gcc ../sysdeps/generic/errno-loc.c -c -O -Wall -Winline -Wstrict-=
prototypes -Wwrite-strings -g      -I../include -I.  -I.. -I../libio  -I../=
sysdeps/powerpc/elf -I../crypt/sysdeps/unix -I../linuxthreads/sysdeps/unix/=
sysv/linux -I../linuxthreads/=
sysdeps/pthread -I../linuxthreads/sysdeps/unix/sysv -I../linuxthreads/sysde=
ps/unix -I../linuxthreads/sysdeps/powerpc -I../sysdeps/unix/sysv/linux/powe=
rpc -I../sysdeps/unix/sysv/linux -I../sysdeps/gnu -I../sysdeps/unix/common =
-I../sysdeps/unix/mman -I../s=
ysdeps/unix/inet -I../sysdeps/unix/sysv -I../sysdeps/unix -I../sysdeps/posi=
x -I../sysdeps/powerpc -I../sysdeps/wordsize-32 -I../sysdeps/ieee754 -I../s=
ysdeps/libm-ieee754 -I../sysdeps/generic/elf -I../sysdeps/generic  -nostdin=
c -isystem /opt/rtldk-1.0/lib=
/gcc-lib/ppc-linux/2.95.2/include -isystem /opt/rtldk-1.0/ppc-linux/include=
/ -D_LIBC_REENTRANT -include ../include/libc-symbols.h     -DHAVE_INITFINI =
-o errno-loc.o
echo 'csu/init-first.o csu/libc-start.o csu/set-init.o csu/sysdep.o csu/ver=
sion.o csu/errno-loc.o' > stamp.oT
mv -f stamp.oT stamp.o
ppc-linux-gcc ../sysdeps/unix/sysv/linux/init-first.c -c -O -Wall -Winline =
-Wstrict-prototypes -Wwrite-strings -g   -fpic -fkeep-inline-functions   -I=
../include -I.  -I.. -I../libio  -I../sysdeps/powerpc/elf -I../crypt/sysdep=
s/unix -I../linuxthreads/sysd=
eps/unix/sysv/linux -I../linuxthreads/sysdeps/pthread -I../linuxthreads/sys=
deps/unix/sysv -I../linuxthreads/sysdeps/unix -I../linuxthreads/sysdeps/pow=
erpc -I../sysdeps/unix/sysv/linux/powerpc -I../sysdeps/unix/sysv/linux -I..=
/sysdeps/gnu -I../sysdeps/uni=
x/common -I../sysdeps/unix/mman -I../sysdeps/unix/inet -I../sysdeps/unix/sy=
sv -I../sysdeps/unix -I../sysdeps/posix -I../sysdeps/powerpc -I../sysdeps/w=
ordsize-32 -I../sysdeps/ieee754 -I../sysdeps/libm-ieee754 -I../sysdeps/gene=
ric/elf -I../sysdeps/generic=20=
 -nostdinc -isystem /opt/rtldk-1.0/lib/gcc-lib/ppc-linux/2.95.2/include -is=
ystem /opt/rtldk-1.0/ppc-linux/include/ -D_LIBC_REENTRANT -include ../inclu=
de/libc-symbols.h  -DPIC   -DHAVE_INITFINI -o init-first.os
ppc-linux-gcc ../sysdeps/powerpc/elf/libc-start.c -c -O -Wall -Winline -Wst=
rict-prototypes -Wwrite-strings -g   -fpic    -I../include -I.  -I.. -I../l=
ibio  -I../sysdeps/powerpc/elf -I../crypt/sysdeps/unix -I../linuxthreads/sy=
sdeps/unix/sysv/linux -I../li=
nuxthreads/sysdeps/pthread -I../linuxthreads/sysdeps/unix/sysv -I../linuxth=
reads/sysdeps/unix -I../linuxthreads/sysdeps/powerpc -I../sysdeps/unix/sysv=
/linux/powerpc -I../sysdeps/unix/sysv/linux -I../sysdeps/gnu -I../sysdeps/u=
nix/common -I../sysdeps/unix/=
mman -I../sysdeps/unix/inet -I../sysdeps/unix/sysv -I../sysdeps/unix -I../s=
ysdeps/posix -I../sysdeps/powerpc -I../sysdeps/wordsize-32 -I../sysdeps/iee=
e754 -I../sysdeps/libm-ieee754 -I../sysdeps/generic/elf -I../sysdeps/generi=
c  -nostdinc -isystem /opt/rt=
ldk-1.0/lib/gcc-lib/ppc-linux/2.95.2/include -isystem /opt/rtldk-1.0/ppc-li=
nux/include/ -D_LIBC_REENTRANT -include ../include/libc-symbols.h  -DPIC   =
-DHAVE_INITFINI -o libc-start.os
ppc-linux-gcc set-init.c -c -O -Wall -Winline -Wstrict-prototypes -Wwrite-s=
trings -g   -fpic    -I../include -I.  -I.. -I../libio  -I../sysdeps/powerp=
c/elf -I../crypt/sysdeps/unix -I../linuxthreads/sysdeps/unix/sysv/linux -I.=
./linuxthreads/sysdeps/pthrea=
d -I../linuxthreads/sysdeps/unix/sysv -I../linuxthreads/sysdeps/unix -I../l=
inuxthreads/sysdeps/powerpc -I../sysdeps/unix/sysv/linux/powerpc -I../sysde=
ps/unix/sysv/linux -I../sysdeps/gnu -I../sysdeps/unix/common -I../sysdeps/u=
nix/mman -I../sysdeps/unix/in=
et -I../sysdeps/unix/sysv -I../sysdeps/unix -I../sysdeps/posix -I../sysdeps=
/powerpc -I../sysdeps/wordsize-32 -I../sysdeps/ieee754 -I../sysdeps/libm-ie=
ee754 -I../sysdeps/generic/elf -I../sysdeps/generic  -nostdinc -isystem /op=
t/rtldk-1.0/lib/gcc-lib/ppc-l=
inux/2.95.2/include -isystem /opt/rtldk-1.0/ppc-linux/include/ -D_LIBC_REEN=
TRANT -include ../include/libc-symbols.h  -DPIC   -DHAVE_INITFINI -o set-in=
it.os
ppc-linux-gcc ../sysdeps/unix/sysv/linux/powerpc/sysdep.c -c -O -Wall -Winl=
ine -Wstrict-prototypes -Wwrite-strings -g   -fpic    -I../include -I.  -I.=
. -I../libio  -I../sysdeps/powerpc/elf -I../crypt/sysdeps/unix -I../linuxth=
reads/sysdeps/unix/sysv/linux=
 -I../linuxthreads/sysdeps/pthread -I../linuxthreads/sysdeps/unix/sysv -I..=
/linuxthreads/sysdeps/unix -I../linuxthreads/sysdeps/powerpc -I../sysdeps/u=
nix/sysv/linux/powerpc -I../sysdeps/unix/sysv/linux -I../sysdeps/gnu -I../s=
ysdeps/unix/common -I../sysde=
ps/unix/mman -I../sysdeps/unix/inet -I../sysdeps/unix/sysv -I../sysdeps/uni=
x -I../sysdeps/posix -I../sysdeps/powerpc -I../sysdeps/wordsize-32 -I../sys=
deps/ieee754 -I../sysdeps/libm-ieee754 -I../sysdeps/generic/elf -I../sysdep=
s/generic  -nostdinc -isystem=
 /opt/rtldk-1.0/lib/gcc-lib/ppc-linux/2.95.2/include -isystem /opt/rtldk-1.=
0/ppc-linux/include/ -D_LIBC_REENTRANT -include ../include/libc-symbols.h  =
-DPIC   -DHAVE_INITFINI -o sysdep.os
ppc-linux-gcc version.c -c -O -Wall -Winline -Wstrict-prototypes -Wwrite-st=
rings -g   -fpic    -I../include -I.  -I.. -I../libio  -I../sysdeps/powerpc=
/elf -I../crypt/sysdeps/unix -I../linuxthreads/sysdeps/unix/sysv/linux -I..=
/linuxthreads/sysdeps/pthread=
 -I../linuxthreads/sysdeps/unix/sysv -I../linuxthreads/sysdeps/unix -I../li=
nuxthreads/sysdeps/powerpc -I../sysdeps/unix/sysv/linux/powerpc -I../sysdep=
s/unix/sysv/linux -I../sysdeps/gnu -I../sysdeps/unix/common -I../sysdeps/un=
ix/mman -I../sysdeps/unix/ine=
t -I../sysdeps/unix/sysv -I../sysdeps/unix -I../sysdeps/posix -I../sysdeps/=
powerpc -I../sysdeps/wordsize-32 -I../sysdeps/ieee754 -I../sysdeps/libm-iee=
e754 -I../sysdeps/generic/elf -I../sysdeps/generic  -nostdinc -isystem /opt=
/rtldk-1.0/lib/gcc-lib/ppc-li=
nux/2.95.2/include -isystem /opt/rtldk-1.0/ppc-linux/include/ -D_LIBC_REENT=
RANT -include ../include/libc-symbols.h  -DPIC   -DHAVE_INITFINI -o version=
.os
ppc-linux-gcc ../sysdeps/generic/errno-loc.c -c -O -Wall -Winline -Wstrict-=
prototypes -Wwrite-strings -g   -fpic    -I../include -I.  -I.. -I../libio =
 -I../sysdeps/powerpc/elf -I../crypt/sysdeps/unix -I../linuxthreads/sysdeps=
/unix/sysv/linux -I../linuxth=
reads/sysdeps/pthread -I../linuxthreads/sysdeps/unix/sysv -I../linuxthreads=
/sysdeps/unix -I../linuxthreads/sysdeps/powerpc -I../sysdeps/unix/sysv/linu=
x/powerpc -I../sysdeps/unix/sysv/linux -I../sysdeps/gnu -I../sysdeps/unix/c=
ommon -I../sysdeps/unix/mman=20=
-I../sysdeps/unix/inet -I../sysdeps/unix/sysv -I../sysdeps/unix -I../sysdep=
s/posix -I../sysdeps/powerpc -I../sysdeps/wordsize-32 -I../sysdeps/ieee754 =
-I../sysdeps/libm-ieee754 -I../sysdeps/generic/elf -I../sysdeps/generic  -n=
ostdinc -isystem /opt/rtldk-1=
.0/lib/gcc-lib/ppc-linux/2.95.2/include -isystem /opt/rtldk-1.0/ppc-linux/i=
nclude/ -D_LIBC_REENTRANT -include ../include/libc-symbols.h  -DPIC   -DHAV=
E_INITFINI -o errno-loc.os
echo 'csu/init-first.os csu/libc-start.os csu/set-init.os csu/sysdep.os csu=
/version.os csu/errno-loc.os' > stamp.osT
mv -f stamp.osT stamp.os
ppc-linux-gcc ../sysdeps/unix/sysv/linux/init-first.c -c -O -Wall -Winline =
-Wstrict-prototypes -Wwrite-strings -g  -pg -fkeep-inline-functions   -I../=
include -I.  -I.. -I../libio  -I../sysdeps/powerpc/elf -I../crypt/sysdeps/u=
nix -I../linuxthreads/sysdeps=
/unix/sysv/linux -I../linuxthreads/sysdeps/pthread -I../linuxthreads/sysdep=
s/unix/sysv -I../linuxthreads/sysdeps/unix -I../linuxthreads/sysdeps/powerp=
c -I../sysdeps/unix/sysv/linux/powerpc -I../sysdeps/unix/sysv/linux -I../sy=
sdeps/gnu -I../sysdeps/unix/c=
ommon -I../sysdeps/unix/mman -I../sysdeps/unix/inet -I../sysdeps/unix/sysv =
-I../sysdeps/unix -I../sysdeps/posix -I../sysdeps/powerpc -I../sysdeps/word=
size-32 -I../sysdeps/ieee754 -I../sysdeps/libm-ieee754 -I../sysdeps/generic=
/elf -I../sysdeps/generic  -n=
ostdinc -isystem /opt/rtldk-1.0/lib/gcc-lib/ppc-linux/2.95.2/include -isyst=
em /opt/rtldk-1.0/ppc-linux/include/ -D_LIBC_REENTRANT -include ../include/=
libc-symbols.h  -DPROF    -DHAVE_INITFINI -o init-first.op
ppc-linux-gcc ../sysdeps/powerpc/elf/libc-start.c -c -O -Wall -Winline -Wst=
rict-prototypes -Wwrite-strings -g  -pg    -I../include -I.  -I.. -I../libi=
o  -I../sysdeps/powerpc/elf -I../crypt/sysdeps/unix -I../linuxthreads/sysde=
ps/unix/sysv/linux -I../linux=
threads/sysdeps/pthread -I../linuxthreads/sysdeps/unix/sysv -I../linuxthrea=
ds/sysdeps/unix -I../linuxthreads/sysdeps/powerpc -I../sysdeps/unix/sysv/li=
nux/powerpc -I../sysdeps/unix/sysv/linux -I../sysdeps/gnu -I../sysdeps/unix=
/common -I../sysdeps/unix/mma=
n -I../sysdeps/unix/inet -I../sysdeps/unix/sysv -I../sysdeps/unix -I../sysd=
eps/posix -I../sysdeps/powerpc -I../sysdeps/wordsize-32 -I../sysdeps/ieee75=
4 -I../sysdeps/libm-ieee754 -I../sysdeps/generic/elf -I../sysdeps/generic  =
-nostdinc -isystem /opt/rtldk=
-1.0/lib/gcc-lib/ppc-linux/2.95.2/include -isystem /opt/rtldk-1.0/ppc-linux=
/include/ -D_LIBC_REENTRANT -include ../include/libc-symbols.h  -DPROF    -=
DHAVE_INITFINI -o libc-start.op
ppc-linux-gcc set-init.c -c -O -Wall -Winline -Wstrict-prototypes -Wwrite-s=
trings -g  -pg    -I../include -I.  -I.. -I../libio  -I../sysdeps/powerpc/e=
lf -I../crypt/sysdeps/unix -I../linuxthreads/sysdeps/unix/sysv/linux -I../l=
inuxthreads/sysdeps/pthread -=
I../linuxthreads/sysdeps/unix/sysv -I../linuxthreads/sysdeps/unix -I../linu=
xthreads/sysdeps/powerpc -I../sysdeps/unix/sysv/linux/powerpc -I../sysdeps/=
unix/sysv/linux -I../sysdeps/gnu -I../sysdeps/unix/common -I../sysdeps/unix=
/mman -I../sysdeps/unix/inet=20=
-I../sysdeps/unix/sysv -I../sysdeps/unix -I../sysdeps/posix -I../sysdeps/po=
werpc -I../sysdeps/wordsize-32 -I../sysdeps/ieee754 -I../sysdeps/libm-ieee7=
54 -I../sysdeps/generic/elf -I../sysdeps/generic  -nostdinc -isystem /opt/r=
tldk-1.0/lib/gcc-lib/ppc-linu=
x/2.95.2/include -isystem /opt/rtldk-1.0/ppc-linux/include/ -D_LIBC_REENTRA=
NT -include ../include/libc-symbols.h  -DPROF    -DHAVE_INITFINI -o set-ini=
t.op
ppc-linux-gcc ../sysdeps/unix/sysv/linux/powerpc/sysdep.c -c -O -Wall -Winl=
ine -Wstrict-prototypes -Wwrite-strings -g  -pg    -I../include -I.  -I.. -=
I../libio  -I../sysdeps/powerpc/elf -I../crypt/sysdeps/unix -I../linuxthrea=
ds/sysdeps/unix/sysv/linux -I=
../linuxthreads/sysdeps/pthread -I../linuxthreads/sysdeps/unix/sysv -I../li=
nuxthreads/sysdeps/unix -I../linuxthreads/sysdeps/powerpc -I../sysdeps/unix=
/sysv/linux/powerpc -I../sysdeps/unix/sysv/linux -I../sysdeps/gnu -I../sysd=
eps/unix/common -I../sysdeps/=
unix/mman -I../sysdeps/unix/inet -I../sysdeps/unix/sysv -I../sysdeps/unix -=
I../sysdeps/posix -I../sysdeps/powerpc -I../sysdeps/wordsize-32 -I../sysdep=
s/ieee754 -I../sysdeps/libm-ieee754 -I../sysdeps/generic/elf -I../sysdeps/g=
eneric  -nostdinc -isystem /o=
pt/rtldk-1.0/lib/gcc-lib/ppc-linux/2.95.2/include -isystem /opt/rtldk-1.0/p=
pc-linux/include/ -D_LIBC_REENTRANT -include ../include/libc-symbols.h  -DP=
ROF    -DHAVE_INITFINI -o sysdep.op
ppc-linux-gcc version.c -c -O -Wall -Winline -Wstrict-prototypes -Wwrite-st=
rings -g  -pg    -I../include -I.  -I.. -I../libio  -I../sysdeps/powerpc/el=
f -I../crypt/sysdeps/unix -I../linuxthreads/sysdeps/unix/sysv/linux -I../li=
nuxthreads/sysdeps/pthread -I=
../linuxthreads/sysdeps/unix/sysv -I../linuxthreads/sysdeps/unix -I../linux=
threads/sysdeps/powerpc -I../sysdeps/unix/sysv/linux/powerpc -I../sysdeps/u=
nix/sysv/linux -I../sysdeps/gnu -I../sysdeps/unix/common -I../sysdeps/unix/=
mman -I../sysdeps/unix/inet -=
I../sysdeps/unix/sysv -I../sysdeps/unix -I../sysdeps/posix -I../sysdeps/pow=
erpc -I../sysdeps/wordsize-32 -I../sysdeps/ieee754 -I../sysdeps/libm-ieee75=
4 -I../sysdeps/generic/elf -I../sysdeps/generic  -nostdinc -isystem /opt/rt=
ldk-1.0/lib/gcc-lib/ppc-linux=
/2.95.2/include -isystem /opt/rtldk-1.0/ppc-linux/include/ -D_LIBC_REENTRAN=
T -include ../include/libc-symbols.h  -DPROF    -DHAVE_INITFINI -o version.=
op
ppc-linux-gcc ../sysdeps/generic/errno-loc.c -c -O -Wall -Winline -Wstrict-=
prototypes -Wwrite-strings -g  -pg    -I../include -I.  -I.. -I../libio  -I=
../sysdeps/powerpc/elf -I../crypt/sysdeps/unix -I../linuxthreads/sysdeps/un=
ix/sysv/linux -I../linuxthrea=
ds/sysdeps/pthread -I../linuxthreads/sysdeps/unix/sysv -I../linuxthreads/sy=
sdeps/unix -I../linuxthreads/sysdeps/powerpc -I../sysdeps/unix/sysv/linux/p=
owerpc -I../sysdeps/unix/sysv/linux -I../sysdeps/gnu -I../sysdeps/unix/comm=
on -I../sysdeps/unix/mman -I.=
./sysdeps/unix/inet -I../sysdeps/unix/sysv -I../sysdeps/unix -I../sysdeps/p=
osix -I../sysdeps/powerpc -I../sysdeps/wordsize-32 -I../sysdeps/ieee754 -I.=
./sysdeps/libm-ieee754 -I../sysdeps/generic/elf -I../sysdeps/generic  -nost=
dinc -isystem /opt/rtldk-1.0/=
lib/gcc-lib/ppc-linux/2.95.2/include -isystem /opt/rtldk-1.0/ppc-linux/incl=
ude/ -D_LIBC_REENTRANT -include ../include/libc-symbols.h  -DPROF    -DHAVE=
_INITFINI -o errno-loc.op
echo 'csu/init-first.op csu/libc-start.op csu/set-init.op csu/sysdep.op csu=
/version.op csu/errno-loc.op' > stamp.opT
mv -f stamp.opT stamp.op
echo '' > stamp.oST
mv -f stamp.oST stamp.oS
ppc-linux-gcc ../sysdeps/powerpc/elf/start.S -c  -I../include -I.  -I.. -I.=
./libio  -I../sysdeps/powerpc/elf -I../crypt/sysdeps/unix -I../linuxthreads=
/sysdeps/unix/sysv/linux -I../linuxthreads/sysdeps/pthread -I../linuxthread=
s/sysdeps/unix/sysv -I../linu=
xthreads/sysdeps/unix -I../linuxthreads/sysdeps/powerpc -I../sysdeps/unix/s=
ysv/linux/powerpc -I../sysdeps/unix/sysv/linux -I../sysdeps/gnu -I../sysdep=
s/unix/common -I../sysdeps/unix/mman -I../sysdeps/unix/inet -I../sysdeps/un=
ix/sysv -I../sysdeps/unix -I.=
./sysdeps/posix -I../sysdeps/powerpc -I../sysdeps/wordsize-32 -I../sysdeps/=
ieee754 -I../sysdeps/libm-ieee754 -I../sysdeps/generic/elf -I../sysdeps/gen=
eric  -nostdinc -isystem /opt/rtldk-1.0/lib/gcc-lib/ppc-linux/2.95.2/includ=
e -isystem /opt/rtldk-1.0/ppc=
-linux/include/ -D_LIBC_REENTRANT -include ../include/libc-symbols.h     -D=
HAVE_INITFINI -DASSEMBLER  -I.  -o start.o
ppc-linux-gcc gmon-start.c -c -O -Wall -Winline -Wstrict-prototypes -Wwrite=
-strings -g    -G0  -I../include -I.  -I.. -I../libio  -I../sysdeps/powerpc=
/elf -I../crypt/sysdeps/unix -I../linuxthreads/sysdeps/unix/sysv/linux -I..=
/linuxthreads/sysdeps/pthread=
 -I../linuxthreads/sysdeps/unix/sysv -I../linuxthreads/sysdeps/unix -I../li=
nuxthreads/sysdeps/powerpc -I../sysdeps/unix/sysv/linux/powerpc -I../sysdep=
s/unix/sysv/linux -I../sysdeps/gnu -I../sysdeps/unix/common -I../sysdeps/un=
ix/mman -I../sysdeps/unix/ine=
t -I../sysdeps/unix/sysv -I../sysdeps/unix -I../sysdeps/posix -I../sysdeps/=
powerpc -I../sysdeps/wordsize-32 -I../sysdeps/ieee754 -I../sysdeps/libm-iee=
e754 -I../sysdeps/generic/elf -I../sysdeps/generic  -nostdinc -isystem /opt=
/rtldk-1.0/lib/gcc-lib/ppc-li=
nux/2.95.2/include -isystem /opt/rtldk-1.0/ppc-linux/include/ -D_LIBC_REENT=
RANT -include ../include/libc-symbols.h     -DHAVE_INITFINI -o gmon-start.o
ppc-linux-gcc abi-note.S -c  -I../include -I.  -I.. -I../libio  -I../sysdep=
s/powerpc/elf -I../crypt/sysdeps/unix -I../linuxthreads/sysdeps/unix/sysv/l=
inux -I../linuxthreads/sysdeps/pthread -I../linuxthreads/sysdeps/unix/sysv =
-I../linuxthreads/sysdeps/uni=
x -I../linuxthreads/sysdeps/powerpc -I../sysdeps/unix/sysv/linux/powerpc -I=
../sysdeps/unix/sysv/linux -I../sysdeps/gnu -I../sysdeps/unix/common -I../s=
ysdeps/unix/mman -I../sysdeps/unix/inet -I../sysdeps/unix/sysv -I../sysdeps=
/unix -I../sysdeps/posix -I..=
/sysdeps/powerpc -I../sysdeps/wordsize-32 -I../sysdeps/ieee754 -I../sysdeps=
/libm-ieee754 -I../sysdeps/generic/elf -I../sysdeps/generic  -nostdinc -isy=
stem /opt/rtldk-1.0/lib/gcc-lib/ppc-linux/2.95.2/include -isystem /opt/rtld=
k-1.0/ppc-linux/include/ -D_L=
IBC_REENTRANT -include ../include/libc-symbols.h     -DHAVE_INITFINI -DASSE=
MBLER  -I.  -o abi-note.o
ppc-linux-gcc init.c -c -O -Wall -Winline -Wstrict-prototypes -Wwrite-strin=
gs -g    -G0  -I../include -I.  -I.. -I../libio  -I../sysdeps/powerpc/elf -=
I../crypt/sysdeps/unix -I../linuxthreads/sysdeps/unix/sysv/linux -I../linux=
threads/sysdeps/pthread -I../=
linuxthreads/sysdeps/unix/sysv -I../linuxthreads/sysdeps/unix -I../linuxthr=
eads/sysdeps/powerpc -I../sysdeps/unix/sysv/linux/powerpc -I../sysdeps/unix=
/sysv/linux -I../sysdeps/gnu -I../sysdeps/unix/common -I../sysdeps/unix/mma=
n -I../sysdeps/unix/inet -I..=
/sysdeps/unix/sysv -I../sysdeps/unix -I../sysdeps/posix -I../sysdeps/powerp=
c -I../sysdeps/wordsize-32 -I../sysdeps/ieee754 -I../sysdeps/libm-ieee754 -=
I../sysdeps/generic/elf -I../sysdeps/generic  -nostdinc -isystem /opt/rtldk=
-1.0/lib/gcc-lib/ppc-linux/2.=
95.2/include -isystem /opt/rtldk-1.0/ppc-linux/include/ -D_LIBC_REENTRANT -=
include ../include/libc-symbols.h     -DHAVE_INITFINI -o init.o
ppc-linux-gcc -nostdlib -nostartfiles -r -o crt1.o start.o abi-note.o init.o
ppc-linux-gcc -nostdlib -nostartfiles -r -o gcrt1.o crt1.o gmon-start.o
cp /dev/null Mcrt1.c
ppc-linux-gcc -O -Wall -Winline -Wstrict-prototypes -Wwrite-strings -g     =
 -I../include -I.  -I.. -I../libio  -I../sysdeps/powerpc/elf -I../crypt/sys=
deps/unix -I../linuxthreads/sysdeps/unix/sysv/linux -I../linuxthreads/sysde=
ps/pthread -I../linuxthreads/=
sysdeps/unix/sysv -I../linuxthreads/sysdeps/unix -I../linuxthreads/sysdeps/=
powerpc -I../sysdeps/unix/sysv/linux/powerpc -I../sysdeps/unix/sysv/linux -=
I../sysdeps/gnu -I../sysdeps/unix/common -I../sysdeps/unix/mman -I../sysdep=
s/unix/inet -I../sysdeps/unix=
/sysv -I../sysdeps/unix -I../sysdeps/posix -I../sysdeps/powerpc -I../sysdep=
s/wordsize-32 -I../sysdeps/ieee754 -I../sysdeps/libm-ieee754 -I../sysdeps/g=
eneric/elf -I../sysdeps/generic  -nostdinc -isystem /opt/rtldk-1.0/lib/gcc-=
lib/ppc-linux/2.95.2/include=20=
-isystem /opt/rtldk-1.0/ppc-linux/include/ -D_LIBC_REENTRANT -include ../in=
clude/libc-symbols.h     -DHAVE_INITFINI  -c Mcrt1.c -o Mcrt1.o
rm -f Mcrt1.c
ppc-linux-gcc initfini.c -c -O -Wall -Winline -Wstrict-prototypes -Wwrite-s=
trings -g    -g0 -fpic  -I../include -I.  -I.. -I../libio  -I../sysdeps/pow=
erpc/elf -I../crypt/sysdeps/unix -I../linuxthreads/sysdeps/unix/sysv/linux =
-I../linuxthreads/sysdeps/pth=
read -I../linuxthreads/sysdeps/unix/sysv -I../linuxthreads/sysdeps/unix -I.=
./linuxthreads/sysdeps/powerpc -I../sysdeps/unix/sysv/linux/powerpc -I../sy=
sdeps/unix/sysv/linux -I../sysdeps/gnu -I../sysdeps/unix/common -I../sysdep=
s/unix/mman -I../sysdeps/unix=
/inet -I../sysdeps/unix/sysv -I../sysdeps/unix -I../sysdeps/posix -I../sysd=
eps/powerpc -I../sysdeps/wordsize-32 -I../sysdeps/ieee754 -I../sysdeps/libm=
-ieee754 -I../sysdeps/generic/elf -I../sysdeps/generic  -nostdinc -isystem =
/opt/rtldk-1.0/lib/gcc-lib/pp=
c-linux/2.95.2/include -isystem /opt/rtldk-1.0/ppc-linux/include/ -D_LIBC_R=
EENTRANT -include ../include/libc-symbols.h     -DHAVE_INITFINI -S -g0 -fpi=
c -finhibit-size-directive \
	 -o initfini.s
sed -n -e '1,/@HEADER_ENDS/p' \
       -e '/@_.*_PROLOG_BEGINS/,/@_.*_PROLOG_ENDS/p' \
       -e '/@TRAILER_BEGINS/,$p' initfini.s > crti.S
sed -n -e '/@TESTS_BEGIN/,/@TESTS_END/p' initfini.s | \
	gawk -f defs.awk > defs.h
ppc-linux-gcc crti.S -c  -I../include -I.  -I.. -I../libio  -I../sysdeps/po=
werpc/elf -I../crypt/sysdeps/unix -I../linuxthreads/sysdeps/unix/sysv/linux=
 -I../linuxthreads/sysdeps/pthread -I../linuxthreads/sysdeps/unix/sysv -I..=
/linuxthreads/sysdeps/unix -I=
../linuxthreads/sysdeps/powerpc -I../sysdeps/unix/sysv/linux/powerpc -I../s=
ysdeps/unix/sysv/linux -I../sysdeps/gnu -I../sysdeps/unix/common -I../sysde=
ps/unix/mman -I../sysdeps/unix/inet -I../sysdeps/unix/sysv -I../sysdeps/uni=
x -I../sysdeps/posix -I../sys=
deps/powerpc -I../sysdeps/wordsize-32 -I../sysdeps/ieee754 -I../sysdeps/lib=
m-ieee754 -I../sysdeps/generic/elf -I../sysdeps/generic  -nostdinc -isystem=
 /opt/rtldk-1.0/lib/gcc-lib/ppc-linux/2.95.2/include -isystem /opt/rtldk-1.=
0/ppc-linux/include/ -D_LIBC_=
REENTRANT -include ../include/libc-symbols.h     -DHAVE_INITFINI -DASSEMBLE=
R  -I.  -g0  -o crti.o
sed -n -e '1,/@HEADER_ENDS/p' \
       -e '/@_.*_EPILOG_BEGINS/,/@_.*_EPILOG_ENDS/p' \
       -e '/@TRAILER_BEGINS/,$p' initfini.s > crtn.S
ppc-linux-gcc crtn.S -c  -I../include -I.  -I.. -I../libio  -I../sysdeps/po=
werpc/elf -I../crypt/sysdeps/unix -I../linuxthreads/sysdeps/unix/sysv/linux=
 -I../linuxthreads/sysdeps/pthread -I../linuxthreads/sysdeps/unix/sysv -I..=
/linuxthreads/sysdeps/unix -I=
../linuxthreads/sysdeps/powerpc -I../sysdeps/unix/sysv/linux/powerpc -I../s=
ysdeps/unix/sysv/linux -I../sysdeps/gnu -I../sysdeps/unix/common -I../sysde=
ps/unix/mman -I../sysdeps/unix/inet -I../sysdeps/unix/sysv -I../sysdeps/uni=
x -I../sysdeps/posix -I../sys=
deps/powerpc -I../sysdeps/wordsize-32 -I../sysdeps/ieee754 -I../sysdeps/lib=
m-ieee754 -I../sysdeps/generic/elf -I../sysdeps/generic  -nostdinc -isystem=
 /opt/rtldk-1.0/lib/gcc-lib/ppc-linux/2.95.2/include -isystem /opt/rtldk-1.=
0/ppc-linux/include/ -D_LIBC_=
REENTRANT -include ../include/libc-symbols.h     -DHAVE_INITFINI -DASSEMBLE=
R  -I.  -g0  -o crtn.o
make[1]: Leaving directory `/opt/rtldk-1.0/ppc_root_src/glibc/glibc-2.1.3/c=
su'
make  -C assert subdir_lib
make[1]: Entering directory `/opt/rtldk-1.0/ppc_root_src/glibc/glibc-2.1.3/=
assert'
make[1]: Leaving directory `/opt/rtldk-1.0/ppc_root_src/glibc/glibc-2.1.3/a=
ssert'
make[1]: Entering directory `/opt/rtldk-1.0/ppc_root_src/glibc/glibc-2.1.3/=
assert'
ppc-linux-gcc assert.c -c -O -Wall -Winline -Wstrict-prototypes -Wwrite-str=
ings -g      -I../include -I.  -I.. -I../libio  -I../sysdeps/powerpc/elf -I=
../crypt/sysdeps/unix -I../linuxthreads/sysdeps/unix/sysv/linux -I../linuxt=
hreads/sysdeps/pthread -I../l=
inuxthreads/sysdeps/unix/sysv -I../linuxthreads/sysdeps/unix -I../linuxthre=
ads/sysdeps/powerpc -I../sysdeps/unix/sysv/linux/powerpc -I../sysdeps/unix/=
sysv/linux -I../sysdeps/gnu -I../sysdeps/unix/common -I../sysdeps/unix/mman=
 -I../sysdeps/unix/inet -I../=
sysdeps/unix/sysv -I../sysdeps/unix -I../sysdeps/posix -I../sysdeps/powerpc=
 -I../sysdeps/wordsize-32 -I../sysdeps/ieee754 -I../sysdeps/libm-ieee754 -I=
../sysdeps/generic/elf -I../sysdeps/generic  -nostdinc -isystem /opt/rtldk-=
1.0/lib/gcc-lib/ppc-linux/2.9=
5.2/include -isystem /opt/rtldk-1.0/ppc-linux/include/ -D_LIBC_REENTRANT -i=
nclude ../include/libc-symbols.h     -o assert.o
ppc-linux-gcc assert-perr.c -c -O -Wall -Winline -Wstrict-prototypes -Wwrit=
e-strings -g      -I../include -I.  -I.. -I../libio  -I../sysdeps/powerpc/e=
lf -I../crypt/sysdeps/unix -I../linuxthreads/sysdeps/unix/sysv/linux -I../l=
inuxthreads/sysdeps/pthread -=
I../linuxthreads/sysdeps/unix/sysv -I../linuxthreads/sysdeps/unix -I../linu=
xthreads/sysdeps/powerpc -I../sysdeps/unix/sysv/linux/powerpc -I../sysdeps/=
unix/sysv/linux -I../sysdeps/gnu -I../sysdeps/unix/common -I../sysdeps/unix=
/mman -I../sysdeps/unix/inet=20=
-I../sysdeps/unix/sysv -I../sysdeps/unix -I../sysdeps/posix -I../sysdeps/po=
werpc -I../sysdeps/wordsize-32 -I../sysdeps/ieee754 -I../sysdeps/libm-ieee7=
54 -I../sysdeps/generic/elf -I../sysdeps/generic  -nostdinc -isystem /opt/r=
tldk-1.0/lib/gcc-lib/ppc-linu=
x/2.95.2/include -isystem /opt/rtldk-1.0/ppc-linux/include/ -D_LIBC_REENTRA=
NT -include ../include/libc-symbols.h     -o assert-perr.o
echo 'assert/assert.o assert/assert-perr.o' > stamp.oT
mv -f stamp.oT stamp.o
ppc-linux-gcc assert.c -c -O -Wall -Winline -Wstrict-prototypes -Wwrite-str=
ings -g   -fpic    -I../include -I.  -I.. -I../libio  -I../sysdeps/powerpc/=
elf -I../crypt/sysdeps/unix -I../linuxthreads/sysdeps/unix/sysv/linux -I../=
linuxthreads/sysdeps/pthread=20=
-I../linuxthreads/sysdeps/unix/sysv -I../linuxthreads/sysdeps/unix -I../lin=
uxthreads/sysdeps/powerpc -I../sysdeps/unix/sysv/linux/powerpc -I../sysdeps=
/unix/sysv/linux -I../sysdeps/gnu -I../sysdeps/unix/common -I../sysdeps/uni=
x/mman -I../sysdeps/unix/inet=
 -I../sysdeps/unix/sysv -I../sysdeps/unix -I../sysdeps/posix -I../sysdeps/p=
owerpc -I../sysdeps/wordsize-32 -I../sysdeps/ieee754 -I../sysdeps/libm-ieee=
754 -I../sysdeps/generic/elf -I../sysdeps/generic  -nostdinc -isystem /opt/=
rtldk-1.0/lib/gcc-lib/ppc-lin=
ux/2.95.2/include -isystem /opt/rtldk-1.0/ppc-linux/include/ -D_LIBC_REENTR=
ANT -include ../include/libc-symbols.h  -DPIC   -o assert.os
ppc-linux-gcc assert-perr.c -c -O -Wall -Winline -Wstrict-prototypes -Wwrit=
e-strings -g   -fpic    -I../include -I.  -I.. -I../libio  -I../sysdeps/pow=
erpc/elf -I../crypt/sysdeps/unix -I../linuxthreads/sysdeps/unix/sysv/linux =
-I../linuxthreads/sysdeps/pth=
read -I../linuxthreads/sysdeps/unix/sysv -I../linuxthreads/sysdeps/unix -I.=
./linuxthreads/sysdeps/powerpc -I../sysdeps/unix/sysv/linux/powerpc -I../sy=
sdeps/unix/sysv/linux -I../sysdeps/gnu -I../sysdeps/unix/common -I../sysdep=
s/unix/mman -I../sysdeps/unix=
/inet -I../sysdeps/unix/sysv -I../sysdeps/unix -I../sysdeps/posix -I../sysd=
eps/powerpc -I../sysdeps/wordsize-32 -I../sysdeps/ieee754 -I../sysdeps/libm=
-ieee754 -I../sysdeps/generic/elf -I../sysdeps/generic  -nostdinc -isystem =
/opt/rtldk-1.0/lib/gcc-lib/pp=
c-linux/2.95.2/include -isystem /opt/rtldk-1.0/ppc-linux/include/ -D_LIBC_R=
EENTRANT -include ../include/libc-symbols.h  -DPIC   -o assert-perr.os
echo 'assert/assert.os assert/assert-perr.os' > stamp.osT
mv -f stamp.osT stamp.os
ppc-linux-gcc assert.c -c -O -Wall -Winline -Wstrict-prototypes -Wwrite-str=
ings -g  -pg    -I../include -I.  -I.. -I../libio  -I../sysdeps/powerpc/elf=
 -I../crypt/sysdeps/unix -I../linuxthreads/sysdeps/unix/sysv/linux -I../lin=
uxthreads/sysdeps/pthread -I.=
./linuxthreads/sysdeps/unix/sysv -I../linuxthreads/sysdeps/unix -I../linuxt=
hreads/sysdeps/powerpc -I../sysdeps/unix/sysv/linux/powerpc -I../sysdeps/un=
ix/sysv/linux -I../sysdeps/gnu -I../sysdeps/unix/common -I../sysdeps/unix/m=
man -I../sysdeps/unix/inet -I=
../sysdeps/unix/sysv -I../sysdeps/unix -I../sysdeps/posix -I../sysdeps/powe=
rpc -I../sysdeps/wordsize-32 -I../sysdeps/ieee754 -I../sysdeps/libm-ieee754=
 -I../sysdeps/generic/elf -I../sysdeps/generic  -nostdinc -isystem /opt/rtl=
dk-1.0/lib/gcc-lib/ppc-linux/=
2.95.2/include -isystem /opt/rtldk-1.0/ppc-linux/include/ -D_LIBC_REENTRANT=
 -include ../include/libc-symbols.h  -DPROF    -o assert.op
ppc-linux-gcc assert-perr.c -c -O -Wall -Winline -Wstrict-prototypes -Wwrit=
e-strings -g  -pg    -I../include -I.  -I.. -I../libio  -I../sysdeps/powerp=
c/elf -I../crypt/sysdeps/unix -I../linuxthreads/sysdeps/unix/sysv/linux -I.=
./linuxthreads/sysdeps/pthrea=
d -I../linuxthreads/sysdeps/unix/sysv -I../linuxthreads/sysdeps/unix -I../l=
inuxthreads/sysdeps/powerpc -I../sysdeps/unix/sysv/linux/powerpc -I../sysde=
ps/unix/sysv/linux -I../sysdeps/gnu -I../sysdeps/unix/common -I../sysdeps/u=
nix/mman -I../sysdeps/unix/in=
et -I../sysdeps/unix/sysv -I../sysdeps/unix -I../sysdeps/posix -I../sysdeps=
/powerpc -I../sysdeps/wordsize-32 -I../sysdeps/ieee754 -I../sysdeps/libm-ie=
ee754 -I../sysdeps/generic/elf -I../sysdeps/generic  -nostdinc -isystem /op=
t/rtldk-1.0/lib/gcc-lib/ppc-l=
inux/2.95.2/include -isystem /opt/rtldk-1.0/ppc-linux/include/ -D_LIBC_REEN=
TRANT -include ../include/libc-symbols.h  -DPROF    -o assert-perr.op
echo 'assert/assert.op assert/assert-perr.op' > stamp.opT
mv -f stamp.opT stamp.op
echo '' > stamp.oST
mv -f stamp.oST stamp.oS
make[1]: Leaving directory `/opt/rtldk-1.0/ppc_root_src/glibc/glibc-2.1.3/a=
ssert'
make  -C ctype subdir_lib
make[1]: Entering directory `/opt/rtldk-1.0/ppc_root_src/glibc/glibc-2.1.3/=
ctype'
make[1]: Leaving directory `/opt/rtldk-1.0/ppc_root_src/glibc/glibc-2.1.3/c=
type'
make[1]: Entering directory `/opt/rtldk-1.0/ppc_root_src/glibc/glibc-2.1.3/=
ctype'
ppc-linux-gcc ctype.c -c -O -Wall -Winline -Wstrict-prototypes -Wwrite-stri=
ngs -g      -I../include -I.  -I.. -I../libio  -I../sysdeps/powerpc/elf -I.=
./crypt/sysdeps/unix -I../linuxthreads/sysdeps/unix/sysv/linux -I../linuxth=
reads/sysdeps/pthread -I../li=
nuxthreads/sysdeps/unix/sysv -I../linuxthreads/sysdeps/unix -I../linuxthrea=
ds/sysdeps/powerpc -I../sysdeps/unix/sysv/linux/powerpc -I../sysdeps/unix/s=
ysv/linux -I../sysdeps/gnu -I../sysdeps/unix/common -I../sysdeps/unix/mman =
-I../sysdeps/unix/inet -I../s=
ysdeps/unix/sysv -I../sysdeps/unix -I../sysdeps/posix -I../sysdeps/powerpc =
-I../sysdeps/wordsize-32 -I../sysdeps/ieee754 -I../sysdeps/libm-ieee754 -I.=
./sysdeps/generic/elf -I../sysdeps/generic  -nostdinc -isystem /opt/rtldk-1=
.0/lib/gcc-lib/ppc-linux/2.95=
.2/include -isystem /opt/rtldk-1.0/ppc-linux/include/ -D_LIBC_REENTRANT -in=
clude ../include/libc-symbols.h     -o ctype.o
ppc-linux-gcc ctype-extn.c -c -O -Wall -Winline -Wstrict-prototypes -Wwrite=
-strings -g      -I../include -I.  -I.. -I../libio  -I../sysdeps/powerpc/el=
f -I../crypt/sysdeps/unix -I../linuxthreads/sysdeps/unix/sysv/linux -I../li=
nuxthreads/sysdeps/pthread -I=
../linuxthreads/sysdeps/unix/sysv -I../linuxthreads/sysdeps/unix -I../linux=
threads/sysdeps/powerpc -I../sysdeps/unix/sysv/linux/powerpc -I../sysdeps/u=
nix/sysv/linux -I../sysdeps/gnu -I../sysdeps/unix/common -I../sysdeps/unix/=
mman -I../sysdeps/unix/inet -=
I../sysdeps/unix/sysv -I../sysdeps/unix -I../sysdeps/posix -I../sysdeps/pow=
erpc -I../sysdeps/wordsize-32 -I../sysdeps/ieee754 -I../sysdeps/libm-ieee75=
4 -I../sysdeps/generic/elf -I../sysdeps/generic  -nostdinc -isystem /opt/rt=
ldk-1.0/lib/gcc-lib/ppc-linux=
/2.95.2/include -isystem /opt/rtldk-1.0/ppc-linux/include/ -D_LIBC_REENTRAN=
T -include ../include/libc-symbols.h     -o ctype-extn.o
ppc-linux-gcc ctype_l.c -c -O -Wall -Winline -Wstrict-prototypes -Wwrite-st=
rings -g      -I../include -I.  -I.. -I../libio  -I../sysdeps/powerpc/elf -=
I../crypt/sysdeps/unix -I../linuxthreads/sysdeps/unix/sysv/linux -I../linux=
threads/sysdeps/pthread -I../=
linuxthreads/sysdeps/unix/sysv -I../linuxthreads/sysdeps/unix -I../linuxthr=
eads/sysdeps/powerpc -I../sysdeps/unix/sysv/linux/powerpc -I../sysdeps/unix=
/sysv/linux -I../sysdeps/gnu -I../sysdeps/unix/common -I../sysdeps/unix/mma=
n -I../sysdeps/unix/inet -I..=
/sysdeps/unix/sysv -I../sysdeps/unix -I../sysdeps/posix -I../sysdeps/powerp=
c -I../sysdeps/wordsize-32 -I../sysdeps/ieee754 -I../sysdeps/libm-ieee754 -=
I../sysdeps/generic/elf -I../sysdeps/generic  -nostdinc -isystem /opt/rtldk=
-1.0/lib/gcc-lib/ppc-linux/2.=
95.2/include -isystem /opt/rtldk-1.0/ppc-linux/include/ -D_LIBC_REENTRANT -=
include ../include/libc-symbols.h     -o ctype_l.o
ppc-linux-gcc ctype-info.c -c -O -Wall -Winline -Wstrict-prototypes -Wwrite=
-strings -g      -I../include -I.  -I.. -I../libio  -I../sysdeps/powerpc/el=
f -I../crypt/sysdeps/unix -I../linuxthreads/sysdeps/unix/sysv/linux -I../li=
nuxthreads/sysdeps/pthread -I=
../linuxthreads/sysdeps/unix/sysv -I../linuxthreads/sysdeps/unix -I../linux=
threads/sysdeps/powerpc -I../sysdeps/unix/sysv/linux/powerpc -I../sysdeps/u=
nix/sysv/linux -I../sysdeps/gnu -I../sysdeps/unix/common -I../sysdeps/unix/=
mman -I../sysdeps/unix/inet -=
I../sysdeps/unix/sysv -I../sysdeps/unix -I../sysdeps/posix -I../sysdeps/pow=
erpc -I../sysdeps/wordsize-32 -I../sysdeps/ieee754 -I../sysdeps/libm-ieee75=
4 -I../sysdeps/generic/elf -I../sysdeps/generic  -nostdinc -isystem /opt/rt=
ldk-1.0/lib/gcc-lib/ppc-linux=
/2.95.2/include -isystem /opt/rtldk-1.0/ppc-linux/include/ -D_LIBC_REENTRAN=
T -include ../include/libc-symbols.h     -o ctype-info.o
echo 'ctype/ctype.o ctype/ctype-extn.o ctype/ctype_l.o ctype/ctype-info.o' =
> stamp.oT
mv -f stamp.oT stamp.o
ppc-linux-gcc ctype.c -c -O -Wall -Winline -Wstrict-prototypes -Wwrite-stri=
ngs -g   -fpic    -I../include -I.  -I.. -I../libio  -I../sysdeps/powerpc/e=
lf -I../crypt/sysdeps/unix -I../linuxthreads/sysdeps/unix/sysv/linux -I../l=
inuxthreads/sysdeps/pthread -=
I../linuxthreads/sysdeps/unix/sysv -I../linuxthreads/sysdeps/unix -I../linu=
xthreads/sysdeps/powerpc -I../sysdeps/unix/sysv/linux/powerpc -I../sysdeps/=
unix/sysv/linux -I../sysdeps/gnu -I../sysdeps/unix/common -I../sysdeps/unix=
/mman -I../sysdeps/unix/inet=20=
-I../sysdeps/unix/sysv -I../sysdeps/unix -I../sysdeps/posix -I../sysdeps/po=
werpc -I../sysdeps/wordsize-32 -I../sysdeps/ieee754 -I../sysdeps/libm-ieee7=
54 -I../sysdeps/generic/elf -I../sysdeps/generic  -nostdinc -isystem /opt/r=
tldk-1.0/lib/gcc-lib/ppc-linu=
x/2.95.2/include -isystem /opt/rtldk-1.0/ppc-linux/include/ -D_LIBC_REENTRA=
NT -include ../include/libc-symbols.h  -DPIC   -o ctype.os
ppc-linux-gcc ctype-extn.c -c -O -Wall -Winline -Wstrict-prototypes -Wwrite=
-strings -g   -fpic    -I../include -I.  -I.. -I../libio  -I../sysdeps/powe=
rpc/elf -I../crypt/sysdeps/unix -I../linuxthreads/sysdeps/unix/sysv/linux -=
I../linuxthreads/sysdeps/pthr=
ead -I../linuxthreads/sysdeps/unix/sysv -I../linuxthreads/sysdeps/unix -I..=
/linuxthreads/sysdeps/powerpc -I../sysdeps/unix/sysv/linux/powerpc -I../sys=
deps/unix/sysv/linux -I../sysdeps/gnu -I../sysdeps/unix/common -I../sysdeps=
/unix/mman -I../sysdeps/unix/=
inet -I../sysdeps/unix/sysv -I../sysdeps/unix -I../sysdeps/posix -I../sysde=
ps/powerpc -I../sysdeps/wordsize-32 -I../sysdeps/ieee754 -I../sysdeps/libm-=
ieee754 -I../sysdeps/generic/elf -I../sysdeps/generic  -nostdinc -isystem /=
opt/rtldk-1.0/lib/gcc-lib/ppc=
-linux/2.95.2/include -isystem /opt/rtldk-1.0/ppc-linux/include/ -D_LIBC_RE=
ENTRANT -include ../include/libc-symbols.h  -DPIC   -o ctype-extn.os
ppc-linux-gcc ctype_l.c -c -O -Wall -Winline -Wstrict-prototypes -Wwrite-st=
rings -g   -fpic    -I../include -I.  -I.. -I../libio  -I../sysdeps/powerpc=
/elf -I../crypt/sysdeps/unix -I../linuxthreads/sysdeps/unix/sysv/linux -I..=
/linuxthreads/sysdeps/pthread=
 -I../linuxthreads/sysdeps/unix/sysv -I../linuxthreads/sysdeps/unix -I../li=
nuxthreads/sysdeps/powerpc -I../sysdeps/unix/sysv/linux/powerpc -I../sysdep=
s/unix/sysv/linux -I../sysdeps/gnu -I../sysdeps/unix/common -I../sysdeps/un=
ix/mman -I../sysdeps/unix/ine=
t -I../sysdeps/unix/sysv -I../sysdeps/unix -I../sysdeps/posix -I../sysdeps/=
powerpc -I../sysdeps/wordsize-32 -I../sysdeps/ieee754 -I../sysdeps/libm-iee=
e754 -I../sysdeps/generic/elf -I../sysdeps/generic  -nostdinc -isystem /opt=
/rtldk-1.0/lib/gcc-lib/ppc-li=
nux/2.95.2/include -isystem /opt/rtldk-1.0/ppc-linux/include/ -D_LIBC_REENT=
RANT -include ../include/libc-symbols.h  -DPIC   -o ctype_l.os
ppc-linux-gcc ctype-info.c -c -O -Wall -Winline -Wstrict-prototypes -Wwrite=
-strings -g   -fpic    -I../include -I.  -I.. -I../libio  -I../sysdeps/powe=
rpc/elf -I../crypt/sysdeps/unix -I../linuxthreads/sysdeps/unix/sysv/linux -=
I../linuxthreads/sysdeps/pthr=
ead -I../linuxthreads/sysdeps/unix/sysv -I../linuxthreads/sysdeps/unix -I..=
/linuxthreads/sysdeps/powerpc -I../sysdeps/unix/sysv/linux/powerpc -I../sys=
deps/unix/sysv/linux -I../sysdeps/gnu -I../sysdeps/unix/common -I../sysdeps=
/unix/mman -I../sysdeps/unix/=
inet -I../sysdeps/unix/sysv -I../sysdeps/unix -I../sysdeps/posix -I../sysde=
ps/powerpc -I../sysdeps/wordsize-32 -I../sysdeps/ieee754 -I../sysdeps/libm-=
ieee754 -I../sysdeps/generic/elf -I../sysdeps/generic  -nostdinc -isystem /=
opt/rtldk-1.0/lib/gcc-lib/ppc=
-linux/2.95.2/include -isystem /opt/rtldk-1.0/ppc-linux/include/ -D_LIBC_RE=
ENTRANT -include ../include/libc-symbols.h  -DPIC   -o ctype-info.os
echo 'ctype/ctype.os ctype/ctype-extn.os ctype/ctype_l.os ctype/ctype-info.=
os' > stamp.osT
mv -f stamp.osT stamp.os
ppc-linux-gcc ctype.c -c -O -Wall -Winline -Wstrict-prototypes -Wwrite-stri=
ngs -g  -pg    -I../include -I.  -I.. -I../libio  -I../sysdeps/powerpc/elf =
-I../crypt/sysdeps/unix -I../linuxthreads/sysdeps/unix/sysv/linux -I../linu=
xthreads/sysdeps/pthread -I..=
/linuxthreads/sysdeps/unix/sysv -I../linuxthreads/sysdeps/unix -I../linuxth=
reads/sysdeps/powerpc -I../sysdeps/unix/sysv/linux/powerpc -I../sysdeps/uni=
x/sysv/linux -I../sysdeps/gnu -I../sysdeps/unix/common -I../sysdeps/unix/mm=
an -I../sysdeps/unix/inet -I.=
./sysdeps/unix/sysv -I../sysdeps/unix -I../sysdeps/posix -I../sysdeps/power=
pc -I../sysdeps/wordsize-32 -I../sysdeps/ieee754 -I../sysdeps/libm-ieee754 =
-I../sysdeps/generic/elf -I../sysdeps/generic  -nostdinc -isystem /opt/rtld=
k-1.0/lib/gcc-lib/ppc-linux/2=
.95.2/include -isystem /opt/rtldk-1.0/ppc-linux/include/ -D_LIBC_REENTRANT =
-include ../include/libc-symbols.h  -DPROF    -o ctype.op
ppc-linux-gcc ctype-extn.c -c -O -Wall -Winline -Wstrict-prototypes -Wwrite=
-strings -g  -pg    -I../include -I.  -I.. -I../libio  -I../sysdeps/powerpc=
/elf -I../crypt/sysdeps/unix -I../linuxthreads/sysdeps/unix/sysv/linux -I..=
/linuxthreads/sysdeps/pthread=
 -I../linuxthreads/sysdeps/unix/sysv -I../linuxthreads/sysdeps/unix -I../li=
nuxthreads/sysdeps/powerpc -I../sysdeps/unix/sysv/linux/powerpc -I../sysdep=
s/unix/sysv/linux -I../sysdeps/gnu -I../sysdeps/unix/common -I../sysdeps/un=
ix/mman -I../sysdeps/unix/ine=
t -I../sysdeps/unix/sysv -I../sysdeps/unix -I../sysdeps/posix -I../sysdeps/=
powerpc -I../sysdeps/wordsize-32 -I../sysdeps/ieee754 -I../sysdeps/libm-iee=
e754 -I../sysdeps/generic/elf -I../sysdeps/generic  -nostdinc -isystem /opt=
/rtldk-1.0/lib/gcc-lib/ppc-li=
nux/2.95.2/include -isystem /opt/rtldk-1.0/ppc-linux/include/ -D_LIBC_REENT=
RANT -include ../include/libc-symbols.h  -DPROF    -o ctype-extn.op
ppc-linux-gcc ctype_l.c -c -O -Wall -Winline -Wstrict-prototypes -Wwrite-st=
rings -g  -pg    -I../include -I.  -I.. -I../libio  -I../sysdeps/powerpc/el=
f -I../crypt/sysdeps/unix -I../linuxthreads/sysdeps/unix/sysv/linux -I../li=
nuxthreads/sysdeps/pthread -I=
../linuxthreads/sysdeps/unix/sysv -I../linuxthreads/sysdeps/unix -I../linux=
threads/sysdeps/powerpc -I../sysdeps/unix/sysv/linux/powerpc -I../sysdeps/u=
nix/sysv/linux -I../sysdeps/gnu -I../sysdeps/unix/common -I../sysdeps/unix/=
mman -I../sysdeps/unix/inet -=
I../sysdeps/unix/sysv -I../sysdeps/unix -I../sysdeps/posix -I../sysdeps/pow=
erpc -I../sysdeps/wordsize-32 -I../sysdeps/ieee754 -I../sysdeps/libm-ieee75=
4 -I../sysdeps/generic/elf -I../sysdeps/generic  -nostdinc -isystem /opt/rt=
ldk-1.0/lib/gcc-lib/ppc-linux=
/2.95.2/include -isystem /opt/rtldk-1.0/ppc-linux/include/ -D_LIBC_REENTRAN=
T -include ../include/libc-symbols.h  -DPROF    -o ctype_l.op
ppc-linux-gcc ctype-info.c -c -O -Wall -Winline -Wstrict-prototypes -Wwrite=
-strings -g  -pg    -I../include -I.  -I.. -I../libio  -I../sysdeps/powerpc=
/elf -I../crypt/sysdeps/unix -I../linuxthreads/sysdeps/unix/sysv/linux -I..=
/linuxthreads/sysdeps/pthread=
 -I../linuxthreads/sysdeps/unix/sysv -I../linuxthreads/sysdeps/unix -I../li=
nuxthreads/sysdeps/powerpc -I../sysdeps/unix/sysv/linux/powerpc -I../sysdep=
s/unix/sysv/linux -I../sysdeps/gnu -I../sysdeps/unix/common -I../sysdeps/un=
ix/mman -I../sysdeps/unix/ine=
t -I../sysdeps/unix/sysv -I../sysdeps/unix -I../sysdeps/posix -I../sysdeps/=
powerpc -I../sysdeps/wordsize-32 -I../sysdeps/ieee754 -I../sysdeps/libm-iee=
e754 -I../sysdeps/generic/elf -I../sysdeps/generic  -nostdinc -isystem /opt=
/rtldk-1.0/lib/gcc-lib/ppc-li=
nux/2.95.2/include -isystem /opt/rtldk-1.0/ppc-linux/include/ -D_LIBC_REENT=
RANT -include ../include/libc-symbols.h  -DPROF    -o ctype-info.op
echo 'ctype/ctype.op ctype/ctype-extn.op ctype/ctype_l.op ctype/ctype-info.=
op' > stamp.opT
mv -f stamp.opT stamp.op
echo '' > stamp.oST
mv -f stamp.oST stamp.oS
make[1]: Leaving directory `/opt/rtldk-1.0/ppc_root_src/glibc/glibc-2.1.3/c=
type'
make  -C db subdir_lib
make[1]: Entering directory `/opt/rtldk-1.0/ppc_root_src/glibc/glibc-2.1.3/=
db'
make[1]: Leaving directory `/opt/rtldk-1.0/ppc_root_src/glibc/glibc-2.1.3/d=
b'
make[1]: Entering directory `/opt/rtldk-1.0/ppc_root_src/glibc/glibc-2.1.3/=
db'
rm -f stamp.o; > stamp.o
rm -f stamp.os; > stamp.os
rm -f stamp.op; > stamp.op
rm -f stamp.oS; > stamp.oS
make[1]: Leaving directory `/opt/rtldk-1.0/ppc_root_src/glibc/glibc-2.1.3/d=
b'
make  -C db2 subdir_lib
make[1]: Entering directory `/opt/rtldk-1.0/ppc_root_src/glibc/glibc-2.1.3/=
db2'
make[1]: Leaving directory `/opt/rtldk-1.0/ppc_root_src/glibc/glibc-2.1.3/d=
b2'
make[1]: Entering directory `/opt/rtldk-1.0/ppc_root_src/glibc/glibc-2.1.3/=
db2'
rm -f stamp.o; > stamp.o
rm -f stamp.os; > stamp.os
rm -f stamp.op; > stamp.op
rm -f stamp.oS; > stamp.oS
make[1]: Leaving directory `/opt/rtldk-1.0/ppc_root_src/glibc/glibc-2.1.3/d=
b2'
make  -C locale subdir_lib
make[1]: Entering directory `/opt/rtldk-1.0/ppc_root_src/glibc/glibc-2.1.3/=
locale'
make[1]: Leaving directory `/opt/rtldk-1.0/ppc_root_src/glibc/glibc-2.1.3/l=
ocale'
make[1]: Entering directory `/opt/rtldk-1.0/ppc_root_src/glibc/glibc-2.1.3/=
locale'
ppc-linux-gcc setlocale.c -c -O -Wall -Winline -Wstrict-prototypes -Wwrite-=
strings -g     -DLOCALE_PATH=3D'"/usr/local/share/locale:/usr/local/share/i=
18n"' -DLOCALEDIR=3D'"/usr/local/share/locale"' -DLOCALE_ALIAS_PATH=3D'"/us=
r/local/share/locale:/usr/local/sha=
re/i18n"' -DCHARMAP_PATH=3D'"/usr/local/share/i18n/charmaps"' -DREPERTOIREM=
AP_PATH=3D'"/usr/local/share/i18n/repertoiremaps"' -DLOCSRCDIR=3D'"/usr/loc=
al/share/i18n/locales"' -DHAVE_CONFIG_H -Iprograms -I../include -I.  -I.. -=
I../libio  -I../sysdeps/powerpc/elf=
 -I../crypt/sysdeps/unix -I../linuxthreads/sysdeps/unix/sysv/linux -I../lin=
uxthreads/sysdeps/pthread -I../linuxthreads/sysdeps/unix/sysv -I../linuxthr=
eads/sysdeps/unix -I../linuxthreads/sysdeps/powerpc -I../sysdeps/unix/sysv/=
linux/powerpc -I../sysdeps/un=
ix/sysv/linux -I../sysdeps/gnu -I../sysdeps/unix/common -I../sysdeps/unix/m=
man -I../sysdeps/unix/inet -I../sysdeps/unix/sysv -I../sysdeps/unix -I../sy=
sdeps/posix -I../sysdeps/powerpc -I../sysdeps/wordsize-32 -I../sysdeps/ieee=
754 -I../sysdeps/libm-ieee754=
 -I../sysdeps/generic/elf -I../sysdeps/generic  -nostdinc -isystem /opt/rtl=
dk-1.0/lib/gcc-lib/ppc-linux/2.95.2/include -isystem /opt/rtldk-1.0/ppc-lin=
ux/include/ -D_LIBC_REENTRANT -include ../include/libc-symbols.h     -o set=
locale.o
ppc-linux-gcc findlocale.c -c -O -Wall -Winline -Wstrict-prototypes -Wwrite=
-strings -g     -DLOCALE_PATH=3D'"/usr/local/share/locale:/usr/local/share/=
i18n"' -DLOCALEDIR=3D'"/usr/local/share/locale"' -DLOCALE_ALIAS_PATH=3D'"/u=
sr/local/share/locale:/usr/local/sh=
are/i18n"' -DCHARMAP_PATH=3D'"/usr/local/share/i18n/charmaps"' -DREPERTOIRE=
MAP_PATH=3D'"/usr/local/share/i18n/repertoiremaps"' -DLOCSRCDIR=3D'"/usr/lo=
cal/share/i18n/locales"' -DHAVE_CONFIG_H -Iprograms -I../include -I.  -I.. =
-I../libio  -I../sysdeps/powerpc/el=
f -I../crypt/sysdeps/unix -I../linuxthreads/sysdeps/unix/sysv/linux -I../li=
nuxthreads/sysdeps/pthread -I../linuxthreads/sysdeps/unix/sysv -I../linuxth=
reads/sysdeps/unix -I../linuxthreads/sysdeps/powerpc -I../sysdeps/unix/sysv=
/linux/powerpc -I../sysdeps/u=
nix/sysv/linux -I../sysdeps/gnu -I../sysdeps/unix/common -I../sysdeps/unix/=
mman -I../sysdeps/unix/inet -I../sysdeps/unix/sysv -I../sysdeps/unix -I../s=
ysdeps/posix -I../sysdeps/powerpc -I../sysdeps/wordsize-32 -I../sysdeps/iee=
e754 -I../sysdeps/libm-ieee75=
4 -I../sysdeps/generic/elf -I../sysdeps/generic  -nostdinc -isystem /opt/rt=
ldk-1.0/lib/gcc-lib/ppc-linux/2.95.2/include -isystem /opt/rtldk-1.0/ppc-li=
nux/include/ -D_LIBC_REENTRANT -include ../include/libc-symbols.h     -o fi=
ndlocale.o
ppc-linux-gcc loadlocale.c -c -O -Wall -Winline -Wstrict-prototypes -Wwrite=
-strings -g     -DLOCALE_PATH=3D'"/usr/local/share/locale:/usr/local/share/=
i18n"' -DLOCALEDIR=3D'"/usr/local/share/locale"' -DLOCALE_ALIAS_PATH=3D'"/u=
sr/local/share/locale:/usr/local/sh=
are/i18n"' -DCHARMAP_PATH=3D'"/usr/local/share/i18n/charmaps"' -DREPERTOIRE=
MAP_PATH=3D'"/usr/local/share/i18n/repertoiremaps"' -DLOCSRCDIR=3D'"/usr/lo=
cal/share/i18n/locales"' -DHAVE_CONFIG_H -Iprograms -I../include -I.  -I.. =
-I../libio  -I../sysdeps/powerpc/el=
f -I../crypt/sysdeps/unix -I../linuxthreads/sysdeps/unix/sysv/linux -I../li=
nuxthreads/sysdeps/pthread -I../linuxthreads/sysdeps/unix/sysv -I../linuxth=
reads/sysdeps/unix -I../linuxthreads/sysdeps/powerpc -I../sysdeps/unix/sysv=
/linux/powerpc -I../sysdeps/u=
nix/sysv/linux -I../sysdeps/gnu -I../sysdeps/unix/common -I../sysdeps/unix/=
mman -I../sysdeps/unix/inet -I../sysdeps/unix/sysv -I../sysdeps/unix -I../s=
ysdeps/posix -I../sysdeps/powerpc -I../sysdeps/wordsize-32 -I../sysdeps/iee=
e754 -I../sysdeps/libm-ieee75=
4 -I../sysdeps/generic/elf -I../sysdeps/generic  -nostdinc -isystem /opt/rt=
ldk-1.0/lib/gcc-lib/ppc-linux/2.95.2/include -isystem /opt/rtldk-1.0/ppc-li=
nux/include/ -D_LIBC_REENTRANT -include ../include/libc-symbols.h     -o lo=
adlocale.o
ppc-linux-gcc localeconv.c -c -O -Wall -Winline -Wstrict-prototypes -Wwrite=
-strings -g     -DLOCALE_PATH=3D'"/usr/local/share/locale:/usr/local/share/=
i18n"' -DLOCALEDIR=3D'"/usr/local/share/locale"' -DLOCALE_ALIAS_PATH=3D'"/u=
sr/local/share/locale:/usr/local/sh=
are/i18n"' -DCHARMAP_PATH=3D'"/usr/local/share/i18n/charmaps"' -DREPERTOIRE=
MAP_PATH=3D'"/usr/local/share/i18n/repertoiremaps"' -DLOCSRCDIR=3D'"/usr/lo=
cal/share/i18n/locales"' -DHAVE_CONFIG_H -Iprograms -I../include -I.  -I.. =
-I../libio  -I../sysdeps/powerpc/el=
f -I../crypt/sysdeps/unix -I../linuxthreads/sysdeps/unix/sysv/linux -I../li=
nuxthreads/sysdeps/pthread -I../linuxthreads/sysdeps/unix/sysv -I../linuxth=
reads/sysdeps/unix -I../linuxthreads/sysdeps/powerpc -I../sysdeps/unix/sysv=
/linux/powerpc -I../sysdeps/u=
nix/sysv/linux -I../sysdeps/gnu -I../sysdeps/unix/common -I../sysdeps/unix/=
mman -I../sysdeps/unix/inet -I../sysdeps/unix/sysv -I../sysdeps/unix -I../s=
ysdeps/posix -I../sysdeps/powerpc -I../sysdeps/wordsize-32 -I../sysdeps/iee=
e754 -I../sysdeps/libm-ieee75=
4 -I../sysdeps/generic/elf -I../sysdeps/generic  -nostdinc -isystem /opt/rt=
ldk-1.0/lib/gcc-lib/ppc-linux/2.95.2/include -isystem /opt/rtldk-1.0/ppc-li=
nux/include/ -D_LIBC_REENTRANT -include ../include/libc-symbols.h     -o lo=
caleconv.o
ppc-linux-gcc nl_langinfo.c -c -O -Wall -Winline -Wstrict-prototypes -Wwrit=
e-strings -g     -DLOCALE_PATH=3D'"/usr/local/share/locale:/usr/local/share=
/i18n"' -DLOCALEDIR=3D'"/usr/local/share/locale"' -DLOCALE_ALIAS_PATH=3D'"/=
usr/local/share/locale:/usr/local/s=
hare/i18n"' -DCHARMAP_PATH=3D'"/usr/local/share/i18n/charmaps"' -DREPERTOIR=
EMAP_PATH=3D'"/usr/local/share/i18n/repertoiremaps"' -DLOCSRCDIR=3D'"/usr/l=
ocal/share/i18n/locales"' -DHAVE_CONFIG_H -Iprograms -I../include -I.  -I..=
 -I../libio  -I../sysdeps/powerpc/e=
lf -I../crypt/sysdeps/unix -I../linuxthreads/sysdeps/unix/sysv/linux -I../l=
inuxthreads/sysdeps/pthread -I../linuxthreads/sysdeps/unix/sysv -I../linuxt=
hreads/sysdeps/unix -I../linuxthreads/sysdeps/powerpc -I../sysdeps/unix/sys=
v/linux/powerpc -I../sysdeps/=
unix/sysv/linux -I../sysdeps/gnu -I../sysdeps/unix/common -I../sysdeps/unix=
/mman -I../sysdeps/unix/inet -I../sysdeps/unix/sysv -I../sysdeps/unix -I../=
sysdeps/posix -I../sysdeps/powerpc -I../sysdeps/wordsize-32 -I../sysdeps/ie=
ee754 -I../sysdeps/libm-ieee7=
54 -I../sysdeps/generic/elf -I../sysdeps/generic  -nostdinc -isystem /opt/r=
tldk-1.0/lib/gcc-lib/ppc-linux/2.95.2/include -isystem /opt/rtldk-1.0/ppc-l=
inux/include/ -D_LIBC_REENTRANT -include ../include/libc-symbols.h     -o n=
l_langinfo.o
ppc-linux-gcc mb_cur_max.c -c -O -Wall -Winline -Wstrict-prototypes -Wwrite=
-strings -g     -DLOCALE_PATH=3D'"/usr/local/share/locale:/usr/local/share/=
i18n"' -DLOCALEDIR=3D'"/usr/local/share/locale"' -DLOCALE_ALIAS_PATH=3D'"/u=
sr/local/share/locale:/usr/local/sh=
are/i18n"' -DCHARMAP_PATH=3D'"/usr/local/share/i18n/charmaps"' -DREPERTOIRE=
MAP_PATH=3D'"/usr/local/share/i18n/repertoiremaps"' -DLOCSRCDIR=3D'"/usr/lo=
cal/share/i18n/locales"' -DHAVE_CONFIG_H -Iprograms -I../include -I.  -I.. =
-I../libio  -I../sysdeps/powerpc/el=
f -I../crypt/sysdeps/unix -I../linuxthreads/sysdeps/unix/sysv/linux -I../li=
nuxthreads/sysdeps/pthread -I../linuxthreads/sysdeps/unix/sysv -I../linuxth=
reads/sysdeps/unix -I../linuxthreads/sysdeps/powerpc -I../sysdeps/unix/sysv=
/linux/powerpc -I../sysdeps/u=
nix/sysv/linux -I../sysdeps/gnu -I../sysdeps/unix/common -I../sysdeps/unix/=
mman -I../sysdeps/unix/inet -I../sysdeps/unix/sysv -I../sysdeps/unix -I../s=
ysdeps/posix -I../sysdeps/powerpc -I../sysdeps/wordsize-32 -I../sysdeps/iee=
e754 -I../sysdeps/libm-ieee75=
4 -I../sysdeps/generic/elf -I../sysdeps/generic  -nostdinc -isystem /opt/rt=
ldk-1.0/lib/gcc-lib/ppc-linux/2.95.2/include -isystem /opt/rtldk-1.0/ppc-li=
nux/include/ -D_LIBC_REENTRANT -include ../include/libc-symbols.h     -o mb=
_cur_max.o
ppc-linux-gcc codeset_name.c -c -O -Wall -Winline -Wstrict-prototypes -Wwri=
te-strings -g     -DLOCALE_PATH=3D'"/usr/local/share/locale:/usr/local/shar=
e/i18n"' -DLOCALEDIR=3D'"/usr/local/share/locale"' -DLOCALE_ALIAS_PATH=3D'"=
/usr/local/share/locale:/usr/local/=
share/i18n"' -DCHARMAP_PATH=3D'"/usr/local/share/i18n/charmaps"' -DREPERTOI=
REMAP_PATH=3D'"/usr/local/share/i18n/repertoiremaps"' -DLOCSRCDIR=3D'"/usr/=
local/share/i18n/locales"' -DHAVE_CONFIG_H -Iprograms -I../include -I.  -I.=
. -I../libio  -I../sysdeps/powerpc/=
elf -I../crypt/sysdeps/unix -I../linuxthreads/sysdeps/unix/sysv/linux -I../=
linuxthreads/sysdeps/pthread -I../linuxthreads/sysdeps/unix/sysv -I../linux=
threads/sysdeps/unix -I../linuxthreads/sysdeps/powerpc -I../sysdeps/unix/sy=
sv/linux/powerpc -I../sysdeps=
/unix/sysv/linux -I../sysdeps/gnu -I../sysdeps/unix/common -I../sysdeps/uni=
x/mman -I../sysdeps/unix/inet -I../sysdeps/unix/sysv -I../sysdeps/unix -I..=
/sysdeps/posix -I../sysdeps/powerpc -I../sysdeps/wordsize-32 -I../sysdeps/i=
eee754 -I../sysdeps/libm-ieee=
754 -I../sysdeps/generic/elf -I../sysdeps/generic  -nostdinc -isystem /opt/=
rtldk-1.0/lib/gcc-lib/ppc-linux/2.95.2/include -isystem /opt/rtldk-1.0/ppc-=
linux/include/ -D_LIBC_REENTRANT -include ../include/libc-symbols.h     -o =
codeset_name.o
ppc-linux-gcc newlocale.c -c -O -Wall -Winline -Wstrict-prototypes -Wwrite-=
strings -g     -DLOCALE_PATH=3D'"/usr/local/share/locale:/usr/local/share/i=
18n"' -DLOCALEDIR=3D'"/usr/local/share/locale"' -DLOCALE_ALIAS_PATH=3D'"/us=
r/local/share/locale:/usr/local/sha=
re/i18n"' -DCHARMAP_PATH=3D'"/usr/local/share/i18n/charmaps"' -DREPERTOIREM=
AP_PATH=3D'"/usr/local/share/i18n/repertoiremaps"' -DLOCSRCDIR=3D'"/usr/loc=
al/share/i18n/locales"' -DHAVE_CONFIG_H -Iprograms -I../include -I.  -I.. -=
I../libio  -I../sysdeps/powerpc/elf=
 -I../crypt/sysdeps/unix -I../linuxthreads/sysdeps/unix/sysv/linux -I../lin=
uxthreads/sysdeps/pthread -I../linuxthreads/sysdeps/unix/sysv -I../linuxthr=
eads/sysdeps/unix -I../linuxthreads/sysdeps/powerpc -I../sysdeps/unix/sysv/=
linux/powerpc -I../sysdeps/un=
ix/sysv/linux -I../sysdeps/gnu -I../sysdeps/unix/common -I../sysdeps/unix/m=
man -I../sysdeps/unix/inet -I../sysdeps/unix/sysv -I../sysdeps/unix -I../sy=
sdeps/posix -I../sysdeps/powerpc -I../sysdeps/wordsize-32 -I../sysdeps/ieee=
754 -I../sysdeps/libm-ieee754=
 -I../sysdeps/generic/elf -I../sysdeps/generic  -nostdinc -isystem /opt/rtl=
dk-1.0/lib/gcc-lib/ppc-linux/2.95.2/include -isystem /opt/rtldk-1.0/ppc-lin=
ux/include/ -D_LIBC_REENTRANT -include ../include/libc-symbols.h     -o new=
locale.o
ppc-linux-gcc duplocale.c -c -O -Wall -Winline -Wstrict-prototypes -Wwrite-=
strings -g     -DLOCALE_PATH=3D'"/usr/local/share/locale:/usr/local/share/i=
18n"' -DLOCALEDIR=3D'"/usr/local/share/locale"' -DLOCALE_ALIAS_PATH=3D'"/us=
r/local/share/locale:/usr/local/sha=
re/i18n"' -DCHARMAP_PATH=3D'"/usr/local/share/i18n/charmaps"' -DREPERTOIREM=
AP_PATH=3D'"/usr/local/share/i18n/repertoiremaps"' -DLOCSRCDIR=3D'"/usr/loc=
al/share/i18n/locales"' -DHAVE_CONFIG_H -Iprograms -I../include -I.  -I.. -=
I../libio  -I../sysdeps/powerpc/elf=
 -I../crypt/sysdeps/unix -I../linuxthreads/sysdeps/unix/sysv/linux -I../lin=
uxthreads/sysdeps/pthread -I../linuxthreads/sysdeps/unix/sysv -I../linuxthr=
eads/sysdeps/unix -I../linuxthreads/sysdeps/powerpc -I../sysdeps/unix/sysv/=
linux/powerpc -I../sysdeps/un=
ix/sysv/linux -I../sysdeps/gnu -I../sysdeps/unix/common -I../sysdeps/unix/m=
man -I../sysdeps/unix/inet -I../sysdeps/unix/sysv -I../sysdeps/unix -I../sy=
sdeps/posix -I../sysdeps/powerpc -I../sysdeps/wordsize-32 -I../sysdeps/ieee=
754 -I../sysdeps/libm-ieee754=
 -I../sysdeps/generic/elf -I../sysdeps/generic  -nostdinc -isystem /opt/rtl=
dk-1.0/lib/gcc-lib/ppc-linux/2.95.2/include -isystem /opt/rtldk-1.0/ppc-lin=
ux/include/ -D_LIBC_REENTRANT -include ../include/libc-symbols.h     -o dup=
locale.o
ppc-linux-gcc freelocale.c -c -O -Wall -Winline -Wstrict-prototypes -Wwrite=
-strings -g     -DLOCALE_PATH=3D'"/usr/local/share/locale:/usr/local/share/=
i18n"' -DLOCALEDIR=3D'"/usr/local/share/locale"' -DLOCALE_ALIAS_PATH=3D'"/u=
sr/local/share/locale:/usr/local/sh=
are/i18n"' -DCHARMAP_PATH=3D'"/usr/local/share/i18n/charmaps"' -DREPERTOIRE=
MAP_PATH=3D'"/usr/local/share/i18n/repertoiremaps"' -DLOCSRCDIR=3D'"/usr/lo=
cal/share/i18n/locales"' -DHAVE_CONFIG_H -Iprograms -I../include -I.  -I.. =
-I../libio  -I../sysdeps/powerpc/el=
f -I../crypt/sysdeps/unix -I../linuxthreads/sysdeps/unix/sysv/linux -I../li=
nuxthreads/sysdeps/pthread -I../linuxthreads/sysdeps/unix/sysv -I../linuxth=
reads/sysdeps/unix -I../linuxthreads/sysdeps/powerpc -I../sysdeps/unix/sysv=
/linux/powerpc -I../sysdeps/u=
nix/sysv/linux -I../sysdeps/gnu -I../sysdeps/unix/common -I../sysdeps/unix/=
mman -I../sysdeps/unix/inet -I../sysdeps/unix/sysv -I../sysdeps/unix -I../s=
ysdeps/posix -I../sysdeps/powerpc -I../sysdeps/wordsize-32 -I../sysdeps/iee=
e754 -I../sysdeps/libm-ieee75=
4 -I../sysdeps/generic/elf -I../sysdeps/generic  -nostdinc -isystem /opt/rt=
ldk-1.0/lib/gcc-lib/ppc-linux/2.95.2/include -isystem /opt/rtldk-1.0/ppc-li=
nux/include/ -D_LIBC_REENTRANT -include ../include/libc-symbols.h     -o fr=
eelocale.o
ppc-linux-gcc lc-ctype.c -c -O -Wall -Winline -Wstrict-prototypes -Wwrite-s=
trings -g     -DLOCALE_PATH=3D'"/usr/local/share/locale:/usr/local/share/i1=
8n"' -DLOCALEDIR=3D'"/usr/local/share/locale"' -DLOCALE_ALIAS_PATH=3D'"/usr=
/local/share/locale:/usr/local/shar=
e/i18n"' -DCHARMAP_PATH=3D'"/usr/local/share/i18n/charmaps"' -DREPERTOIREMA=
P_PATH=3D'"/usr/local/share/i18n/repertoiremaps"' -DLOCSRCDIR=3D'"/usr/loca=
l/share/i18n/locales"' -DHAVE_CONFIG_H -Iprograms -I../include -I.  -I.. -I=
../libio  -I../sysdeps/powerpc/elf=20=
-I../crypt/sysdeps/unix -I../linuxthreads/sysdeps/unix/sysv/linux -I../linu=
xthreads/sysdeps/pthread -I../linuxthreads/sysdeps/unix/sysv -I../linuxthre=
ads/sysdeps/unix -I../linuxthreads/sysdeps/powerpc -I../sysdeps/unix/sysv/l=
inux/powerpc -I../sysdeps/uni=
x/sysv/linux -I../sysdeps/gnu -I../sysdeps/unix/common -I../sysdeps/unix/mm=
an -I../sysdeps/unix/inet -I../sysdeps/unix/sysv -I../sysdeps/unix -I../sys=
deps/posix -I../sysdeps/powerpc -I../sysdeps/wordsize-32 -I../sysdeps/ieee7=
54 -I../sysdeps/libm-ieee754=20=
-I../sysdeps/generic/elf -I../sysdeps/generic  -nostdinc -isystem /opt/rtld=
k-1.0/lib/gcc-lib/ppc-linux/2.95.2/include -isystem /opt/rtldk-1.0/ppc-linu=
x/include/ -D_LIBC_REENTRANT -include ../include/libc-symbols.h     -o lc-c=
type.o
ppc-linux-gcc lc-messages.c -c -O -Wall -Winline -Wstrict-prototypes -Wwrit=
e-strings -g     -DLOCALE_PATH=3D'"/usr/local/share/locale:/usr/local/share=
/i18n"' -DLOCALEDIR=3D'"/usr/local/share/locale"' -DLOCALE_ALIAS_PATH=3D'"/=
usr/local/share/locale:/usr/local/s=
hare/i18n"' -DCHARMAP_PATH=3D'"/usr/local/share/i18n/charmaps"' -DREPERTOIR=
EMAP_PATH=3D'"/usr/local/share/i18n/repertoiremaps"' -DLOCSRCDIR=3D'"/usr/l=
ocal/share/i18n/locales"' -DHAVE_CONFIG_H -Iprograms -I../include -I.  -I..=
 -I../libio  -I../sysdeps/powerpc/e=
lf -I../crypt/sysdeps/unix -I../linuxthreads/sysdeps/unix/sysv/linux -I../l=
inuxthreads/sysdeps/pthread -I../linuxthreads/sysdeps/unix/sysv -I../linuxt=
hreads/sysdeps/unix -I../linuxthreads/sysdeps/powerpc -I../sysdeps/unix/sys=
v/linux/powerpc -I../sysdeps/=
unix/sysv/linux -I../sysdeps/gnu -I../sysdeps/unix/common -I../sysdeps/unix=
/mman -I../sysdeps/unix/inet -I../sysdeps/unix/sysv -I../sysdeps/unix -I../=
sysdeps/posix -I../sysdeps/powerpc -I../sysdeps/wordsize-32 -I../sysdeps/ie=
ee754 -I../sysdeps/libm-ieee7=
54 -I../sysdeps/generic/elf -I../sysdeps/generic  -nostdinc -isystem /opt/r=
tldk-1.0/lib/gcc-lib/ppc-linux/2.95.2/include -isystem /opt/rtldk-1.0/ppc-l=
inux/include/ -D_LIBC_REENTRANT -include ../include/libc-symbols.h     -o l=
c-messages.o
ppc-linux-gcc lc-monetary.c -c -O -Wall -Winline -Wstrict-prototypes -Wwrit=
e-strings -g     -DLOCALE_PATH=3D'"/usr/local/share/locale:/usr/local/share=
/i18n"' -DLOCALEDIR=3D'"/usr/local/share/locale"' -DLOCALE_ALIAS_PATH=3D'"/=
usr/local/share/locale:/usr/local/s=
hare/i18n"' -DCHARMAP_PATH=3D'"/usr/local/share/i18n/charmaps"' -DREPERTOIR=
EMAP_PATH=3D'"/usr/local/share/i18n/repertoiremaps"' -DLOCSRCDIR=3D'"/usr/l=
ocal/share/i18n/locales"' -DHAVE_CONFIG_H -Iprograms -I../include -I.  -I..=
 -I../libio  -I../sysdeps/powerpc/e=
lf -I../crypt/sysdeps/unix -I../linuxthreads/sysdeps/unix/sysv/linux -I../l=
inuxthreads/sysdeps/pthread -I../linuxthreads/sysdeps/unix/sysv -I../linuxt=
hreads/sysdeps/unix -I../linuxthreads/sysdeps/powerpc -I../sysdeps/unix/sys=
v/linux/powerpc -I../sysdeps/=
unix/sysv/linux -I../sysdeps/gnu -I../sysdeps/unix/common -I../sysdeps/unix=
/mman -I../sysdeps/unix/inet -I../sysdeps/unix/sysv -I../sysdeps/unix -I../=
sysdeps/posix -I../sysdeps/powerpc -I../sysdeps/wordsize-32 -I../sysdeps/ie=
ee754 -I../sysdeps/libm-ieee7=
54 -I../sysdeps/generic/elf -I../sysdeps/generic  -nostdinc -isystem /opt/r=
tldk-1.0/lib/gcc-lib/ppc-linux/2.95.2/include -isystem /opt/rtldk-1.0/ppc-l=
inux/include/ -D_LIBC_REENTRANT -include ../include/libc-symbols.h     -o l=
c-monetary.o
ppc-linux-gcc lc-numeric.c -c -O -Wall -Winline -Wstrict-prototypes -Wwrite=
-strings -g     -DLOCALE_PATH=3D'"/usr/local/share/locale:/usr/local/share/=
i18n"' -DLOCALEDIR=3D'"/usr/local/share/locale"' -DLOCALE_ALIAS_PATH=3D'"/u=
sr/local/share/locale:/usr/local/sh=
are/i18n"' -DCHARMAP_PATH=3D'"/usr/local/share/i18n/charmaps"' -DREPERTOIRE=
MAP_PATH=3D'"/usr/local/share/i18n/repertoiremaps"' -DLOCSRCDIR=3D'"/usr/lo=
cal/share/i18n/locales"' -DHAVE_CONFIG_H -Iprograms -I../include -I.  -I.. =
-I../libio  -I../sysdeps/powerpc/el=
f -I../crypt/sysdeps/unix -I../linuxthreads/sysdeps/unix/sysv/linux -I../li=
nuxthreads/sysdeps/pthread -I../linuxthreads/sysdeps/unix/sysv -I../linuxth=
reads/sysdeps/unix -I../linuxthreads/sysdeps/powerpc -I../sysdeps/unix/sysv=
/linux/powerpc -I../sysdeps/u=
nix/sysv/linux -I../sysdeps/gnu -I../sysdeps/unix/common -I../sysdeps/unix/=
mman -I../sysdeps/unix/inet -I../sysdeps/unix/sysv -I../sysdeps/unix -I../s=
ysdeps/posix -I../sysdeps/powerpc -I../sysdeps/wordsize-32 -I../sysdeps/iee=
e754 -I../sysdeps/libm-ieee75=
4 -I../sysdeps/generic/elf -I../sysdeps/generic  -nostdinc -isystem /opt/rt=
ldk-1.0/lib/gcc-lib/ppc-linux/2.95.2/include -isystem /opt/rtldk-1.0/ppc-li=
nux/include/ -D_LIBC_REENTRANT -include ../include/libc-symbols.h     -o lc=
-numeric.o
ppc-linux-gcc lc-time.c -c -O -Wall -Winline -Wstrict-prototypes -Wwrite-st=
rings -g     -DLOCALE_PATH=3D'"/usr/local/share/locale:/usr/local/share/i18=
n"' -DLOCALEDIR=3D'"/usr/local/share/locale"' -DLOCALE_ALIAS_PATH=3D'"/usr/=
local/share/locale:/usr/local/share=
/i18n"' -DCHARMAP_PATH=3D'"/usr/local/share/i18n/charmaps"' -DREPERTOIREMAP=
_PATH=3D'"/usr/local/share/i18n/repertoiremaps"' -DLOCSRCDIR=3D'"/usr/local=
/share/i18n/locales"' -DHAVE_CONFIG_H -Iprograms -I../include -I.  -I.. -I.=
./libio  -I../sysdeps/powerpc/elf -=
I../crypt/sysdeps/unix -I../linuxthreads/sysdeps/unix/sysv/linux -I../linux=
threads/sysdeps/pthread -I../linuxthreads/sysdeps/unix/sysv -I../linuxthrea=
ds/sysdeps/unix -I../linuxthreads/sysdeps/powerpc -I../sysdeps/unix/sysv/li=
nux/powerpc -I../sysdeps/unix=
/sysv/linux -I../sysdeps/gnu -I../sysdeps/unix/common -I../sysdeps/unix/mma=
n -I../sysdeps/unix/inet -I../sysdeps/unix/sysv -I../sysdeps/unix -I../sysd=
eps/posix -I../sysdeps/powerpc -I../sysdeps/wordsize-32 -I../sysdeps/ieee75=
4 -I../sysdeps/libm-ieee754 -=
I../sysdeps/generic/elf -I../sysdeps/generic  -nostdinc -isystem /opt/rtldk=
-1.0/lib/gcc-lib/ppc-linux/2.95.2/include -isystem /opt/rtldk-1.0/ppc-linux=
/include/ -D_LIBC_REENTRANT -include ../include/libc-symbols.h     -o lc-ti=
me.o
ppc-linux-gcc lc-collate.c -c -O -Wall -Winline -Wstrict-prototypes -Wwrite=
-strings -g     -DLOCALE_PATH=3D'"/usr/local/share/locale:/usr/local/share/=
i18n"' -DLOCALEDIR=3D'"/usr/local/share/locale"' -DLOCALE_ALIAS_PATH=3D'"/u=
sr/local/share/locale:/usr/local/sh=
are/i18n"' -DCHARMAP_PATH=3D'"/usr/local/share/i18n/charmaps"' -DREPERTOIRE=
MAP_PATH=3D'"/usr/local/share/i18n/repertoiremaps"' -DLOCSRCDIR=3D'"/usr/lo=
cal/share/i18n/locales"' -DHAVE_CONFIG_H -Iprograms -I../include -I.  -I.. =
-I../libio  -I../sysdeps/powerpc/el=
f -I../crypt/sysdeps/unix -I../linuxthreads/sysdeps/unix/sysv/linux -I../li=
nuxthreads/sysdeps/pthread -I../linuxthreads/sysdeps/unix/sysv -I../linuxth=
reads/sysdeps/unix -I../linuxthreads/sysdeps/powerpc -I../sysdeps/unix/sysv=
/linux/powerpc -I../sysdeps/u=
nix/sysv/linux -I../sysdeps/gnu -I../sysdeps/unix/common -I../sysdeps/unix/=
mman -I../sysdeps/unix/inet -I../sysdeps/unix/sysv -I../sysdeps/unix -I../s=
ysdeps/posix -I../sysdeps/powerpc -I../sysdeps/wordsize-32 -I../sysdeps/iee=
e754 -I../sysdeps/libm-ieee75=
4 -I../sysdeps/generic/elf -I../sysdeps/generic  -nostdinc -isystem /opt/rt=
ldk-1.0/lib/gcc-lib/ppc-linux/2.95.2/include -isystem /opt/rtldk-1.0/ppc-li=
nux/include/ -D_LIBC_REENTRANT -include ../include/libc-symbols.h     -o lc=
-collate.o
ppc-linux-gcc C-ctype.c -c -O -Wall -Winline -Wstrict-prototypes -Wwrite-st=
rings -g     -DLOCALE_PATH=3D'"/usr/local/share/locale:/usr/local/share/i18=
n"' -DLOCALEDIR=3D'"/usr/local/share/locale"' -DLOCALE_ALIAS_PATH=3D'"/usr/=
local/share/locale:/usr/local/share=
/i18n"' -DCHARMAP_PATH=3D'"/usr/local/share/i18n/charmaps"' -DREPERTOIREMAP=
_PATH=3D'"/usr/local/share/i18n/repertoiremaps"' -DLOCSRCDIR=3D'"/usr/local=
/share/i18n/locales"' -DHAVE_CONFIG_H -Iprograms -I../include -I.  -I.. -I.=
./libio  -I../sysdeps/powerpc/elf -=
I../crypt/sysdeps/unix -I../linuxthreads/sysdeps/unix/sysv/linux -I../linux=
threads/sysdeps/pthread -I../linuxthreads/sysdeps/unix/sysv -I../linuxthrea=
ds/sysdeps/unix -I../linuxthreads/sysdeps/powerpc -I../sysdeps/unix/sysv/li=
nux/powerpc -I../sysdeps/unix=
/sysv/linux -I../sysdeps/gnu -I../sysdeps/unix/common -I../sysdeps/unix/mma=
n -I../sysdeps/unix/inet -I../sysdeps/unix/sysv -I../sysdeps/unix -I../sysd=
eps/posix -I../sysdeps/powerpc -I../sysdeps/wordsize-32 -I../sysdeps/ieee75=
4 -I../sysdeps/libm-ieee754 -=
I../sysdeps/generic/elf -I../sysdeps/generic  -nostdinc -isystem /opt/rtldk=
-1.0/lib/gcc-lib/ppc-linux/2.95.2/include -isystem /opt/rtldk-1.0/ppc-linux=
/include/ -D_LIBC_REENTRANT -include ../include/libc-symbols.h     -o C-cty=
pe.o
C-ctype.c:379: parse error before `{'
C-ctype.c:382: parse error before `}'
make[1]: *** [C-ctype.o] Error 1
make[1]: Leaving directory `/opt/rtldk-1.0/ppc_root_src/glibc/glibc-2.1.3/l=
ocale'
make: *** [locale/subdir_lib] Error 2

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Re: Cross compiler
  2001-07-10  3:33 Cross compiler Richard Davies
@ 2001-07-10 11:44 ` Alexandre Oliva
  0 siblings, 0 replies; 13+ messages in thread
From: Alexandre Oliva @ 2001-07-10 11:44 UTC (permalink / raw)
  To: richy.boy; +Cc: gcc-help

On Jul 10, 2001, Richard Davies <richy.boy@clara.co.uk> wrote:

> I've been trying to build a cross compiler with gcc 3.0 targeting HP-UX 
> 10.20 from a host of HP-UX 11.00. 

I'm not sure this can be done.  You'd need a cross linker targeting
HP-UX 10.20, but, IIRC, GNU ld needs some SOM headers and libraries
that are only available natively.

-- 
Alexandre Oliva   Enjoy Guarana', see http://www.ic.unicamp.br/~oliva/
Red Hat GCC Developer                  aoliva@{cygnus.com, redhat.com}
CS PhD student at IC-Unicamp        oliva@{lsd.ic.unicamp.br, gnu.org}
Free Software Evangelist    *Please* write to mailing lists, not to me

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Cross compiler
@ 2001-07-10  3:33 Richard Davies
  2001-07-10 11:44 ` Alexandre Oliva
  0 siblings, 1 reply; 13+ messages in thread
From: Richard Davies @ 2001-07-10  3:33 UTC (permalink / raw)
  To: gcc-help

I've been trying to build a cross compiler with gcc 3.0 targeting HP-UX 
10.20 from a host of HP-UX 11.00. 

Here's the configure options:

../configure --prefix=/home/users/daviesr/10.20 --enable-shared=libstdc+
+ --with-gnu-as --with-gnu-ld --enable-threads=dce --enable-languages=c+
+ --enable-version-specific-runtime-libs --target=hppa1.1-hp-hpux10.20 -
-with-headers=/home/users/daviesr/gcc-3.0/objdir/include

I will post the configure file if needed.

It seems to chug along nicely for a while, then breaks here:

Testing libgcc1.  Ignore linker warning messages.
/home/users/daviesr/gcc-3.0/objdir/gcc/xgcc -B/home/users/daviesr/gcc-3.
0/objdir/gcc/ -B/home/users/daviesr/10.20/hppa1.1-hp-hpux10.20/bin/ -B/
home/users/daviesr/10.20/hppa1.1-hp-hpux10.20/lib/ -isystem /home/users/
daviesr/10.20/hppa1.1-hp-hpux10.20/include -DCROSS_COMPILE -DIN_GCC    -
W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -
isystem ./include  libgcc1-test.o -o libgcc1-test \
-nostartfiles -nostdlib `/home/users/daviesr/gcc-3.0/objdir/gcc/xgcc -B/
home/users/daviesr/gcc-3.0/objdir/gcc/ -B/home/users/daviesr/10.20/
hppa1.1-hp-hpux10.20/bin/ -B/home/users/daviesr/10.20/hppa1.1-hp-hpux10.
20/lib/ -isystem /home/users/daviesr/10.20/hppa1.1-hp-hpux10.20/include 
--print-libgcc-file-name`
collect2: cannot find `ld'

What have I overlooked/failed to realise/going to say doh 20 times ?

-- 
-- 
RichyBoy

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Cross compiler
  2000-01-03  5:44 David Toba
@ 2000-04-01  0:00 ` David Toba
  0 siblings, 0 replies; 13+ messages in thread
From: David Toba @ 2000-04-01  0:00 UTC (permalink / raw)
  To: help-gcc

Happy new year,

Can I build a cross compiler for MIPS 
processor.

Thank you,
 

____________________________________________________________________
Get free email and a permanent address at http://www.netaddress.com/?N=1

^ permalink raw reply	[flat|nested] 13+ messages in thread

* Cross compiler
@ 2000-01-03  5:44 David Toba
  2000-04-01  0:00 ` David Toba
  0 siblings, 1 reply; 13+ messages in thread
From: David Toba @ 2000-01-03  5:44 UTC (permalink / raw)
  To: help-gcc

Happy new year,

Can I build a cross compiler for MIPS 
processor.

Thank you,
 

____________________________________________________________________
Get free email and a permanent address at http://www.netaddress.com/?N=1

^ permalink raw reply	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2002-09-10  9:28 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2000-01-03  5:44 Cross compiler David Toba
2000-04-01  0:00 ` David Toba
  -- strict thread matches above, loose matches on Subject: below --
2002-09-10  2:28 cross compiler Qiang YiLiang
2002-05-06 11:10 Wimberly Eddie Contr WRALC/LYSFR
2002-05-06 22:10 ` Frank Schaefer
     [not found] <616BE6A276E3714788D2AC35C40CD18D2C4E1C@whale.softwire.co.uk>
2002-01-07 10:07 ` Cross Compiler Rupert Wood
2002-01-07  9:24 Antonio Catani
2001-07-27 12:16 cross compiler Der Herr Hofrat
2001-07-28 20:25 ` Alexandre Oliva
2001-07-10  3:33 Cross compiler Richard Davies
2001-07-10 11:44 ` Alexandre Oliva
2000-01-03  5:44 David Toba
2000-04-01  0:00 ` David Toba

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).