I tried to install Io using the documented Linux instructions, but the resulting installation seems to only include the raw io and io_static binaries, some required libraries, and the include files. Anything in libs/, for example, is not included.
Should it be?
Also, and perhaps related, when running io ../libs/iovm/tests/correctness/run.io per the readme, it fails 7 tests because they cannot locate the io_static binary.
Steps I've taken to reproduce the issue:
git clone --recursive https://github.com/IoLanguage/io.git
cd io
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX=/home/kc5tja/opt/io ..
make
make install
export PATH=$PATH:/home/kc5tja/opt/io/bin
io ../libs/iovm/tests/correctness/run.io
I tried to install Io using the documented Linux instructions, but the resulting installation seems to only include the raw io and io_static binaries, some required libraries, and the include files. Anything in libs/, for example, is not included.
Should it be?
Also, and perhaps related, when running
io ../libs/iovm/tests/correctness/run.io
per the readme, it fails 7 tests because they cannot locate the io_static binary.Steps I've taken to reproduce the issue:
Is there an updated installation reference?