== MIRO ==

The convenience scripts to get it running are fairly self-explanatory:

  ./runconf.sh - configures it to only compile support for C and C++
                 and does it without bootstrapping (for speed)

  ./runbuild.sh - builds it
  ./runmonobuild.sh - builds it with single-threaded make (better with errors)

  ./runinstall.sh - installs it in <topdir>/install/usr/local/

  ./runrootinstall.sh - installs it in /usr/local/

To build a program with MIRO bounds-checking, use the following flags:
COMPILE: -fbounds-checking
LINK: -lbounds

If you are doing this from the locally installed (./runinstall.sh) version:
COMPILE: -fbounds-checking -I<topdir>/install/usr/local/include
LINK: -L<topdir>/install/usr/local/lib -lbounds
EXECUTE: LD_LIBRARY_PATH=<topdir>/install/usr/local/lib
