
          A quick port ;) of glibc-1.09 to transputers.
                        (03-Sep-1996)

1. Untar and patch the sources:

	tar xzf glibc-1.09.tar.gz
        patch -p0 < glibc-1.09.diff

2. Set enviroment variables CC and BUILD_CC to "t800-gcc" and "gcc"
respectively (assuming gcc is the default C compiler on your system).
Both CC and BUILD_CC must be defined and different for
cross-compilation.  Run configure:

	configure transputer-none-none

3. Run make.

There are still some bugs in t800-gcc. Some of them bite in optimizing
compilations, and some in non-optimizing ones. Every time compilation
stops with the message "program cc1 got fatal signal 6", turn on/off
code optimization.  A stupid sequence that works (in csh):

        env CFLAGS=-O2 make
        make
        env CFLAGS=-O2 make

4. Install the library:

	make install


Warning: Everything is completely untested.

03-Sep-1996, Roman Pozlevich <roma@botik.ru>
