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