mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-02-21 00:07:36 +08:00
This commit was manufactured by cvs2svn to create branch 'readline_5_1
-import-branch'. Sprout from binutils-2_17-branch 2006-04-12 18:41:46 UTC cvs2svn 'This commit was manufactured by cvs2svn to create branch 'binutils-' Cherrypick from master 2006-04-19 00:57:59 UTC DJ Delorie <dj@redhat.com> '* configure.in (m32c): Build libstdc++-v3. Pass flags to': ChangeLog configure configure.in djunpack.bat
This commit is contained in:
parent
3e58882d0d
commit
b86926951d
@ -1,3 +1,10 @@
|
||||
2006-04-18 DJ Delorie <dj@redhat.com>
|
||||
|
||||
* configure.in (m32c): Build libstdc++-v3. Pass flags to
|
||||
reference libgloss so that libssp can be built in a combined
|
||||
tree.
|
||||
* configure: Regenerate.
|
||||
|
||||
2006-04-10 Ben Elliston <bje@au.ibm.com>
|
||||
|
||||
* contrib: Remove directory.
|
||||
|
17
configure.in
17
configure.in
@ -445,9 +445,6 @@ case "${target}" in
|
||||
*-*-vxworks*)
|
||||
noconfigdirs="$noconfigdirs target-newlib target-libgloss target-libiberty target-libstdc++-v3 ${libgcj}"
|
||||
;;
|
||||
m32c-*-*)
|
||||
noconfigdirs="$noconfigdirs target-libstdc++-v3"
|
||||
;;
|
||||
alpha*-dec-osf*)
|
||||
# ld works, but does not support shared libraries.
|
||||
# newlib is not 64 bit ready. I'm not sure about fileutils.
|
||||
@ -2129,6 +2126,20 @@ if test "x${use_gnu_ld}" = x &&
|
||||
FLAGS_FOR_TARGET=$FLAGS_FOR_TARGET' -L$$r/$(HOST_SUBDIR)/ld'
|
||||
fi
|
||||
|
||||
# Search for other target-specific linker scripts and such.
|
||||
case "${target}" in
|
||||
m32c-*-* )
|
||||
if test -d ${srcdir}/libgloss/m32c; then
|
||||
# This is for crt0.o
|
||||
FLAGS_FOR_TARGET=$FLAGS_FOR_TARGET' -B$$r/$(TARGET_SUBDIR)/libgloss/m32c'
|
||||
# This is for r8c.ld
|
||||
FLAGS_FOR_TARGET=$FLAGS_FOR_TARGET' -L$$r/$(TARGET_SUBDIR)/libgloss/m32c'
|
||||
# This is for libnosys.a
|
||||
FLAGS_FOR_TARGET=$FLAGS_FOR_TARGET' -L$$r/$(TARGET_SUBDIR)/libgloss/libnosys'
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
|
||||
# Makefile fragments.
|
||||
for frag in host_makefile_frag target_makefile_frag alphaieee_frag ospace_frag;
|
||||
do
|
||||
|
52
djunpack.bat
Executable file
52
djunpack.bat
Executable file
@ -0,0 +1,52 @@
|
||||
@echo off
|
||||
Rem
|
||||
Rem WARNING WARNING WARNING: This file needs to have DOS CRLF end-of-line
|
||||
Rem format, or else stock DOS/Windows shells will refuse to run it.
|
||||
Rem
|
||||
Rem This batch file unpacks the GDB distribution while simultaneously
|
||||
Rem renaming some of the files whose names are invalid on DOS or conflict
|
||||
Rem with other file names after truncation to DOS 8+3 namespace.
|
||||
Rem
|
||||
Rem Invoke like this:
|
||||
Rem
|
||||
Rem djunpack gdb-XYZ.tar
|
||||
Rem
|
||||
Rem where XYZ is the version number. If the argument includes leading
|
||||
Rem directories, it MUST use backslashes, not forward slashes.
|
||||
Rem
|
||||
Rem The following 2 lines need to be changed with each new GDB release, to
|
||||
Rem be identical to the name of the top-level directory where the GDB
|
||||
Rem distribution unpacks itself.
|
||||
set GDBVER=gdb-5.0
|
||||
if "%GDBVER%"=="gdb-5.0" GoTo EnvOk
|
||||
Rem If their environment space is too small, re-exec with a larger one
|
||||
command.com /e:4096 /c %0 %1
|
||||
GoTo End
|
||||
:EnvOk
|
||||
if not exist %1 GoTo NoArchive
|
||||
djtar -x -p -o %GDBVER%/gdb/config/djgpp/fnchange.lst %1 > fnchange.tmp
|
||||
Rem The following uses a feature of COPY whereby it does not copy
|
||||
Rem empty files. We need that because the previous line will create
|
||||
Rem an empty fnchange.tmp even if the command failed for some reason.
|
||||
copy fnchange.tmp junk.tmp > nul
|
||||
if not exist junk.tmp GoTo NoDjTar
|
||||
del junk.tmp
|
||||
sed -e 's,@V@,%GDBVER%,g' < fnchange.tmp > fnchange.lst
|
||||
Rem See the comment above about the reason for using COPY.
|
||||
copy fnchange.lst junk.tmp > nul
|
||||
if not exist junk.tmp GoTo NoSed
|
||||
del junk.tmp
|
||||
djtar -x -n fnchange.lst %1
|
||||
GoTo End
|
||||
:NoSed
|
||||
echo FAIL: Sed is not available.
|
||||
GoTo End
|
||||
:NoDjTar
|
||||
echo FAIL: DJTAR is not available or no fnchange.lst file in %1.
|
||||
GoTo End
|
||||
:NoArchive
|
||||
echo FAIL: the file %1 does not seem to exist.
|
||||
echo Remember that %1 cannot use forward slashes, only backslashes.
|
||||
GoTo End
|
||||
:End
|
||||
set GDBVER=
|
Loading…
x
Reference in New Issue
Block a user