WAM Coin v0.1.8 -- what this needs to run
===========================================

Measured from this exact binary, not assumed:

    glibc     2.34 or newer
    libstdc++  GLIBCXX_3.4.30 or newer  (GCC 12 and up)

That is Ubuntu 22.04 LTS or newer, Debian 12 or newer, and anything of a
similar age. If your system is older than that, build from source -- no flag
on this binary will make it start.

If the node exits with

    error while loading shared libraries: ...

install the shared libraries it asks for:

    sudo apt-get install -y libevent-2.1-7t64 libsqlite3-0

On Ubuntu 22.04 the libevent package is named libevent-2.1-7 instead.

Nothing else is required. This build has ZMQ disabled, which is why it does
not ask for libzmq, libsodium, libpgm, libnorm or Kerberos -- none of which
this project uses.

Verify what your copy actually wants:

    ldd bin/wamd | grep 'not found'

Empty output means the libraries are present. To check the versions too:

    ldd bin/wamd >/dev/null && echo ok

Anything about GLIBCXX or GLIBC there means your system is older than this
build; use a newer one or build from source.
