Visium: fix bogus overflow check on 32-bit hosts
[deliverable/binutils-gdb.git] / binutils / README-how-to-make-a-release
1 README for MAKING BINUTILS RELEASES
2
3 This is a collection of notes on how to perform a binutils release. A
4 lot of this information can also be found in the maintain.texi file in
5 the gnulib project:
6
7 https://www.gnu.org/software/gnulib/
8
9 It is useful to have a cloned copy of the sources of this project as
10 it also contains an upload script used to install tarballs on the GNU
11 FTP server.
12
13 Make sure that you have upload authority on sourceware and fencepost.
14 Beware - this is an involved process and can take weeks to complete.
15 See the maintain.texi file for details on how to obtain these
16 permissions.
17
18 -------------------------------------------------
19 How 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 the NEWS files in gas, ld, gold and binutils.
31
32 Likewise for the ChangeLog files in: bfd, binutils, config, cpu,
33 elfcpp, gas, gold, gprof, include, ld, opcodes and toplevel.
34
35 Add a note of the name of the new branch to binutils/BRANCHES.
36
37 Commit these changes.
38
39 4. Create the release branch using:
40
41 git branch binutils-2_33-branch
42 git push origin binutils-2_33-branch
43
44 If you get a message like:
45
46 remote: fatal: Invalid revision range 0000000000000000000000000000000000000000..f974f26cb16cc6fe3946f163c787a05e713fb77b
47
48 It appears that this can be ignored...
49
50 5. Make sure that the branch is there. IE check out the branch sources:
51
52 git clone ssh://sourceware.org/git/binutils-gdb.git -b binutils-2_33-branch 2.33
53
54 If you get a message about being in a "detached head" state, something
55 has gone wrong...
56
57 Keep the checked out sources - they are going to be needed in future
58 steps.
59
60 6. Update "BINUTILS_BRANCH" in gdbadmin's crontab:
61
62 Log in as gdbadmin on sourceware.org, and then:
63
64 $ cd crontab
65 $ vi crontab
66 [change BINUTILS_BRANCH]
67 $ cvs ci crontab
68 $ crontab crontab
69
70 If you do not have access to this account, please feel free to
71 ask Joel Brobecker <brobecker AT adacore DOT com>.
72
73 7. Rename the current HEAD version entry in Bugzilla, and create a
74 new one. E.g. rename "2.33 (HEAD)" to 2.33, and create "2.34
75 (HEAD)":
76
77 https://sourceware.org/bugzilla/editversions.cgi?product=binutils
78
79 8. Update bfd/version.m4 on HEAD to indicate that is now a snapshot
80 of the next release:
81
82 m4_define([BFD_VERSION], [2.33.51])
83
84 Update the release number in bfd/version.m4 for the branch.
85 The branch only needs the point value set to 90 as the release
86 has not actually happened yet.
87
88 m4_define([BFD_VERSION], [2.32.90])
89
90 Regenerate various files on both branch and HEAD by configuring
91 with "--enable-maintainer-mode --enable-gold" and then building
92 with "make all-binutils all-gas all-gold all-gprof all-ld"
93
94 Add ChangeLog entries for the updated files. Commit the changes.
95 Make sure that this includes the .pot files as well as the
96 configure and makefiles.
97
98 8. Create an initial prerelease:
99
100 a. Create a source tarball of the BRANCH sources:
101
102 cd <branch-sources>
103 ./src-release -x binutils
104
105 b. Build a test target using this tarball.
106
107 cp binutils-<version>.tar.xz /dev/shm
108 cd /dev/shm
109 tar xvf binutils-<version>.tar.xz
110 mkdir build
111 cd build
112 ../<version>/configure --quiet --enable-gold
113 make
114
115 If there are problems, fix them.
116
117 c. Upload the prerelease snapshot to the sourceware FTP site:
118
119 cd <branch-sources>
120 scp binutils-<version>.tar.xz sourceware.org:~ftp/pub/binutils/snapshots
121 ssh sourceware.org md5sum ~ftp/pub/binutils/snapshots/binutils-<version>.tar.xz
122
123 d. Clean up the source directory.
124
125 rm binutils-<version> binutils-<version>.tar binutils-<version>.tar.xz
126 rm gas/bfin-lex.c \
127 gas/bfin-parse.c \
128 gas/bfin-parse.h \
129 gas/itbl-lex.c \
130 gas/itbl-parse.c \
131 gas/itbl-parse.h \
132 gas/m68k-parse.c \
133 gas/rl78-parse.c \
134 gas/rl78-parse.h \
135 gas/rx-parse.c \
136 gas/rx-parse.h \
137 gold/yyscript.c \
138 gold/yyscript.h
139 rm -fr proto-toplev
140
141 9. Tell the Translation Project where to find the new tarball.
142 <coordinator@translationproject.org>
143 qv: http://translationproject.org/html/maintainers.html
144
145 ------------------------------------------------------------------------
146 Dear Translation Project
147
148 The 2.31 release branch has been created for the FSF binutils.
149
150 A snapshot of the branch sources can be found here:
151
152 https://sourceware.org/pub/binutils/snapshots/binutils-2.30.90.tar.xz
153
154 We hope to make the official release of the sources on the 8th July
155 although that could change if there are important bugs that need to
156 be fixed before the release.
157 ------------------------------------------------------------------------
158
159 10. Announce the availability of the snapshot and the branch on the
160 binutils mailing list. Set a date for when the release will
161 actually happen. Something like:
162
163 ------------------------------------------------------------------------
164 Hi Everyone,
165
166 The 2.XX branch has now been created:
167
168 git clone git://sourceware.org/git/binutils-gdb.git -b binutils-2_XX-branch 2.XX
169
170 A snapshot of the sources is also available here:
171
172 https://sourceware.org/pub/binutils/snapshots/binutils-2.XX.90.tar.xz
173
174 Please could all patches for the branch be run by me.
175 The rules for the branch are:
176
177 * No new features.
178 * Target specific bug fixes are OK.
179 * Generic bug fixes are OK if they are important and widely tested.
180 * Documentation updates/fixes are OK.
181 * Translation updates are OK.
182 * Fixes for testsuite failures are OK.
183
184 Ideally I would like to make the release happen in two weeks time,
185 i.e. Saturday 27th Jan. Which I hope will be enough time for everyone
186 to get their final fixes in.
187 ------------------------------------------------------------------------
188
189 11. Build various different toolchains, test them and nag
190 maintainers to fix any testsuite failures for their
191 architectures...
192
193
194 When the time comes to actually make the release....
195
196
197 20. Make sure that the branch sources still build, test and install
198 correctly. Make sure that the sources are clean, without any
199 patch files (.reg .orig *~) left over.
200
201 cd <branch>
202 cvsclean | xargs rm
203
204 21. Update the release number in bfd/version.m4 on the release
205 branch to a whole new minor version number, without a point
206 value. Eg "2.29.90" becomes "2.30". Change bfd/development.sh
207 to set all values to "false". Regenerate the configure and
208 makefiles. And *info* files. Add ChangeLog entries for the
209 updates and add a "this-is-the-2.XX-release" comment and
210 commit. Make sure to include the .gmo files.
211
212 22. Check that your file creation mask will create the
213 correct file permissions. Eg:
214
215 % umask
216 22
217
218 Remove any spurious autom4te.cache files left over from the
219 reconfiguring:
220
221 % find . -depth -name autom4te.cache -exec rm -r {} \;
222
223 23. Note - check to see if any new files have been added to the top
224 level of the source directory, but which are not in the
225 DEVO_SUPPORT variable in the src-release.sh script. If they are
226 needed then add them.
227
228 Create the release tarballs:
229
230 ./src-release.sh -b -g -l -x binutils
231
232 24. Check that the files in the tarballs have the correct
233 permissions.
234
235 25. Sanity check the release on x86_64-pc-linux-gnu by building and
236 running the testsuites (gas, gold, binutils and ld). Make the
237 source directory read-only before building. Also test
238 "make install". If necessary fix any problems.
239
240 26. Tag the branch with the new release number:
241
242 git tag -a binutils-2_XX
243 [optional: add "-u XXXXX" to sign with a gpg key]
244 git push origin binutils-2_XX
245
246 NB/ If you do sign the binaries make sure to use a key
247 that has been published with the FSF.
248
249 27. Upload the tarballs to ftp.gnu.org.
250
251 gnupload --to ftp.gnu.org:binutils binutils-X.XX.tar.*
252
253 The gnupload script is in the gnulib/build-aux directory.
254
255 Check for an email response from the upload. If necessary
256 fix any problems.
257
258 28. Upload the tarballs (and signatures) to sourceware.org:
259
260 sftp sourceware.org
261 cd /sourceware/ftp/pub/binutils/releases
262 put binutils-X.XX.tar.*
263 chmod 644 binutils-X.XX.tar.*
264 quit
265
266 FIXME: Should the signatures (created by the gnupload script in
267 step 29) be uploaded as well ?
268
269 29. Update web pages. For sourceware.org:
270
271 Create a new documentation folder on the sourceware.org web
272 pages as /sourceware/www/sourceware/htdocs/binutils/docs-X.XX.
273
274 sftp sourceware.org
275 cd /sourceware/www/sourceware/htdocs/binutils
276 mkdir docs-X.XX
277 cd docs-X.XX
278 mkdir as bfd binutils gprof ld
279 cd ../docs-X.(XX-1)
280 get index.html
281
282 Update the (local copy of the) index.html file to point to the
283 new documentation and mention the new version and then upload it.
284
285 cd ../docs-X.XX
286 put index.html
287
288 Make the html documentation locally with the "make html" command
289 and then upload and rename the directories as needed. (sftp
290 does not appear to support recursive uploads however, so the
291 directories will have to be made by hand).
292
293 cd as
294 lcd <build-dir>/gas/doc/as.html
295 put *
296 cd ../bfd
297 lcd ../../../bfd/doc/bfd.html
298 put *
299 cd ../binutils
300 lcd ../../../binutils/doc/binutils.html
301 put *
302 cd ../gprof
303 lcd ../../../gprof/gprof.html
304 put *
305 cd ../ld
306 lcd ../../ld/ld.html
307 put *
308
309 Edit the top level binutils index.html file to change the links
310 to the new documentation.
311
312 cd ../../..
313 get indexl.html
314 [edit]
315 put index.html
316 quit
317
318 Check that the new web page is correct.
319
320 For the www.gnu.org site you have to email webmasters@gnu.org
321 and ask them to make the change(s).
322
323 30. Send emails to binutils@sourceware.org, info-gnu@gnu.org and
324 David Edelsohn <dje.gcc@gmail.com> announcing the new release.
325 Sign the email and include the checksum.
326 (The email to Davis is so that he can update the GNU Toolchain
327 social media). Something like this:
328 -----------------------------------------------------------------------
329 Hi Everyone,
330
331 We are pleased to announce that version 2.XX of the GNU Binutils project
332 sources have been released and are now available for download at:
333
334 https://ftp.gnu.org/gnu/binutils
335 https://sourceware.org/pub/binutils/releases/
336
337 checksums: xxxx
338
339 This release contains numerous bug fixes, and also the
340 following new features:
341
342 <extract info from the NEWS files>
343
344 Our thanks go out to all of the binutils contributors, past and
345 present, for helping to make this release possible.
346
347 -----------------------------------------------------------------------
348
349 31. Clean up the source tree. (Use "git status" to find new
350 files, and remove them).
351
352 rm binutils-<version> binutils-<version>.tar binutils-<version>.tar.xz
353 rm gas/bfin-lex.c \
354 gas/bfin-parse.c \
355 gas/bfin-parse.h \
356 gas/itbl-lex.c \
357 gas/itbl-parse.c \
358 gas/itbl-parse.h \
359 gas/m68k-parse.c \
360 gas/rl78-parse.c \
361 gas/rl78-parse.h \
362 gas/rx-parse.c \
363 gas/rx-parse.h \
364 gold/yyscript.c \
365 gold/yyscript.h
366 rm -fr proto-toplev
367
368 32. Edit bfd/development.sh on the branch and set the development flag
369 to "true". (Leave the experimental flag set to "false"). Also bump
370 the version in bfd/version.m4 by adding a trailing .0, so that the
371 date suffix keeps the version lower than the trunk version.
372 Regenerate files. Commit these changes.
373
374 33. Email the binutils list telling everyone that the 2.XX branch
375 is now open for business as usual and that patched no longer
376 need special approval.
377
378 34. Examine the bfd/config.bfd file and move any pending obsolete
379 targets into the definitely obsolete section. Create a
380 changelog entry and commit.
381
382 -------------------------------------------------
383 How to perform a point release.
384 -------------------------------------------------
385
386 A point release is easier than a normal release since a lot of the
387 work has already been done. The branch has been created, the
388 translations updated and the documentation uploaded. So the procedure
389 looks like this:
390
391 0. Decide that a point release is necessary.
392
393 Usually this only happens when a sufficient number of serious
394 bugs have been found and fixed since the previous release, and a
395 new official release is not imminent.
396
397 1. Tell the community that a point release is happening. Ask
398 maintainers to ensure that their ports are up to date on the
399 release branch. Ask the community if there are any bug fixes
400 which are missing from the branch. Allow some time for the
401 responses to this step.
402
403 2. Make sure that the branch sources build, test and install
404 correctly.
405
406 2.5 Prepare a list of the bugs which have been fixed. This
407 will be needed for step 8.
408
409 3. In the branch sources:
410
411 a. Update the minor release number in bfd/version.m4.
412 b. Edit bfd/development.sh, set "development=false" and
413 "experimental=false".
414 c. Regenerate the configure files.
415 c.1. Remove spurious autom4te.cache files:
416
417 find . -depth -name autom4te.cache -exec rm -r {} \;
418
419 d. Commit the updates along with a "this-is-the-2.XX.X-release"
420 note in all of the changelogs.
421 e. Tag the branch with the new release number:
422
423 git tag -a binutils-2_XX_X
424 [optional: add "-u XXXXX" to sign with a gpg key]
425 git push origin binutils-2_XX_X
426
427 f. Check that your file creation mask will create the
428 correct file permissions. Eg:
429
430 umask 022
431
432 g. Create the release tarballs:
433 ./src-release -b -g -l -x binutils
434
435 h. Check that the files in the tarballs have the correct
436 permissions.
437
438 i. Edit bfd/development.sh and set "development=true".
439 j. Commit this change into the git repository.
440 k. Clean up the source tree. (Use "git status" to find new
441 files, and remove them).
442
443 4. [If paranoid - upload the tarballs to one of the FTP servers and
444 ask people to test it before going on to step 5].
445
446 5. Upload the tarballs to ftp.gnu.org.
447
448 gnupload --to ftp.gnu.org:binutils binutils-X.XX.X.tar.*
449
450 The gnupload script is in the gnulib/build-aux directory.
451
452 6. Upload the tarballs to sourceware.org:
453
454 sftp sourceware.org
455 cd /sourceware/ftp/pub/binutils/releases
456 put binutils-X.XX.X.tar.*
457 chmod 644 binutils-X.XX.X.tar.*
458 quit
459
460 It is OK to upload the signatures as well.
461
462 7. Update web pages. For sourceware.org:
463
464 * Log on to sourceware.org
465 * Go to /sourceware/www/sourceware/htdocs/binutils
466 * Edit index.html
467
468 For the www.gnu.org site you have to email webmasters@gnu.org
469 and ask them to make the change(s).
470
471 8. Send an emails to the binutils list, info-gnu@gnu.org and
472 David Edelsohn <dje.gcc@gmail.com> announcing the new release.
473 (The email to Davis is so that he can update the GNU Toolchain
474 social media). Something like this:
475 ------------------------------------------------------------------------
476 Hi Everyone,
477
478 We are pleased to announce that version 2.XX.X of the GNU Binutils
479 project sources have been released and are now available for download at:
480
481 https://ftp.gnu.org/gnu/binutils
482 https://sourceware.org/pub/binutils/releases/
483
484 This is a point release over the previous 2.XX version, containing bug
485 fixes but no new features.
486
487 Our thanks go out to all of the binutils contributors, past and
488 present, for helping to make this release possible.
489
490 Here is a list of the bugs that have been fixed:
491 xx
492 xx
493 xx
494 xx
495 --------------------------------------------------------------------------
496
497 \f
498 Copyright (C) 2017-2019 Free Software Foundation, Inc.
499
500 Copying and distribution of this file, with or without modification,
501 are permitted in any medium without royalty provided the copyright
502 notice and this notice are preserved.
This page took 0.040101 seconds and 4 git commands to generate.