Add a testcase for PR ld/22751
[deliverable/binutils-gdb.git] / binutils / README-how-to-make-a-release
... / ...
CommitLineData
1 README for MAKING BINUTILS RELEASES
2
3This is a collection of notes on how to perform a binutils release. A
4lot of this information can also be found in the maintain.texi file in
5the gnulib project:
6
7 https://www.gnu.org/software/gnulib/
8
9It is useful to have a cloned copy of the sources of this project as
10it also contains an upload script used to install tarballs on the GNU
11FTP server.
12
13Make sure that you have upload authority on sourceware and fencepost.
14Beware - this is an involved process and can take weeks to complete.
15See the maintain.texi file for details on how to obtain these
16permissions.
17
18-------------------------------------------------
19How to perform a release.
20-------------------------------------------------
21
22 1. Send an email out warning contributors about the forthcoming
23 branch. Set a date for the branch (weekends are better because
24 they are less busy).
25
26 2. When the branch date is near: Update the libiberty and config
27 directories and the top level configure files.
28
29 3. When branch day arrives add markers for the upcoming release to
30 gas, ld, gold and binutils NEWS files.
31 [If using the make-prerelease.sh script, check that
32 common.sh has the right values].
33 [make-prelease.sh command i]
34 [make-prelease.sh command C]
35 Likewise for all of the ChangeLog files.
36 Add a note of the name of the new branch to binutils/BRANCHES.
37 Commit these changes.
38 [make-prerelease.sh command C]
39
40 4. Create the release branch using:
41
42 git tag -a binutils-2_30-branch [e.g. for the 2.30 branch...]
43 git push --tags origin binutils-2_30-branch
44
45 5. Update "BINUTILS_BRANCH" in gdbadmin's crontab:
46
47 Log in as gdbadmin on sourceware.org, and then:
48
49 $ cd crontab
50 $ vi crontab
51 [change BINUTILS_BRANCH]
52 $ cvs ci crontab
53 $ crontab crontab
54
55 If you do not have access to this account, please feel free to
56 ask Joel Brobecker <brobecker AT adacore DOT com>.
57
58 6. Update bfd/configure and bfd/configure.ac on HEAD to indicate
59 snapshot of the following release.
60 [make-prerelease.sh command hv + C]
61
62 7. Rename the current HEAD version entry in Bugzilla, and create a
63 new one. E.g. rename "2.30 (HEAD)" to 2.30, and create "2.31
64 (HEAD)":
65
66 https://sourceware.org/bugzilla/editversions.cgi?product=binutils
67
68 8. Update the release number in bfd/version.m4 for the mainline and
69 the branch. The mainline should have the minor number
70 incremented, but the branch only needs the point value set to 90
71 as the release has not actually happened yet.
72
73 Regenerate various files on both branch and HEAD by configuring
74 with --enable-maintainer-mode. NB/ Remember to build gold and
75 gprof. Commit the changes. Make sure that this includes the
76 .pot files as well as the configure and makefiles.
77
78 9. Create an initial prerelease:
79
80 a. Change the version on the branch (bfd/version.m4), regenerate
81 the files, and check this in.
82
83 b. Create a source tarball of the branch sources:
84
85 ./src-release -x binutils
86
87 c. Build a test target using this tarball.
88
89 d. Upload the prerelease snapshot to the FTP:
90
91 scp ../binutils-$version.tar.xz sourceware.org:~ftp/pub/binutils/snapshots
92 ssh sourceware.org md5sum ~ftp/pub/binutils/snapshots/binutils-$version.tar.xz
93
94 10. Send it to the Translation Project:
95
96 http://translationproject.org/html/maintainers.html
97
98 Sending mail for one of the POT files is sufficient.
99
100 11. Announce the availability of the snapshot and the branch on the
101 binutils mailing list. Set a date for when the release will
102 actually happen. Something like:
103 ------------------------------------------------------------------------
104 Hi Everyone,
105
106 The 2.XX branch has now been created:
107
108 git clone git://sourceware.org/git/binutils-gdb.git -b binutils-2_XX-branch 2.XX
109
110 A snapshot of the sources is also available here:
111
112 ftp://sourceware.org/pub/binutils/snapshots/binutils-2.XX.0.tar.xz
113
114 Please could all patches for the branch be run by me.
115 The rules for the branch are:
116
117 * No new features.
118 * Target specific bug fixes are OK.
119 * Generic bug fixes are OK if they are important and widely tested.
120 * Documentation updates/fixes are OK.
121 * Translation updates are OK.
122 * Fixes for testsuite failures are OK.
123
124 Ideally I would like to make the release happen in two weeks time,
125 i.e. Saturday 27th Jan. Which I hope will be enough time for everyone
126 to get their final fixes in.
127 ------------------------------------------------------------------------
128
129 12. Build various different toolchains, test them and nag
130 maintainers to fix any testsuite failures for their
131 architectures...
132
133
134When the time comes to actually make the release....
135
136
137 20. Make sure that the branch sources still build, test and install
138 correctly.
139
140 21. Update the release number in bfd/version.m4 on the release
141 branch to a whole new minor version number, without a point
142 value. Eg "2.29.90" becomes "2.30". Change bfd/development.sh
143 to set the value to "false". Regenerate the configure and
144 makefiles. Add changelog entries for the updates and add a
145 "this-is-the-2.XX-release" commit and commit. Make sure to
146 include the .gmo files.
147
148 22. Check that your file creation mask will create the
149 correct file permissions. Eg:
150
151 umask 022
152
153 23. Create the release tarballs:
154
155 ./src-release -b -g -l -x binutils
156
157 24. Check that the files in the tarballs have the correct
158 permissions. FIXME: The tarballs will contain spurious
159 autom4te.cache directories which could be removed to reduce
160 their size.
161
162 25. Sanity check the release on x86_64-pc-linux-gnu by building and
163 running the testsuite. Make the source directory read-only
164 before building. Also test "make install". If necessary fix
165 any problems.
166
167 26. Tag the branch with the new release number:
168
169 git tag -a binutils-2_XX
170 [optional: add "-u XXXXX" to sign with a gpg key]
171 git push origin binutils-2_XX
172
173 27. Clean up the source tree. (Use "git status" to find new
174 files, and remove them).
175
176 28. Edit bfd/development.sh on the branch and set
177 "development=true". Also bump the version by adding a trailing
178 .0, so that the date suffix keeps the version lower than the
179 trunk version. Regenerate files. Commit these changes.
180
181 29. Upload the tarballs to ftp.gnu.org.
182
183 gnupload --to ftp.gnu.org:binutils binutils-X.XX.X.tar.*
184
185 The gnupload script is in the gnulib/build-aux directory.
186
187 30. Upload the tarballs to sourceware.org:
188
189 sftp sourceware.org
190 cd /sourceware/ftp/pub/binutils/releases
191 put binutils-X.XX.tar.*
192 chmod 644 binutils-X.XX.tar.*
193 quit
194
195 FIXME: Should the signatures (created by the gnupload script in
196 step 29) be uploaded as well ?
197
198 31. Update web pages. For sourceware.org:
199
200 Create a new documentation folder on the sourceware.org web
201 pages as /sourceware/www/sourceware/htdocs/binutils/docs-X.XX.
202 Make the html documentation locally with the "make html" command
203 and then upload and rename the directories as needed. Create an
204 index.html file and then edit the docs link to point to the new
205 docs-X.XX directory.
206
207 Update the sourceware.org site to point to the new documentation
208 and mention the new version.
209
210 For the www.gnu.org site you have to email webmasters@gnu.org
211 and ask them to make the change(s).
212
213 32. Send emails to binutils@sourceware.org, info-gnu@gnu.org and
214 David Edelsohn <dje.gcc@gmail.com> announcing the new release.
215 Sign the email and include the checksum.
216 (The email to Davis is so that he can update the GNU Toolchain
217 social media). Something like this:
218 ------------------------------------------------------------------------
219 Hi Everyone,
220
221 We are pleased to announce that version 2.XX of the Binutils project
222 sources have been released and are now available for download at:
223
224 https://ftp.gnu.org/gnu/binutils
225 https://sourceware.org/pub/binutils/releases/
226
227 checksums: xxxx
228
229 This release contains numerous bug fixes, and also the
230 following new features:
231
232 <extract info from the NEWS files>
233
234 Our thanks go out to all of the binutils contributors, past and
235 present, for helping to make this release possible.
236
237 --------------------------------------------------------------------------
238
239-------------------------------------------------
240How to perform a point release.
241-------------------------------------------------
242
243A point release is easier than a normal release since a lot of the
244work has already been done. The branch has been created, the
245translations updated and the documentation uploaded. So the procedure
246looks like this:
247
248 0. Decide that a point release is necessary.
249
250 Usually this only happens when a sufficient number of serious
251 bugs have been found and fixed since the previous release, and a
252 new official release is not imminent.
253
254 1. Tell the community that a point release is happening. Ask
255 maintainers to ensure that their ports are up to date on the
256 release branch. Ask the community if there are any bug fixes
257 which are missing from the branch. Allow some time for the
258 responses to this step.
259
260 2. Make sure that the branch sources build, test and install
261 correctly.
262
263 2.5 Prepare a list of the bugs which have been fixed. This
264 will be needed for step 8.
265
266 3. In the branch sources:
267
268 a. Update the minor release number in bfd/version.m4.
269 b. Edit bfd/development.sh and set "development=false".
270 c. Regenerate the configure files.
271 d. Commit the updates along with a "this-is-the-2.XX.X-release"
272 note in all of the changelogs.
273 e. Tag the branch with the new release number:
274
275 git tag -a binutils-2_XX_X
276 [optional: add "-u XXXXX" to sign with a gpg key]
277 git push origin binutils-2_XX_X
278
279 f. Check that your file creation mask will create the
280 correct file permissions. Eg:
281
282 umask 022
283
284 g. Create the release tarballs:
285 ./src-release -b -g -l -x binutils
286
287 h. Check that the files in the tarballs have the correct
288 permissions.
289
290 i. Edit bfd/development.sh and set "development=true".
291 j. Commit this change into the git repository.
292 k. Clean up the source tree. (Use "git status" to find new
293 files, and remove them).
294
295 FIXME: The tarballs will contain spurious autom4te.cache
296 directories which could be removed to reduce their size.
297
298 4. [If paranoid - upload the tarballs to one of the FTP servers and
299 ask people to test it before going on to step 5].
300
301 5. Upload the tarballs to ftp.gnu.org.
302
303 gnupload --to ftp.gnu.org:binutils binutils-X.XX.X.tar.*
304
305 The gnupload script is in the gnulib/build-aux directory.
306
307 6. Upload the tarballs to sourceware.org:
308
309 sftp sourceware.org
310 cd /ftp/pub/binutils/releases
311 put binutils-X.XX.X.tar.*
312 chmod 644 binutils-X.XX.X.tar.*
313 quit
314
315 FIXME: Should the signatures (created by the gnupload script in
316 step 5) be uploaded as well ?
317
318 7. Update web pages. For sourceware.org:
319
320 * Log on to sourceware.org
321 * Go /www/htdocs/binutils
322 * Edit index.html
323
324 For the www.gnu.org site you have to email webmasters@gnu.org
325 and ask them to make the change(s).
326
327 8. Send an emails to the binutils list, info-gnu@gnu.org and
328 David Edelsohn <dje.gcc@gmail.com> announcing the new release.
329 (The email to Davis is so that he can update the GNU Toolchain
330 social media). Something like this:
331------------------------------------------------------------------------
332Hi Everyone,
333
334 We are pleased to announce that version 2.XX.X of the Binutils project
335 sources have been released and are now available for download at:
336
337 https://ftp.gnu.org/gnu/binutils
338 https://sourceware.org/pub/binutils/releases/
339
340 This is a point release over the previous 2.XX version, containing bug
341 fixes but no new features.
342
343 Our thanks go out to all of the binutils contributors, past and
344 present, for helping to make this release possible.
345
346 Here is a list of the bugs that have been fixed:
347 xx
348 xx
349 xx
350 xx
351--------------------------------------------------------------------------
352
353\f
354Copyright (C) 2017-2018 Free Software Foundation, Inc.
355
356Copying and distribution of this file, with or without modification,
357are permitted in any medium without royalty provided the copyright
358notice and this notice are preserved.
This page took 0.049333 seconds and 4 git commands to generate.