I don't really understand what ar utility does on Unix systems.
I know it can be somehow used for creating c libraries, but all that man page tells me is that it is used to make archives from files, which sounds similar to, for example, tar....
|
1
|
|
|
|
The primary purpose is to take individual object files ( Tar doesn't create files that linkers understand. |
|||
|
|
|
ar is specifically for archives (or libraries) of object code; tar is for archives of arbitrary files. Anybody's guess why GNU refers to these as 'archives', in other environments this utility is called the 'librarian', and the resulting files just libraries. |
||
|
|
|
|
|
||
|
|
|
|
You might want to run To quote:
|
|||
|
|
|
|
It takes code in the form of object files (.obj, .o, etc) and makes a static library (archive). The library can then be included when linking with ld to include the object code into your executable. Take a look at the example usage in the Wikipedia article. |
||
|
|
|
|
Exactly, ar is an archiver. It simply takes a set of object files (*.o) and put them in an archive that you call a static library. |
||||||||||
|
arcommand to make libraries for use by programmers when programming. It does not belong on SuperUser. – Jonathan Leffler Oct 11 at 18:15