Created
June 20, 2019 18:47
-
-
Save mclements/706fcb68047f7f8c07014c70f9472521 to your computer and use it in GitHub Desktop.
Cim: download, configure, make, install and run an example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This was tested on Ubuntu 18.04.
Note that the command
autoreconf -i
was not mentioned in the INSTALL file.