DEV Community

Khalil
Khalil

Posted on • Updated on

All you need to know about C Static libraries

Introduction

Before starting to talk about the subject matter, let us take a brief look at the compilation phases of a C program.
There are basically four phases:

  1. Pre-processing
  2. Compilation
  3. Assembly
  4. Linking

In this article, we will focus on the static libraries and their role in the linking phase of a program. But, first of all, let us define a library.

What is a library and what is it good for?

A library is a collection of code routines (functions, classes, variables, and so on) that can be called upon when building our program, so instead of writing it ourselves, we can go and get it from something that has already been written and optimized. That is where the idea behind libraries comes from. We are reusing blocks of codes that have come from somewhere else.

Basically, we have two kinds of libraries:

  • static libraries
  • shared (or dynamic) libraries

The main reason for writing a library is to allow code reusability, thus save considerable development time.

What is a static library and how does it work?

A static library is a file containing a collection of object files (*.o) that are linked into the program during the linking phase of compilation and are not relevant during runtime.

Alt Text
As shown in the diagram above, when a program is compiled, the compiler generates an object file from a source file. After generating the object file, the compiler also invokes the Linker. The role of the linker, in this case, is to copy the code of the library to our object file.

Basically, static libraries are just a collection of object files that are merged by the linker with another object file to form a final executable.

Conventionally, they start with “lib” and end with “.a” or “.lib” (depending on your platform).

How to create static libraries?

To create a static library, we need to specify to the compiler, which is GCC in our case, that we want to compile all library codes (*.c) into object files (*.o) without linking. To do that we are going to use the command below.

$ gcc -c -Wall -Werror -Wextra *.c
Enter fullscreen mode Exit fullscreen mode

Flags description:
-c: Compile and assemble, but do not link.
-Wall, -Werro and -Wextra: These aren’t necessary but they are recommended to generate better code.

Note that the "*.c" matches all files in the current working directory with the ".c" extension.

For example, let us take two c files, add.c, and mul.c which make respectively the addition and the multiplication of two integers, and a header file that contains the prototypes of these functions. The picture below shows the output generated after using the command.

Alt Text

Once we have object file(s), we can now bundle all object files into one static library.
To create a static library or to add additional object files to an existing static library, we have to use the GNU ar (archiver) program. We can use a command like this:

$ ar -rc libname.a *.o
Enter fullscreen mode Exit fullscreen mode

This command creates a static library named "libname.a" and puts copies of the object files "add.o" and "mul.o" in it. The 'c' flag tells ar to create the library if it doesn't already exist. The 'r' flag tells it to insert object files or replace existing object files in the library, with the new object files.

After an archive is created or modified, there is a need to index it. This index is later used by the compiler to speed up symbol-lookup inside the library and to make sure that the order of the symbols in the library will not matter during compilation. There are two ways to create or update the index. The first one is, by using the command ranlib.

$ ranlib libname.a
Enter fullscreen mode Exit fullscreen mode

or by adding an extra flag (-s) to the ar command and it becomes like this:

$ ar -rcs libname.a *.o
Enter fullscreen mode Exit fullscreen mode

The picture below shows the execution of these commands on our example.

Alt Text

In order to list the names of the object files in our library, we can use the ar command with -t flag.

Alt Text

How to use them?

Now our static library "libname.a" is ready to be used. we can use it in a program. This is done by adding the library's name to the object file(s) given to the linker. First, let us create a C source file that uses the above created static library.
Alt Text

Now we can use the command below to create our final executable program:

$ gcc main.c -L. -lname -o main
Enter fullscreen mode Exit fullscreen mode

This will create a program using the object file "main.o", and any symbols it requires from the "name" static library.

Flags description:
-L : Specifies the path to the given libraries ('.' referring to the current directory)
-l : Specifies the library name without the "lib" prefix and the ".a" suffix, because the linker attaches these parts back to the name of the library to create a name of a file to look for.

All we have to do now is to run our program.

Alt Text
That was my summary of static libraries!
Hopefully, you found this useful. In the next blog post, we will cover dynamic libraries and the difference between them and static libraries.

Happy learning!

Top comments (34)

Collapse
 
leemarvin94 profile image
ONDO ABAGHE Rooly Marvin

The content is so clear and concise, thanks a lot

Collapse
 
yacoubo00975961 profile image
yacoubou

Good content thank

Collapse
 
rnrnshn profile image
Olimpio

Thanks for this amazing article

Collapse
 
canhamzacode profile image
Hamzat Abdul-muizz

Thanks so much well detailed explanation

Collapse
 
peacecole profile image
Otieno Onyango

Could you please say something about the content of the add.c and the mul.c, for a beginner like me, that is. Otherwise, great content here

Collapse
 
iamkhalil42 profile image
Khalil

As mentioned above, add.c and mul.c are files that contain a single function that makes the addition or the multiplication of two integer values. You can think of them as follow:

/* add.c */
int add(int a, int b) { return a + b; }

/* mul.c */
int mul(int a, int b) { return a * b; }

I hope this answers your question :)

Collapse
 
shamsutukor profile image
Shamsuddeen Abdullahi

I am a beginner too. But I found it the hard way, weldone!!!

Collapse
 
dohoudaniel profile image
Dohou Daniel

I read this in 2022, and came back for it in 2023.
That is to make you understand that this was really helpful, and also a well-detailed explanation.
Thank you 💚.

Collapse
 
geff115 profile image
Gabriel Effangha

I understand static libraries now, thanks to you.

Collapse
 
endygrit profile image
Endurance Edward

Succinct 👌

Collapse
 
davidngozichukwuka profile image
David-ngozichukwuka

This article covers every important detail on static libraries and simplifies these concepts. Impressive material

Collapse
 
musiliyrn profile image
Code warrior

Thank you for this amazing post.May you please do one for Dynamic libraires?

Collapse
 
noble_93 profile image
Itumeleng-Malgas

Awesome stuff

Collapse
 
bereketmelese profile image
Bereket-Melese

Concise and to the Point. Keep up the good work.

Collapse
 
hossam43 profile image
Hossam Ayman

Thank you. That was an amazing explanation.

Collapse
 
gibexz profile image
Esogibe Chidubem Andrew

Great explanation. Just cleared my little confusion with ease. Thanks Dev.

Collapse
 
demmythetechie profile image
Demmythetechie

Nice article bro, shows you are very good at what you do.
Thanks for the help, I understood in a Jiffy.