Tutorials/Compiling
Ah, so you've downloaded a search software but don't know what to do with that jumble of code. For this example, we will use gfind
Getting Cygwin for Windows Users
- Skip this section if you're using a Unix-compatible system.
Before you dive into compiling and you don't have a Unix-ish command line, you'll want to download Cygwin, the 64 bit one, click that link and then open the installer. While in the setup for packages, make sure to select the gcc-g++ and make and include their dependencies when asked.
Next you want to make a folder for your stuff. For this, make a folder in your C:\cygwin64\home\YourUsername folder (Where YourUsername is whatever username you use on your PC), let's call it C, and make a folder for the program in the C folder called gfind. Now put your gfind.c file there. Now moving on!
Compiling the Code
Now we can actually compile. In the terminal, type in the following:
cd /C/gfind
You should now see a yellow little thing that says "~/gfind", this means you are in the folder. Now, to compile, type:
gcc -O3 -o gfind gfind.c
It will pause for a while, there might be some warnings, but don't worry. After the command line comes back... done! You've compiled gfind. To use it, do
./gfind
You can do this for any other C program, just replace gfind with the program (e.g. zfind). Some programs have different commands for compilation, those commands are usually available in the README.
Examples you can try
- gfind.c
- ntzfind
- gencols.c
- afind (Note: This is C++, compile command in the file)
- ofind
- torus
- zfind (Note: This is the zfind thread)