]> git.sur5r.net Git - cc65/blob - doc/ar65.sgml
2e01025cac05d985ea9d16c248bbe0f0137d3be2
[cc65] / doc / ar65.sgml
1 <!doctype linuxdoc system>
2
3 <article>
4
5 <title>ar65 Users Guide
6 <author><url url="mailto:uz@cc65.org" name="Ullrich von Bassewitz">
7 <date>2017-05-28
8
9 <abstract>
10 ar65 is an archiver for object files generated by ca65. It allows to create
11 archives, add or remove modules from archives, and to extract modules from
12 existing archives.
13 </abstract>
14
15 <!-- Table of contents -->
16 <toc>
17
18 <!-- Begin the document -->
19
20 <sect>Overview<p>
21
22
23 ar65 is a replacement for the libr65 archiver that was part of the cc65 C
24 compiler suite developed by John R. Dunning. libr65 had some problems and
25 the copyright does not permit some things which I wanted to be possible,
26 so I decided to write a completely new assembler/linker/archiver suite
27 for the cc65 compiler. ar65 is part of this suite.
28
29 <sect>Usage<p>
30
31
32 The archiver is called as follows:
33
34 <tscreen><verb>
35         Usage: ar65 <operation ...> lib file|module ...
36         Operations are some of:
37                 r       Add modules
38                 d       Delete modules
39                 t       List library table
40                 v       Increase verbosity (put before other operation)
41                 x       Extract modules
42                 V       Print the archiver version
43 </verb></tscreen>
44
45 You may add modules to a library using the `r' command (`a' is deprecated). If the library
46 does not exist, it is created (and a warning message is printed which you
47 may ignore if creation of the library was your intention). You may
48 specify any number of modules on the command line following the library.
49
50 If a module with the same name exists in the library, it is replaced by
51 the new one. The archiver prints a warning, if the module in the library
52 has a newer timestamp than the one to add.
53
54 Here's an example:
55
56 <tscreen><verb>
57         ar65 r mysubs.lib sub1.o sub2.o
58 </verb></tscreen>
59
60 This will add two modules to the library `mysubs.lib' creating the
61 library if necessary. If the library contains modules named sub1.o or
62 sub2.o, they are replaced by the new ones.
63
64 Modules names in the library are stored without the path, so, using
65
66 <tscreen><verb>
67         ar65 v v r mysubs.lib ofiles/sub1.o ofiles/sub2.o
68 </verb></tscreen>
69
70 will verbose add two modules named `sub1.o' and `sub2.o' to the library.
71
72 Deleting modules from a library is done with the `d' command. You may not
73 give a path when naming the modules.
74
75 Example:
76
77 <tscreen><verb>
78         ar65 d mysubs.lib sub1.o
79 </verb></tscreen>
80
81 This will delete the module named `sub1.o' from the library, printing an
82 error if the library does not contain that module.
83
84
85 The `t' command prints a table of all modules in the library (`l' is deprecated).
86 Any module names on the command line are ignored.
87
88 Example:
89
90 <tscreen><verb>
91         ar65 tv mysubs.lib
92 </verb></tscreen>
93
94
95 Using the `x' command, you may extract modules from the library. The
96 modules named on the command line are extracted from the library and put
97 into the current directory.
98
99 Note: Because of the indexing done by the archiver, the modules may have
100 a changed binary layout, that is, a binary compare with the old module
101 (before importing it into the library) may yield differences. The
102 extracted modules are accepted by the linker and archiver, however, so
103 this is not a problem.
104
105 Example for extracting a module from the library:
106
107 <tscreen><verb>
108         ar65 x mysubs.lib sub1.o
109 </verb></tscreen>
110
111
112 The `V' command prints the version number of the assembler. If you send
113 any suggestions or bugfixes, please include your version number.
114
115 In addition to these operations, the archiver will check for, and warn
116 about duplicate external symbols in the library, every time when an
117 operation does update the library. This is only a warning, the linker
118 will ignore one of the duplicate symbols (which one is unspecified).
119
120
121 <sect>Copyright<p>
122
123 ar65 (and all cc65 binutils) are (C) Copyright 1998-2000 Ullrich von
124 Bassewitz. For usage of the binaries and/or sources the following conditions
125 do apply:
126
127 This software is provided 'as-is', without any expressed or implied
128 warranty.  In no event will the authors be held liable for any damages
129 arising from the use of this software.
130
131 Permission is granted to anyone to use this software for any purpose,
132 including commercial applications, and to alter it and redistribute it
133 freely, subject to the following restrictions:
134
135 <enum>
136 <item>  The origin of this software must not be misrepresented; you must not
137         claim that you wrote the original software. If you use this software
138         in a product, an acknowledgment in the product documentation would be
139         appreciated but is not required.
140 <item>  Altered source versions must be plainly marked as such, and must not
141         be misrepresented as being the original software.
142 <item>  This notice may not be removed or altered from any source
143         distribution.
144 </enum>
145
146 </article>
147
148
149