Hi cobaka,
Lint
I am not sure why your Lint line is greyed out. The Lint entry isn't necessary. It is used for program debugging. Lint is not being used...yet. Lint is a tool that used to be more popular. To translate Geany's Lint line -- we do not want to actually use Lint, but some tool to do "Code Checking". So the label should not be "Lint", but be "Code Check". In my case, the "Code Checking" command is the cppcheck command. I won't go into details of lint or cppcheck at the moment. Just know that gcc -Wall should be a sufficient alternative for common code checking. The -j option is for debugging, not code checking.
Making Progress
It is great that you were able to make your .o object file via Geany. We are making progress. The reason why you cannot build is because your "Build" entry doesn't have a command to run. So right now, clicking "Build" button does nothing. So just put in the following (as what was in my screenshot earlier):
Afterwards, I think you should be fine making your executable from Geany.
Object Files
.o object files are like library files (e.g. .dll files in Windows and .so files in Linux). You can't directly run library files. But if you have an executable, it can link library files and use their functions, etc. For example:
Code: Select all
]ls -lh /usr/bin/viewnior
-rwxr-xr-x 1 root root 683K Aug 14 20:47 /usr/bin/viewnior
ldd /usr/bin/viewnior
linux-vdso.so.1 (0x00007ffeca1d6000)
/usr/lib/x86_64-linux-gnu/libgtk3-nocsd.so.0 (0x00007f1519083000)
libgtk-x11-2.0.so.0 => /usr/lib/x86_64-linux-gnu/libgtk-x11-2.0.so.0 (0x00007f1518c1f000)
libgdk-x11-2.0.so.0 => /usr/lib/x86_64-linux-gnu/libgdk-x11-2.0.so.0 (0x00007f1518b64000)
libgdk_pixbuf-2.0.so.0 => /usr/lib/libgdk_pixbuf-2.0.so.0 (0x00007f1518b3c000)
libgio-2.0.so.0 => /usr/lib/libgio-2.0.so.0 (0x00007f151895b000)
libgobject-2.0.so.0 => /usr/lib/libgobject-2.0.so.0 (0x00007f15188fb000)
libglib-2.0.so.0 => /usr/lib/libglib-2.0.so.0 (0x00007f15187d0000)
libexiv2.so.14 => /usr/lib/libexiv2.so.14 (0x00007f1518328000)
libstdc++.so.6 => /usr/lib/x86_64-linux-gnu/libstdc++.so.6 (0x00007f1518147000)
libm.so.6 => /lib/x86_64-linux-gnu/libm.so.6 (0x00007f1517ff8000)
libgcc_s.so.1 => /lib/libgcc_s.so.1 (0x00007f1517fdd000)
libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007f1517deb000)
...
As can be seen, the "viewnior" is a small, 683kB application. It can display images in different formats. By using "ldd" we see that viewnior has many libraries linked to it. These libraries handle processing, JPG/GIF/BMP files, displaying user interfaces, etc. By linking in libraries a developer didn't have to write code for image handling, user interfaces, etc.
Viewnior uses .so library files, which stands for "shared object" files. When you compiled your program to a .o file, it is in a similar format that can be linkable to your real executable. As you learn C programming, a topic that you will be covering has to do with a linker to integrate your .o files.
Whew, that was a lot of typing. Hopefully this helps clear things up a little. Please note that the wording I used hopefully makes it less confusing then the actual textbook answer.