I have a C project which I would like to build as a static library and not as a executable.
My high level environment is:
- IDE: Code::Blocks 16.01
- Operating System: Windows 7
- Compiler: MinGW (GCC port for Windows)
As a build target option, I select static library (instead of executable) and select build.
Seems to work fine. Problem is, the output is a .a file (which I understand is the Unix/Linux format) and not the windows format of .lib.
Any hints on where I can look to solve this?