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

gollark: AutoBotRobot is inevitable, yes.
gollark: The IRC bridge is bridged to APIONET is bridged to osmarksminetest.
gollark: I should make it relay messages from the IRC bridge!
gollark: * TEST instance, with its old config.
gollark: The issue was due to the old instance being up.
This article is issued from Conwaylife. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.