Answers for "to create a static library"

0

to create a static library

$ ranlib libname.a
Posted by: Guest on September-24-2021
0

to create a static library

$ ar -rcs libname.a *.o
Posted by: Guest on September-24-2021
0

to create a static library

$ ar -rc libname.a *.o
Posted by: Guest on September-24-2021
0

to create a static library

$ gcc main.c -L. -lname -o main
Posted by: Guest on September-24-2021

Code answers related to "to create a static library"

Python Answers by Framework

Browse Popular Code Answers by Language