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
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