summaryrefslogtreecommitdiff
path: root/src-release.sh
Commit message (Collapse)AuthorAgeFilesLines
* fix gdb version parsing in src-release.shJoel Brobecker2016-01-171-1/+1
| | | | | | | | | | | | | Small change required after we switched the gdb version scheme to using a -git suffix rather than a -cvs one. ChangeLog: * src-release.sh: Compute the gdb tarball name by stripping '-git' rather than '-cvs'. Tested by running "src-release.sh gdb" and verifying the tarball name as well as its contents.
* Adjust src-release.sh for sim using the gdb create-version.sh.Hans-Peter Nilsson2015-04-151-3/+4
| | | | | | | * sim-release.sh (tar_compress): If there's a fifth parameter, use that in the getver call instead of $tool. (sim_release): Pass gdb as fifth parameter to tar_compress. (SIM_SUPPORT_DIRS): Add gdb/common/create-version.sh.
* Remove --with-target-subdir=. --disable-multilibH.J. Lu2015-03-311-3/+1
| | | | | | | zlib/configure is updated to properly handle in-tree build for host. * src-release.sh: Don't configure with --with-target-subdir=. --disable-multilib.
* Replace src-release with src-release.shH.J. Lu2015-03-311-1/+1
| | | | | * src-release.sh (DEVO_SUPPORT): Replace src-release with src-release.sh.
* A zlib to tarballH.J. Lu2015-03-281-5/+7
| | | | | | | | | * src-release.sh (do_proto_toplev): Configure with --target --with-target-subdir and --disable-multilib. (BINUTILS_SUPPORT_DIRS): Add zlib. (GAS_SUPPORT_DIRS): Likewise. (GDB_SUPPORT_DIRS): Likewise. (SIM_SUPPORT_DIRS): Likewise.
* src-release.sh: configure using --target.Tristan Gingold2014-10-151-1/+1
| | | | * src-release.sh (do_proto_toplev): Configure with --target.
* src-release.sh: Convert src-release to a shell scriptWill Newton2014-08-271-0/+352
This began as an attempt to make a few small changes to src-release but heeding the comments at the top of the file it seemed it might be wise to convert it to a shell script instead which should hopefully be more maintainable. This shell script contains most of the functionality of the Makefile version. It can be run like this: # This will build gdb and compress with bzip2, gzip and xz ./src-release.sh -bgx gdb The functionality that has been removed is building tarballs for insight and gnats, which were broken in the current repository layout and gas+binutils which amounted to basically the same thing as binutils so didn't seem worth keeping. The script always builds a tar file, compression is optional, so no need for specific commands to build tar files rather than compressed tar files. The build of gas releases has been fixed, as has extraction of version numbers which had been broken since the switch to configure.ac files and AC_INIT. I also removed the code for distcleaning the intl sub-directory as it seems like that issue has been fixed. The script is capable of compressing with bzip2, gzip and xz which should cover all formats available on gnu.org. I tested it by producing release tarballs which are substantially identical to the ones produced by the src-release script. ChangeLog: 2014-08-27 Will Newton <will.newton@linaro.org> * src-release.sh: New file. * src-release: Remove file.