How to install Checker ?

1) Build it with make.
   If you only want the library, try 'make libchecker.o'
   You must get a file, libchecker.o
2) become root (su)
3) save your old as (mv /usr/bin/as /usr/bin/as.old)
   and save your old ld (mv /usr/bin/ld /usr/bin/ld.old)
4) install the new as (cp bin/as /usr/bin/as)
   and the new ld (cp bin/ld /usr/bin/ld)
5) install the c-library:
	cp bin/libc.chkra /usr/lib/
	cp bin/libm.chkra /usr/lib/
	cp bin/libgcc.chkra /usr/lib/
	cp bin/chkrcrt0.o /usr/lib/
	cp libchecker.o /usr/lib/
6) install specs:
	cp patches/specs /usr/lib/gcc-lib/i486/2.4.5/
7) use it
 to compile *.c with checker:
 gcc -c -checker *.c $(CFLAGS)
 gcc -o my_prg -checker *.o /usr/lib/libchecker.o


