goto-cc Examples: How to
extract model files
-
Prerequisite:
All the following examples assume that
you have correctly downloaded and installed
goto-cc.
- To install
goto-cc, go to the download page,
download the newest version and extract it, by calling, e.g.:
tar xfz goto-cc-2.5-linux.tgz
- Copy the resulting
goto-cc binary to a directory
that is in your path, e.g.:
cp goto-cc ~/bin
- If you need linking support (i.e.,
goto-ld),
create a symbolic link the binary:
ln ~/bin/goto-cc ~/bin/goto-ld -s
-
Now you're all set to extract model files.
| Application | Lines of
code* | Description |
| sendmail-8.13.8 |
129,864 |
A popular E-Mail server. |
| inn-2.4.3 |
125,891 |
The internet news daemon. |
| wu-ftpd-2.6.2 |
35,311 |
A popular FTP server. |
| libssh2-0.14 |
13,309 |
A library implementing the ssh2 protocol (for clients). |
| freecell-solver-2.8.12 |
20,085 |
A program that tries to solve instances of Freecell and similar Solitaire games. |
| nanosat-1.3 |
7,594 |
A SAT solver by A. Biere. |
| limmat-1.3 |
8,477 |
Another SAT solver by A. Biere. |
| bchunk-1.2.0 |
503 |
BinChunker - converts cd images from .bin/.cue to .iso format. |
| jhead-2.6 |
4,382 |
An EXIF Jpeg header and thumbnail manipulation program. |
* Measured by running find . -name "*.[ch]" | xargs wc -l
in the project directory
|