Skip to content

Instantly share code, notes, and snippets.

@mclements
Created June 20, 2019 18:47
Show Gist options
  • Save mclements/706fcb68047f7f8c07014c70f9472521 to your computer and use it in GitHub Desktop.
Save mclements/706fcb68047f7f8c07014c70f9472521 to your computer and use it in GitHub Desktop.
Cim: download, configure, make, install and run an example
git clone git://git.savannah.gnu.org/cim.git
cd cim
autoreconf -i
./configure
make
make check
sudo make install
cat > helloWorld.sim <<EOF
begin
integer Int1;
Int1:=42;
OutInt(Int1,4);
OutImage
end
EOF
cim helloWorld
# noisy
./helloWorld
@mclements
Copy link
Author

This was tested on Ubuntu 18.04.

Note that the command autoreconf -iwas not mentioned in the INSTALL file.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment