diff options
author | Nick Clifton <nickc@redhat.com> | 2024-03-06 10:57:39 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2024-03-06 10:57:39 +0000 |
commit | 164cc86b81de7ab25682a234b978134d08fb3009 (patch) | |
tree | fc5df5d00ab33c11940160904a9a547da72272fd | |
parent | a9859f5ad0ed35ffd937c4900957f54e4893a35b (diff) | |
download | binutils-164cc86b81de7ab25682a234b978134d08fb3009.zip binutils-164cc86b81de7ab25682a234b978134d08fb3009.tar.gz binutils-164cc86b81de7ab25682a234b978134d08fb3009.tar.bz2 |
Add "-j1" to make command lines in the create-a-release README.
-rw-r--r-- | binutils/README-how-to-make-a-release | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/binutils/README-how-to-make-a-release b/binutils/README-how-to-make-a-release index c55b660..2318523 100644 --- a/binutils/README-how-to-make-a-release +++ b/binutils/README-how-to-make-a-release @@ -112,7 +112,7 @@ Approx time to complete from here: 2 hours ... Regenerate various files on both branch and HEAD by configuring with "--enable-maintainer-mode --enable-gold --enable-shared" and then building - with "make all-binutils all-gas all-gold all-gprof all-gprofng all-ld" + with "make -j1 all-binutils all-gas all-gold all-gprof all-gprofng all-ld" Add ChangeLog entries for the updated files. Commit the changes. Make sure that this includes the .pot files as well as the @@ -257,7 +257,7 @@ How to create the release. c. Regenerate the configure and makefiles. And *info* files. cd <build-configured-with-enable-maintainer-mode> - make all-gas all-ld all-binutils all-gprof all-gold all-gprofng all-libctf + make -j1 all-gas all-ld all-binutils all-gprof all-gold all-gprofng all-libctf make info d. Create a ChangeLog from the git refs for all of the commits @@ -336,7 +336,7 @@ How to create the release. mkdir build cd build ../binutils-2.*/configure --quiet --enable-gold --prefix=`pwd`/install --enable-plugins --enable-shared - make all-gas all-gold all-ld all-binutils all-gprof all-gprofng + make -j1 all-gas all-gold all-ld all-binutils all-gprof all-gprofng make check-gas check-binutils check-ld check-gold make install-gas install-gold install-ld install-binutils install-gprofng |