2 # Copyright (C) 1990-2018 Free Software Foundation
4 # This file is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 3 of the License, or
7 # (at your option) any later version.
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
18 # This script creates release packages for gdb, binutils, and other
19 # packages which live in src. It used to be implemented as the src-release
20 # Makefile and prior to that was part of the top level Makefile, but that
21 # turned out to be very messy and hard to maintain.
34 # Default to avoid splitting info files by setting the threshold high.
35 MAKEINFOFLAGS
=--split-size=5000000
38 # Support for building net releases
40 # Files in root used in any net release.
41 DEVO_SUPPORT
="ar-lib ChangeLog compile config config-ml.in config.guess \
42 config.rpath config.sub configure configure.ac COPYING COPYING.LIB \
43 COPYING3 COPYING3.LIB depcomp install-sh libtool.m4 ltgcc.m4 \
44 ltmain.sh ltoptions.m4 ltsugar.m4 ltversion.m4 lt~obsolete.m4 \
45 MAINTAINERS Makefile.def Makefile.in Makefile.tpl missing mkdep \
46 mkinstalldirs move-if-change README README-maintainer-mode \
47 src-release.sh symlink-tree test-driver ylwrap"
49 # Files in devo/etc used in any net release.
50 ETC_SUPPORT
="Makefile.in configure configure.in standards.texi \
51 make-stds.texi standards.info* configure.texi configure.info* \
52 ChangeLog configbuild.* configdev.* fdl.texi texi2pod.pl gnu-oids.texi"
54 # Get the version number of a given tool
58 if grep 'AC_INIT.*BFD_VERSION' $tool/configure.ac
>/dev
/null
2>&1; then
59 bfd
/configure
--version |
sed -n -e '1s,.* ,,p'
60 elif test -f $tool/common
/create-version.sh
; then
61 $tool/common
/create-version.sh
$tool 'dummy-host' 'dummy-target' VER.tmp
62 cat VER.tmp |
grep 'version\[\]' |
sed 's/.*"\([^"]*\)".*/\1/' |
sed 's/-git$//'
64 elif test -f $tool/gdbsupport
/create-version.sh
; then
65 $tool/gdbsupport
/create-version.sh
$tool 'dummy-host' 'dummy-target' VER.tmp
66 cat VER.tmp |
grep 'version\[\]' |
sed 's/.*"\([^"]*\)".*/\1/' |
sed 's/-git$//'
68 elif test -f $tool/version.
in; then
69 head -n 1 $tool/version.
in
75 # Setup build directory for building release tarball
83 echo "==> Cleaning sources."
84 find \
( -name "*.orig" -o -name "*.rej" -o -name "*~" -o -name ".#*" -o -name "*~$bkpat" \
) -exec rm {} \
;
86 echo "==> Making $package-$ver/"
87 # Take out texinfo from a few places.
88 sed -e '/^all\.normal: /s/\all-texinfo //' \
89 -e '/^ install-texinfo /d' \
92 # configure. --enable-gold is needed to ensure .c/.h from .y are
93 # built in the gold dir. The disables speed the build a little.
96 for dir
in binutils gas gdb gold gprof ld libctf libdecnumber readline sim
; do
97 case " $tool $support_files " in
98 *" $dir "*) enables
="$enables --enable-$dir" ;;
99 *) disables
="$disables --disable-$dir" ;;
102 echo "==> configure --target=i386-pc-linux-gnu $disables $enables"
103 .
/configure
--target=i386-pc-linux-gnu
$disables $enables
104 $MAKE configure-host configure-target \
105 ALL_GCC
="" ALL_GCC_C
="" ALL_GCC_CXX
="" \
106 CC_FOR_TARGET
="$CC" CXX_FOR_TARGET
="$CXX"
107 # Make links, and run "make diststuff" or "make info" when needed.
110 dirs="$DEVO_SUPPORT $support_files $tool"
113 if [ ! -f $d/Makefile
] ; then
115 elif grep '^diststuff:' $d/Makefile
>/dev
/null
; then
116 (cd $d ; $MAKE MAKEINFOFLAGS
="$MAKEINFOFLAGS" diststuff
) \
118 elif grep '^info:' $d/Makefile
>/dev
/null
; then
119 (cd $d ; $MAKE MAKEINFOFLAGS
="$MAKEINFOFLAGS" info
) \
122 if [ -d $d/proto-
$d.dir
]; then
123 ln -s ..
/$d/proto-
$d.dir proto-toplev
/$d
125 ln -s ..
/$d proto-toplev
/$d
128 if (echo x
$d |
grep / >/dev
/null
); then
129 mkdir
-p proto-toplev
/`dirname $d`
131 ln -s ..
/`echo $x/ | sed -e 's,[^/]*/,../,g'`$d proto-toplev
/$d
133 ln -s ..
/$d proto-toplev
/$d
137 (cd etc
; $MAKE MAKEINFOFLAGS
="$MAKEINFOFLAGS" info
)
139 mkdir proto-toplev
/etc
140 (cd proto-toplev
/etc
;
141 for i
in $ETC_SUPPORT; do
145 # Take out texinfo from configurable dirs
146 rm proto-toplev
/configure.ac
147 sed -e '/^host_tools=/s/texinfo //' \
148 <configure.ac
>proto-toplev
/configure.ac
150 mkdir proto-toplev
/texinfo
151 ln -s ..
/..
/texinfo
/texinfo.tex proto-toplev
/texinfo
/
152 if test -r texinfo
/util
/tex3patch
; then
153 mkdir proto-toplev
/texinfo
/util
&& \
154 ln -s ..
/..
/..
/texinfo
/util
/tex3patch proto-toplev
/texinfo
/util
158 chmod -R og
=u . ||
chmod og
=u
`find . -print`
160 # Create .gmo files from .po files.
161 for f
in `find . -name '*.po' -type f -print`; do
162 msgfmt
-o `echo $f | sed -e 's/\.po$/.gmo/'` $f
166 ln -s proto-toplev
$package-$ver
169 CVS_NAMES
='-name CVS -o -name .cvsignore'
171 # Add an md5sum to the built tarball
174 echo "==> Adding md5 checksum to top-level directory"
175 (cd proto-toplev
&& find * -follow \
( $CVS_NAMES \
) -prune \
177 |
xargs $MD5PROG > ..
/md5.new
)
178 rm -f proto-toplev
/md5.
sum
179 mv md5.new proto-toplev
/md5.
sum
182 # Build the release tarball
187 echo "==> Making $package-$ver.tar"
188 rm -f $package-$ver.
tar
189 find $package-$ver -follow \
( $CVS_NAMES \
) -prune \
191 |
tar cTfh
- $package-$ver.
tar
194 # Compress the output with bzip2
199 echo "==> Bzipping $package-$ver.tar.bz2"
200 rm -f $package-$ver.
tar.bz2
201 $BZIPPROG -k -v -9 $package-$ver.
tar
204 # Compress the output with gzip
209 echo "==> Gzipping $package-$ver.tar.gz"
210 rm -f $package-$ver.
tar.gz
211 $GZIPPROG -k -v -9 $package-$ver.
tar
214 # Compress the output with lzip
219 echo "==> Lzipping $package-$ver.tar.lz"
220 rm -f $package-$ver.
tar.lz
221 $LZIPPROG -k -v -9 $package-$ver.
tar
224 # Compress the output with xz
229 echo "==> Xzipping $package-$ver.tar.xz"
230 rm -f $package-$ver.
tar.xz
231 $XZPROG -k -v -9 $package-$ver.
tar
234 # Compress the output with all selected compresion methods
240 for comp
in $compressors; do
243 do_bz2
$package $ver;;
245 do_gz
$package $ver;;
247 do_lz
$package $ver;;
249 do_xz
$package $ver;;
251 echo "Unknown compression method: $comp" && exit 1;;
256 # Add djunpack.bat the tarball
261 echo "==> Adding updated djunpack.bat to top-level directory"
262 echo - 's /gdb-[0-9\.]*/$package-'"$ver"'/'
263 sed < djunpack.bat
> djunpack.new \
264 -e 's/gdb-[0-9][0-9\.]*/$package-'"$ver"'/'
265 rm -f proto-toplev
/djunpack.bat
266 mv djunpack.new proto-toplev
/djunpack.bat
269 # Create a release package, tar it and compress it
277 ver
=$
(getver
$verdir)
278 do_proto_toplev
$package $ver $tool "$support_files"
281 do_compress
$package $ver "$compressors"
284 # Create a gdb release package, tar it and compress it
292 do_proto_toplev
$package $ver $tool "$support_files"
294 do_djunpack
$package $ver
296 do_compress
$package $ver "$compressors"
299 # The FSF "binutils" release includes gprof and ld.
300 BINUTILS_SUPPORT_DIRS
="bfd gas include libiberty libctf opcodes ld elfcpp gold gprof intl setup.com makefile.vms cpu zlib"
306 tar_compress
$package $tool "$BINUTILS_SUPPORT_DIRS" "$compressors"
309 GAS_SUPPORT_DIRS
="bfd include libiberty opcodes intl setup.com makefile.vms zlib"
315 tar_compress
$package $tool "$GAS_SUPPORT_DIRS" "$compressors"
318 GDB_SUPPORT_DIRS
="bfd include libiberty libctf opcodes readline sim intl libdecnumber cpu zlib contrib gnulib"
324 gdb_tar_compress
$package $tool "$GDB_SUPPORT_DIRS" "$compressors"
327 # Corresponding to the CVS "sim" module.
328 SIM_SUPPORT_DIRS
="bfd opcodes libiberty include intl gdb/version.in gdb/common/create-version.sh makefile.vms zlib"
334 tar_compress
$package $tool "$SIM_SUPPORT_DIRS" "$compressors" gdb
339 echo "src-release.sh <options> <release>"
341 echo " -b: Compress with bzip2"
342 echo " -g: Compress with gzip"
343 echo " -l: Compress with lzip"
344 echo " -x: Compress with xz"
354 binutils_release
"$compressors";;
356 gas_release
"$compressors";;
358 gdb_release
"$compressors";;
360 sim_release
"$compressors";;
362 echo "Unknown release name: $release" && usage
;;
368 while getopts ":bglx" opt
; do
371 compressors
="$compressors bz2";;
373 compressors
="$compressors gz";;
375 compressors
="$compressors lz";;
377 compressors
="$compressors xz";;
379 echo "Invalid option: -$OPTARG" && usage
;;
385 build_release
$release "$compressors"