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