C/C++ – GCC create a static library

By Rares Vernica

You can create a static library from object files using the following command:

ar rcs libfunc.a func1.o func2.o func3.o

To link the libary to your code you can use use:

g++ -o exe_file exe_file.o -L. -lfunc

Leave a Reply

You must be logged in to post a comment.