Installation Notes for Glibc-2

Currently, RH5 have some problem to compile xsplay and splay.

It's a reasone that there is a bubble among glibc, libg++, pthread(in glibc)

Bubble glibc and pthread are removed by updating glibc rpm package.

But libg++ have had problem.

Therefore, to make xsplay and splay, you must exclude libstdc++ and libg++.

How to do?

by seeing process of making splay and xsplay.

g++ ......... -lpthread -lm ....

compile by g++ ...... -lpthread -lm ..... -v   BY HAND!!
    -v is important!!!
then you can see like below
 ld ........ -lstdc++ -lg++ ....

exclude -lstdc++ -lg++.
 ld .......    .......
Now xsplay and splay is made.

REASON:
  xsplay and splay is built by C++ language.
  But they doesn't use libg++ libstdc++.
  Just uses C++ language features not uses C++ library.
  If you upgrade libg++ to higher, you don't need to do this.

