* djunpack.bat: New file.
authorEli Zaretskii <eliz@gnu.org>
Sun, 23 Apr 2000 07:23:05 +0000 (07:23 +0000)
committerEli Zaretskii <eliz@gnu.org>
Sun, 23 Apr 2000 07:23:05 +0000 (07:23 +0000)
* config/djgpp/README: Explain how to unpack using djunpack.bat.

ChangeLog
djunpack.bat [new file with mode: 0755]
gdb/ChangeLog
gdb/config/djgpp/README

index a2576b431f97abb23ee44f21bbbadc755f11ef27..5da2a58b7739f4fb3a835b62467573489f2cf888 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2000-04-23  Eli Zaretskii  <eliz@is.elta.co.il>
+
+       * djunpack.bat: New file.
+
 2000-04-21  Michael Meissner  <meissner@redhat.com>
 
        * config.sub (d30v): Add d30v as a basic machine type.
diff --git a/djunpack.bat b/djunpack.bat
new file mode 100755 (executable)
index 0000000..1a9e4aa
--- /dev/null
@@ -0,0 +1,52 @@
+@echo off\r
+Rem\r
+Rem WARNING WARNING WARNING: This file needs to have DOS CRLF end-of-line\r
+Rem format, or else stock DOS/Windows shells will refuse to run it.\r
+Rem\r
+Rem This batch file unpacks the GDB distribution while simultaneously\r
+Rem renaming some of the files whose names are invalid on DOS or conflict\r
+Rem with other file names after truncation to DOS 8+3 namespace.\r
+Rem\r
+Rem Invoke like this:\r
+Rem\r
+Rem     djunpack gdb-XYZ.tar\r
+Rem\r
+Rem where XYZ is the version number.  If the argument includes leading\r
+Rem directories, it MUST use backslashes, not forward slashes.\r
+Rem\r
+Rem The following 2 lines need to be changed with each new GDB release, to\r
+Rem be identical to the name of the top-level directory where the GDB\r
+Rem distribution unpacks itself.\r
+set GDBVER=gdb-5.0\r
+if "%GDBVER%"=="gdb-5.0" GoTo EnvOk\r
+Rem If their environment space is too small, re-exec with a larger one\r
+command.com /e:4096 /c %0 %1\r
+GoTo End\r
+:EnvOk\r
+if not exist %1 GoTo NoArchive\r
+djtar -x -p -o %GDBVER%/gdb/config/djgpp/fnchange.lst %1 > fnchange.tmp\r
+Rem The following uses a feature of COPY whereby it does not copy\r
+Rem empty files.  We need that because the previous line will create\r
+Rem an empty fnchange.tmp even if the command failed for some reason.\r
+copy fnchange.tmp junk.tmp > nul\r
+if not exist junk.tmp GoTo NoDjTar\r
+del junk.tmp\r
+sed -e 's,^,%GDBVER%,' -e 's,  *, %GDBVER%,' < fnchange.tmp > fnchange.lst\r
+Rem See the comment above about the reason for using COPY.\r
+copy fnchange.lst junk.tmp > nul\r
+if not exist junk.tmp GoTo NoSed\r
+del junk.tmp\r
+djtar -x -n fnchange.lst %1\r
+GoTo End\r
+:NoSed\r
+echo FAIL: Sed is not available.\r
+GoTo End\r
+:NoDjTar\r
+echo FAIL: DJTAR is not available or no fnchange.lst file in %1.\r
+GoTo End\r
+:NoArchive\r
+echo FAIL: the file %1 does not seem to exist.\r
+echo Remember that %1 cannot use forward slashes, only backslashes.\r
+GoTo End\r
+:End\r
+set GDBVER=\r
index 928bab3aa456490f0f32d92c85016f12ce2cb09b..2ae2261b559e5b989bd5bbfb537415a5490045f7 100644 (file)
@@ -1,3 +1,7 @@
+2000-04-22  Eli Zaretskii  <eliz@is.elta.co.il>
+
+       * config/djgpp/README: Explain how to unpack using djunpack.bat.
+
 Fri Apr 21 15:23:13 2000  Andrew Cagney  <cagney@b1.cygnus.com>
 
        * stabsread.c (REG_STRUCT_HAS_ADDR): Delete default.
index cced23473df3644afaece86ddf540a3bb93390d6..b45c00334afad07c8af893b7c18c8fc7fff68616 100644 (file)
@@ -65,21 +65,33 @@ use unzip32.exe available with the rest of DJGPP), and proceed to the
 section "How to build" below.
 
 Source distributions downloaded from one of the GNU FTP sites need
-some more work to unpack.  First, you MUST use the `djtar' program to
-unzip the package.  That's because some file names in the official
-distributions need to be changed to avoid problems on the various
-platforms supported by DJGPP.  `djtar' can rename files on the fly
-given a file with name mappings; the distribution includes a file
-`gdb/config/djgpp/fnchange.lst' with the necessary mappings.  So you
-need first to retrieve that file, and then invoke `djtar' to unpack
-the distribution.  Here's how:
-
-
- djtar -x -p -o gdb-5.0/gdb/config/djgpp/fnchange.lst gdb-5.0.tar.gz > lst
- djtar -x -n lst gdb-5.0.tar.gz
-
-(The name of the distribution archive and the top-level directory will
-be different for versions other than 5.0.)
+some more work to unpack.  First, you MUST use the `djunpack' batch
+file to unzip the package.  That's because some file names in the
+official distributions need to be changed to avoid problems on the
+various platforms supported by DJGPP.  `djunpack' invokes the `djtar'
+program (that is part of the basic DJGPP development kit) to rename
+these files on the fly given a file with name mappings; the
+distribution includes a file `gdb/config/djgpp/fnchange.lst' with the
+necessary mappings.  So you need first to retrieve that batch file,
+and then invoke it to unpack the distribution.  Here's how:
+
+ djtar -x -p -o gdb-5.0/djunpack.bat gdb-5.0.tar.gz > djunpack.bat
+ djunpack gdb-5.0.tar.gz
+
+(The name of the distribution archive and the leading directory of the
+path to `djunpack.bat' in the distribution will be different for
+versions of GDB other than 5.0.)
+
+If the argument to `djunpack.bat' include leading directories, it MUST
+be given with the DOS-style backslashes; Unix-style forward slashes
+will NOT work.
+
+If the distribution comes as a .tar.bz2 archive, you need to unpack it
+as follows:
+
+ bnzip2 gdb-5.0.tar.bz2
+ djtar -x -p -o gdb-5.0/djunpack.bat gdb-5.0.tar > djunpack.bat
+ djunpack gdb-5.0.tar
 
 
 3. How to build
This page took 0.031317 seconds and 4 git commands to generate.