IoLanguage / io

Io programming language. Inspired by Self, Smalltalk and LISP.
http://iolanguage.org
Other
2.66k stars 298 forks source link

Linux install instructions seems incomplete? #425

Closed sam-falvo closed 5 years ago

sam-falvo commented 5 years ago

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

Is there an updated installation reference?

sam-falvo commented 5 years ago

OK, this is weird. This morning, it worked fine. I must have botched something up last night. Please disregard. Sorry for the confusion.