Bug#437537: Dangling symlink /usr/share/man/man1/i486-linux-gnu-g77-3.4.1
Package: g77-3.4 Version: 3.4.6-6 Severity: normal vin:~> ls -l /usr/share/man/man1/i486-linux-gnu-g77-3.4.1 lrwxrwxrwx 1 root root 9 2007-07-30 16:13:45 /usr/share/man/man1/i486-linux-gnu-g77-3.4.1 -> g77-3.4.1 but /usr/share/man/man1/g77-3.4.1 doesn't exist. -- System Information: Debian Release: lenny/sid APT prefers unstable APT policy: (500, 'unstable'), (500, 'stable') Architecture: i386 (i686) Kernel: Linux 2.6.18-4-686-bigmem (SMP w/2 CPU cores) Locale: LANG=POSIX, LC_CTYPE=en_US.ISO8859-1 (charmap=ISO-8859-1) Shell: /bin/sh linked to /bin/bash Versions of packages g77-3.4 depends on: ii gcc-3.4 3.4.6-6The GNU C compiler ii gcc-3.4-base 3.4.6-6The GNU Compiler Collection (base ii libc6 2.6.1-1GNU C Library: Shared libraries ii libg2c0-dev 1:3.4.6-6 GNU Fortran 77 library development g77-3.4 recommends no packages. -- no debconf information -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#437470: gcj-4.2: FTBFS on GNU/Hurd
Samuel Thibault, le Mon 13 Aug 2007 10:51:30 +0200, a écrit : > Here is the patch to apply to the gcc-4.2 svn repository for fixing > the build on GNU/Hurd. Oops, I hadn't noticed that you had dropped libjava-maxhostnamelen. Here is a patch against revision 2343. Samuel Index: debian/rules.patch === --- debian/rules.patch (r�vision 2343) +++ debian/rules.patch (copie de travail) @@ -165,6 +165,9 @@ ifeq ($(DEB_TARGET_ARCH_OS),netbsd) debian_patches += # netbsd-all-gcc netbsd-archs-gcc endif +ifeq ($(DEB_TARGET_ARCH_OS),hurd) + debian_patches += libjava-hurdfix +endif ifdef DEB_CROSS debian_patches += cross-include cross-fixes Index: debian/patches/hurd-changes.dpatch === --- debian/patches/hurd-changes.dpatch (r�vision 2343) +++ debian/patches/hurd-changes.dpatch (copie de travail) @@ -88,3 +88,14 @@ /* Defined in the automatically-generated underscore.c. */ extern int prepends_underscore; +--- boehm-gc/dyn_load.c.orig 2007-08-13 09:10:48.215678000 +0200 boehm-gc/dyn_load.c2007-08-13 09:11:09.743969000 +0200 +@@ -26,7 +26,7 @@ + * None of this is safe with dlclose and incremental collection. + * But then not much of anything is safe in the presence of dlclose. + */ +-#if (defined(__linux__) || defined(__GLIBC__)) && !defined(_GNU_SOURCE) ++#if (defined(__linux__) || defined(__GLIBC__) || defined(__GNU__)) && !defined(_GNU_SOURCE) + /* Can't test LINUX, since this must be define before other includes */ + # define _GNU_SOURCE + #endif Index: debian/patches/libjava-hurdfix.dpatch === --- debian/patches/libjava-hurdfix.dpatch (r�vision 0) +++ debian/patches/libjava-hurdfix.dpatch (r�vision 0) @@ -0,0 +1,164 @@ +#! /bin/sh -e + +# Description: java support for GNU/Hurd +# Author: Robert Millan, Petr Salinger, Samuel Thibault + +dir= +if [ $# -eq 3 -a "$2" = '-d' ]; then +pdir="-d $3" +dir="$3/" +elif [ $# -ne 1 ]; then +echo >&2 "`basename $0`: script expects -patch|-unpatch as argument" +exit 1 +fi +case "$1" in +-patch) +patch $pdir -f --no-backup-if-mismatch -p1 < $0 +#cd ${dir}gcc && autoconf +;; +-unpatch) +patch $pdir -f --no-backup-if-mismatch -R -p1 < $0 +#rm ${dir}gcc/configure +;; +*) +echo >&2 "`basename $0`: script expects -patch|-unpatch as argument" +exit 1 +esac +exit 0 + + +--- gcj-4.1.1/libjava/java/net/natVMInetAddressPosix.cc.orig 2007-01-26 15:27:19.0 + gcj-4.1.1/libjava/java/net/natVMInetAddressPosix.cc2007-01-26 15:45:53.0 + +@@ -47,10 +47,25 @@ java::net::VMInetAddress::getLocalHostname () + { + char *chars; + #ifdef HAVE_GETHOSTNAME ++#ifdef MAXHOSTNAMELEN + char buffer[MAXHOSTNAMELEN]; + if (gethostname (buffer, MAXHOSTNAMELEN)) + return NULL; + chars = buffer; ++#else ++ size_t size = 256; ++ while (1) { ++char buffer[size]; ++if (!gethostname (buffer, size-1)) ++ { ++ buffer[size-1] = 0; ++ return JvNewStringUTF (buffer); ++ } ++else if (errno != ENAMETOOLONG) ++ return NULL; ++size *= 2; ++ } ++#endif + #elif HAVE_UNAME + struct utsname stuff; + if (uname (&stuff) != 0) +diff -ur gcj-4.1.1/libjava/libltdl/acinclude.m4 gcj-4.1.1/libjava/libltdl/acinclude.m4 +--- gcj-4.1.1/libjava/libltdl/acinclude.m4 2006-05-12 13:35:07.0 +0200 gcj-4.1.1/libjava/libltdl/acinclude.m4 2006-05-12 11:07:03.0 +0200 +@@ -1413,7 +1413,7 @@ + ;; + + # This must be Linux ELF. +-linux*) ++linux*|gnu*) + version_type=linux + need_lib_prefix=no + need_version=no +diff -ur gcj-4.1.1/libjava/libltdl/configure gcj-4.1.1/libjava/libltdl/configure +--- gcj-4.1.1/libjava/libltdl/configure2006-05-12 13:35:21.0 +0200 gcj-4.1.1/libjava/libltdl/configure2006-05-12 11:07:15.0 +0200 +@@ -8380,7 +8380,7 @@ + ;; + + # This must be Linux ELF. +-linux*) ++linux*|gnu*) + version_type=linux + need_lib_prefix=no + need_version=no +@@ -12021,7 +12021,7 @@ + ;; + + # This must be Linux ELF. +-linux*) ++linux*|gnu*) + version_type=linux + need_lib_prefix=no + need_version=no +@@ -15097,7 +15097,7 @@ + ;; + + # This must be Linux ELF. +-linux*) ++linux*|gnu*) + version_type=linux + need_lib_prefix=no + need_version=no +@@ -17380,7 +17380,7 @@ + ;; + + # This must be Linux ELF. +-linux*) ++linux*|gnu*) + version_type=linux + need_lib_prefix=no + need_version=no +diff -ur gcj-4.1.1/libjava/configure.host gcj-4.1.1/libjava/configure.host +--- gcj-4.1.1/libjava/configure.host 2006-09-07 01:00:37.0 +0200 gcj-4.1.1/libjava/configure.host 2006-09-07 01:00:37.0 +0200 +@@ -326,7 +326,7 @@ + esac + + case "${host}" in +- *linux*|*-kfreebsd*-gnu) ++ *linux*|*-kf
Bug#437470: gcj-4.2: FTBFS on GNU/Hurd
Hi, Here is the patch to apply to the gcc-4.2 svn repository for fixing the build on GNU/Hurd. Samuel Index: debian/rules.patch === --- debian/rules.patch (révision 2339) +++ debian/rules.patch (copie de travail) @@ -166,6 +166,9 @@ ifeq ($(DEB_TARGET_ARCH_OS),netbsd) debian_patches += # netbsd-all-gcc netbsd-archs-gcc endif +ifeq ($(DEB_TARGET_ARCH_OS),hurd) + debian_patches += libjava-hurdfix +endif ifdef DEB_CROSS debian_patches += cross-include cross-fixes Index: debian/patches/hurd-changes.dpatch === --- debian/patches/hurd-changes.dpatch (révision 2339) +++ debian/patches/hurd-changes.dpatch (copie de travail) @@ -88,3 +88,14 @@ /* Defined in the automatically-generated underscore.c. */ extern int prepends_underscore; +--- boehm-gc/dyn_load.c.orig 2007-08-13 09:10:48.215678000 +0200 boehm-gc/dyn_load.c2007-08-13 09:11:09.743969000 +0200 +@@ -26,7 +26,7 @@ + * None of this is safe with dlclose and incremental collection. + * But then not much of anything is safe in the presence of dlclose. + */ +-#if (defined(__linux__) || defined(__GLIBC__)) && !defined(_GNU_SOURCE) ++#if (defined(__linux__) || defined(__GLIBC__) || defined(__GNU__)) && !defined(_GNU_SOURCE) + /* Can't test LINUX, since this must be define before other includes */ + # define _GNU_SOURCE + #endif Index: debian/patches/libjava-hurdfix.dpatch === --- debian/patches/libjava-hurdfix.dpatch (révision 0) +++ debian/patches/libjava-hurdfix.dpatch (révision 0) @@ -0,0 +1,136 @@ +#! /bin/sh -e + +# Description: java support for GNU/Hurd +# Author: Robert Millan, Petr Salinger, Samuel Thibault + +dir= +if [ $# -eq 3 -a "$2" = '-d' ]; then +pdir="-d $3" +dir="$3/" +elif [ $# -ne 1 ]; then +echo >&2 "`basename $0`: script expects -patch|-unpatch as argument" +exit 1 +fi +case "$1" in +-patch) +patch $pdir -f --no-backup-if-mismatch -p1 < $0 +#cd ${dir}gcc && autoconf +;; +-unpatch) +patch $pdir -f --no-backup-if-mismatch -R -p1 < $0 +#rm ${dir}gcc/configure +;; +*) +echo >&2 "`basename $0`: script expects -patch|-unpatch as argument" +exit 1 +esac +exit 0 + + +diff -ur gcj-4.1.1/libjava/libltdl/acinclude.m4 gcj-4.1.1/libjava/libltdl/acinclude.m4 +--- gcj-4.1.1/libjava/libltdl/acinclude.m4 2006-05-12 13:35:07.0 +0200 gcj-4.1.1/libjava/libltdl/acinclude.m4 2006-05-12 11:07:03.0 +0200 +@@ -1413,7 +1413,7 @@ + ;; + + # This must be Linux ELF. +-linux*) ++linux*|gnu*) + version_type=linux + need_lib_prefix=no + need_version=no +diff -ur gcj-4.1.1/libjava/libltdl/configure gcj-4.1.1/libjava/libltdl/configure +--- gcj-4.1.1/libjava/libltdl/configure2006-05-12 13:35:21.0 +0200 gcj-4.1.1/libjava/libltdl/configure2006-05-12 11:07:15.0 +0200 +@@ -8380,7 +8380,7 @@ + ;; + + # This must be Linux ELF. +-linux*) ++linux*|gnu*) + version_type=linux + need_lib_prefix=no + need_version=no +@@ -12021,7 +12021,7 @@ + ;; + + # This must be Linux ELF. +-linux*) ++linux*|gnu*) + version_type=linux + need_lib_prefix=no + need_version=no +@@ -15097,7 +15097,7 @@ + ;; + + # This must be Linux ELF. +-linux*) ++linux*|gnu*) + version_type=linux + need_lib_prefix=no + need_version=no +@@ -17380,7 +17380,7 @@ + ;; + + # This must be Linux ELF. +-linux*) ++linux*|gnu*) + version_type=linux + need_lib_prefix=no + need_version=no +diff -ur gcj-4.1.1/libjava/configure.host gcj-4.1.1/libjava/configure.host +--- gcj-4.1.1/libjava/configure.host 2006-09-07 01:00:37.0 +0200 gcj-4.1.1/libjava/configure.host 2006-09-07 01:00:37.0 +0200 +@@ -326,7 +326,7 @@ + esac + + case "${host}" in +- *linux*|*-kfreebsd*-gnu) ++ *linux*|*-kfreebsd*-gnu|*gnu*) + use_libgcj_bc=yes + ;; + *) +Index: gcc-4.1.1/libjava/java/lang/natPosixProcess.cc +=== +--- gcc-4.1.1/libjava/java/lang/natPosixProcess.cc (révision 127274) gcc-4.1.1/libjava/java/lang/natPosixProcess.cc (copie de travail) +@@ -110,7 +110,11 @@ + // sigwait() on SIGCHLD. The information passed is ignored as it + // will be recovered by the waitpid() call. + static void ++#ifdef SA_SIGINFO + sigchld_handler (int sig, siginfo_t *si, void *third) ++#else ++sigchld_handler (int sig) ++#endif + { + if (PosixProcess$ProcessManager::nativeData != NULL) + { +@@ -121,9 +125,11 @@ + if (pmi->old_sigaction.sa_handler != SIG_DFL + && pmi->old_sigaction.sa_handler != SIG_IGN) + { ++#ifdef SA_SIGINFO + if ((pmi->old_sigaction.sa_flags & SA_SIGINFO) != 0) + pmi->old_sigaction.sa_sigaction(sig, si, third); + else ++#endif +
Bug#437470: gcj-4.2: FTBFS on GNU/Hurd
Samuel Thibault, le Mon 13 Aug 2007 10:54:41 +0200, a écrit : > Samuel Thibault, le Mon 13 Aug 2007 10:51:30 +0200, a écrit : > > Here is the patch to apply to the gcc-4.2 svn repository for fixing > > the build on GNU/Hurd. > > Oops, I hadn't noticed that you had dropped libjava-maxhostnamelen. Here > is a patch against revision 2343. Ah, no, that's because you re-updated from the ubuntu branch, which now has the fix. Sorry for the spam, here is a third patch.. Samuel Index: debian/rules.patch === --- debian/rules.patch (révision 2343) +++ debian/rules.patch (copie de travail) @@ -165,6 +165,9 @@ ifeq ($(DEB_TARGET_ARCH_OS),netbsd) debian_patches += # netbsd-all-gcc netbsd-archs-gcc endif +ifeq ($(DEB_TARGET_ARCH_OS),hurd) + debian_patches += libjava-hurdfix +endif ifdef DEB_CROSS debian_patches += cross-include cross-fixes Index: debian/patches/hurd-changes.dpatch === --- debian/patches/hurd-changes.dpatch (révision 2343) +++ debian/patches/hurd-changes.dpatch (copie de travail) @@ -88,3 +88,14 @@ /* Defined in the automatically-generated underscore.c. */ extern int prepends_underscore; +--- boehm-gc/dyn_load.c.orig 2007-08-13 09:10:48.215678000 +0200 boehm-gc/dyn_load.c2007-08-13 09:11:09.743969000 +0200 +@@ -26,7 +26,7 @@ + * None of this is safe with dlclose and incremental collection. + * But then not much of anything is safe in the presence of dlclose. + */ +-#if (defined(__linux__) || defined(__GLIBC__)) && !defined(_GNU_SOURCE) ++#if (defined(__linux__) || defined(__GLIBC__) || defined(__GNU__)) && !defined(_GNU_SOURCE) + /* Can't test LINUX, since this must be define before other includes */ + # define _GNU_SOURCE + #endif Index: debian/patches/libjava-hurdfix.dpatch === --- debian/patches/libjava-hurdfix.dpatch (révision 0) +++ debian/patches/libjava-hurdfix.dpatch (révision 0) @@ -0,0 +1,136 @@ +#! /bin/sh -e + +# Description: java support for GNU/Hurd +# Author: Robert Millan, Petr Salinger, Samuel Thibault + +dir= +if [ $# -eq 3 -a "$2" = '-d' ]; then +pdir="-d $3" +dir="$3/" +elif [ $# -ne 1 ]; then +echo >&2 "`basename $0`: script expects -patch|-unpatch as argument" +exit 1 +fi +case "$1" in +-patch) +patch $pdir -f --no-backup-if-mismatch -p1 < $0 +#cd ${dir}gcc && autoconf +;; +-unpatch) +patch $pdir -f --no-backup-if-mismatch -R -p1 < $0 +#rm ${dir}gcc/configure +;; +*) +echo >&2 "`basename $0`: script expects -patch|-unpatch as argument" +exit 1 +esac +exit 0 + + +diff -ur gcj-4.1.1/libjava/libltdl/acinclude.m4 gcj-4.1.1/libjava/libltdl/acinclude.m4 +--- gcj-4.1.1/libjava/libltdl/acinclude.m4 2006-05-12 13:35:07.0 +0200 gcj-4.1.1/libjava/libltdl/acinclude.m4 2006-05-12 11:07:03.0 +0200 +@@ -1413,7 +1413,7 @@ + ;; + + # This must be Linux ELF. +-linux*) ++linux*|gnu*) + version_type=linux + need_lib_prefix=no + need_version=no +diff -ur gcj-4.1.1/libjava/libltdl/configure gcj-4.1.1/libjava/libltdl/configure +--- gcj-4.1.1/libjava/libltdl/configure2006-05-12 13:35:21.0 +0200 gcj-4.1.1/libjava/libltdl/configure2006-05-12 11:07:15.0 +0200 +@@ -8380,7 +8380,7 @@ + ;; + + # This must be Linux ELF. +-linux*) ++linux*|gnu*) + version_type=linux + need_lib_prefix=no + need_version=no +@@ -12021,7 +12021,7 @@ + ;; + + # This must be Linux ELF. +-linux*) ++linux*|gnu*) + version_type=linux + need_lib_prefix=no + need_version=no +@@ -15097,7 +15097,7 @@ + ;; + + # This must be Linux ELF. +-linux*) ++linux*|gnu*) + version_type=linux + need_lib_prefix=no + need_version=no +@@ -17380,7 +17380,7 @@ + ;; + + # This must be Linux ELF. +-linux*) ++linux*|gnu*) + version_type=linux + need_lib_prefix=no + need_version=no +diff -ur gcj-4.1.1/libjava/configure.host gcj-4.1.1/libjava/configure.host +--- gcj-4.1.1/libjava/configure.host 2006-09-07 01:00:37.0 +0200 gcj-4.1.1/libjava/configure.host 2006-09-07 01:00:37.0 +0200 +@@ -326,7 +326,7 @@ + esac + + case "${host}" in +- *linux*|*-kfreebsd*-gnu) ++ *linux*|*-kfreebsd*-gnu|*gnu*) + use_libgcj_bc=yes + ;; + *) +Index: gcc-4.1.1/libjava/java/lang/natPosixProcess.cc +=== +--- gcc-4.1.1/libjava/java/lang/natPosixProcess.cc (révision 127274) gcc-4.1.1/libjava/java/lang/natPosixProcess.cc (copie de travail) +@@ -110,7 +110,11 @@ + // sigwait() on SIGCHLD. The information passed is ignored as it + // will be recovered by the waitpid() call. + static void ++#ifdef SA_SIGINFO + sigchld_handler (int sig, siginfo_t *si, void *third) ++#else ++sigchld_handler (int sig) ++#endif + { + if (PosixPr
gcj-4.2_4.2.1-3_multi.changes is NEW
gappletviewer-4.2_4.2.1-3_i386.deb to pool/main/g/gcj-4.2/gappletviewer-4.2_4.2.1-3_i386.deb gappletviewer-4.2_4.2.1-3_powerpc.deb to pool/main/g/gcj-4.2/gappletviewer-4.2_4.2.1-3_powerpc.deb gappletviewer-4.2_4.2.1-3_sparc.deb to pool/main/g/gcj-4.2/gappletviewer-4.2_4.2.1-3_sparc.deb gcj-4.2-base_4.2.1-3_i386.deb to pool/main/g/gcj-4.2/gcj-4.2-base_4.2.1-3_i386.deb gcj-4.2-base_4.2.1-3_powerpc.deb to pool/main/g/gcj-4.2/gcj-4.2-base_4.2.1-3_powerpc.deb gcj-4.2-base_4.2.1-3_sparc.deb to pool/main/g/gcj-4.2/gcj-4.2-base_4.2.1-3_sparc.deb gcj-4.2_4.2.1-3.diff.gz to pool/main/g/gcj-4.2/gcj-4.2_4.2.1-3.diff.gz gcj-4.2_4.2.1-3.dsc to pool/main/g/gcj-4.2/gcj-4.2_4.2.1-3.dsc gcj-4.2_4.2.1-3_i386.deb to pool/main/g/gcj-4.2/gcj-4.2_4.2.1-3_i386.deb gcj-4.2_4.2.1-3_powerpc.deb to pool/main/g/gcj-4.2/gcj-4.2_4.2.1-3_powerpc.deb gcj-4.2_4.2.1-3_sparc.deb to pool/main/g/gcj-4.2/gcj-4.2_4.2.1-3_sparc.deb gij-4.2_4.2.1-3_i386.deb to pool/main/g/gcj-4.2/gij-4.2_4.2.1-3_i386.deb gij-4.2_4.2.1-3_powerpc.deb to pool/main/g/gcj-4.2/gij-4.2_4.2.1-3_powerpc.deb gij-4.2_4.2.1-3_sparc.deb to pool/main/g/gcj-4.2/gij-4.2_4.2.1-3_sparc.deb libgcj-doc_4.2.1-3_all.deb to pool/main/g/gcj-4.2/libgcj-doc_4.2.1-3_all.deb (new) libgcj8-1-awt_4.2.1-3_i386.deb optional libs AWT peer runtime libraries for use with gcj These are runtime libraries holding the AWT peer implementations for libgcj (currently the GTK based peer library is required, the QT bases library is not built). (new) libgcj8-1-awt_4.2.1-3_powerpc.deb optional libs AWT peer runtime libraries for use with gcj These are runtime libraries holding the AWT peer implementations for libgcj (currently the GTK based peer library is required, the QT bases library is not built). (new) libgcj8-1-awt_4.2.1-3_sparc.deb optional libs AWT peer runtime libraries for use with gcj These are runtime libraries holding the AWT peer implementations for libgcj (currently the GTK based peer library is required, the QT bases library is not built). (new) libgcj8-1_4.2.1-3_i386.deb optional libs Java runtime library for use with gcj This is the runtime that goes along with the gcj front end to gcc. libgcj includes parts of the Java Class Libraries, plus glue to connect the libraries to the compiler and the underlying OS. . To show file names and line numbers in stack traces, the packages libgcj8-dbg and binutils are required. (new) libgcj8-1_4.2.1-3_powerpc.deb optional libs Java runtime library for use with gcj This is the runtime that goes along with the gcj front end to gcc. libgcj includes parts of the Java Class Libraries, plus glue to connect the libraries to the compiler and the underlying OS. . To show file names and line numbers in stack traces, the packages libgcj8-dbg and binutils are required. (new) libgcj8-1_4.2.1-3_sparc.deb optional libs Java runtime library for use with gcj This is the runtime that goes along with the gcj front end to gcc. libgcj includes parts of the Java Class Libraries, plus glue to connect the libraries to the compiler and the underlying OS. . To show file names and line numbers in stack traces, the packages libgcj8-dbg and binutils are required. libgcj8-dbg_4.2.1-3_i386.deb to pool/main/g/gcj-4.2/libgcj8-dbg_4.2.1-3_i386.deb libgcj8-dbg_4.2.1-3_powerpc.deb to pool/main/g/gcj-4.2/libgcj8-dbg_4.2.1-3_powerpc.deb libgcj8-dbg_4.2.1-3_sparc.deb to pool/main/g/gcj-4.2/libgcj8-dbg_4.2.1-3_sparc.deb libgcj8-dev_4.2.1-3_i386.deb to pool/main/g/gcj-4.2/libgcj8-dev_4.2.1-3_i386.deb libgcj8-dev_4.2.1-3_powerpc.deb to pool/main/g/gcj-4.2/libgcj8-dev_4.2.1-3_powerpc.deb libgcj8-dev_4.2.1-3_sparc.deb to pool/main/g/gcj-4.2/libgcj8-dev_4.2.1-3_sparc.deb libgcj8-jar_4.2.1-3_all.deb to pool/main/g/gcj-4.2/libgcj8-jar_4.2.1-3_all.deb libgcj8-src_4.2.1-3_all.deb to pool/main/g/gcj-4.2/libgcj8-src_4.2.1-3_all.deb Changes: gcj-4.2 (4.2.1-3) unstable; urgency=low . * Upload as gcj-4.2. Override entries for your package: gappletviewer-4.2_4.2.1-3_i386.deb - optional utils gappletviewer-4.2_4.2.1-3_powerpc.deb - optional utils gappletviewer-4.2_4.2.1-3_sparc.deb - optional utils gcj-4.2-base_4.2.1-3_i386.deb - optional libs gcj-4.2-base_4.2.1-3_powerpc.deb - optional libs gcj-4.2-base_4.2.1-3_sparc.deb - optional libs gcj-4.2_4.2.1-3.dsc - source devel gcj-4.2_4.2.1-3_i386.deb - optional devel gcj-4.2_4.2.1-3_powerpc.deb - optional devel gcj-4.2_4.2.1-3_sparc.deb - optional devel gij-4.2_4.2.1-3_i386.deb - optional devel gij-4.2_4.2.1-3_powerpc.deb - optional devel gij-4.2_4.2.1-3_sparc.deb - optional devel libgcj-doc_4.2.1-3_all.deb - optional doc libgcj8-dbg_4.2.1-3_i386.deb - extra libdevel libgcj8-dbg_4.2.1-3_powerpc.deb - extra libdevel libgcj8-dbg_4.2.1-3_sparc.deb - extra libdevel libgcj8-dev_4.2.1-3_i386.deb - optional libdevel libgcj8-dev_4.2.1-3_powerpc.deb - optional libdevel libgcj8-dev_4.2.1-3_sparc.deb - optional libdevel libgcj8-jar_4.2.1-3_all.deb - optional libs libgcj8-src_4.2.1-3_all.deb - optio
Processing of gcj-4.2_4.2.1-3_multi.changes
gcj-4.2_4.2.1-3_multi.changes uploaded successfully to localhost along with the files: gij-4.2_4.2.1-3_i386.deb gcj-4.2_4.2.1-3_i386.deb libgcj8-1-awt_4.2.1-3_powerpc.deb libgcj8-dbg_4.2.1-3_i386.deb libgcj8-jar_4.2.1-3_all.deb gappletviewer-4.2_4.2.1-3_powerpc.deb libgcj8-dbg_4.2.1-3_powerpc.deb libgcj8-1_4.2.1-3_powerpc.deb libgcj8-1-awt_4.2.1-3_sparc.deb gcj-4.2-base_4.2.1-3_powerpc.deb gcj-4.2-base_4.2.1-3_i386.deb libgcj8-dev_4.2.1-3_i386.deb libgcj8-dbg_4.2.1-3_sparc.deb gappletviewer-4.2_4.2.1-3_i386.deb gcj-4.2_4.2.1-3.dsc gcj-4.2_4.2.1-3_sparc.deb gcj-4.2_4.2.1-3_powerpc.deb libgcj8-dev_4.2.1-3_powerpc.deb libgcj8-1_4.2.1-3_sparc.deb gcj-4.2_4.2.1-3.diff.gz libgcj8-src_4.2.1-3_all.deb libgcj8-dev_4.2.1-3_sparc.deb gij-4.2_4.2.1-3_sparc.deb gappletviewer-4.2_4.2.1-3_sparc.deb libgcj8-1-awt_4.2.1-3_i386.deb gij-4.2_4.2.1-3_powerpc.deb gcj-4.2-base_4.2.1-3_sparc.deb libgcj8-1_4.2.1-3_i386.deb libgcj-doc_4.2.1-3_all.deb Greetings, Your Debian queue daemon -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#416326: gcj 4.1 ICE when using `--coverage'
Hi, Le mardi 27 mars 2007 à 01:00 +0200, Thomas Girard a écrit : > When compiling the following snippet: > > class A {} > > with `gcj --coverage -c A.java' I get: > > /tmp/ccye0vd9.jar:0: internal compiler error: Segmentation fault > Please submit a full bug report, > with preprocessed source if appropriate. > See http://gcc.gnu.org/bugs.html> for instructions. > For Debian GNU/Linux specific bug reporting instructions, > see . A quick followup on this. The ICE is still there with: gcj (GCC) 4.1.3 20070718 (prerelease) (Debian 4.1.2-14) but not with: gcj (GCC) 4.3.0 20070720 (experimental) gcj (GCC) 4.3.0 20070811 (experimental) Regards, Thomas
Processing of gcc-4.2_4.2.1-3_multi.changes
gcc-4.2_4.2.1-3_multi.changes uploaded successfully to localhost along with the files: libstdc++6-4.2-dbg_4.2.1-3_i386.deb gfortran-4.2-multilib_4.2.1-3_powerpc.deb libobjc2_4.2.1-3_i386.deb libobjc2_4.2.1-3_sparc.deb lib64gfortran2_4.2.1-3_powerpc.deb libffi4-dev_4.2.1-3_i386.deb gfortran-4.2_4.2.1-3_i386.deb cpp-4.2_4.2.1-3_sparc.deb gcc-4.2-source_4.2.1-3_all.deb lib64mudflap0_4.2.1-3_powerpc.deb g++-4.2_4.2.1-3_sparc.deb gfortran-4.2_4.2.1-3_powerpc.deb gcc-4.2-locales_4.2.1-3_all.deb g++-4.2-multilib_4.2.1-3_sparc.deb gobjc++-4.2-multilib_4.2.1-3_i386.deb libstdc++6-4.2-pic_4.2.1-3_i386.deb lib64gomp1_4.2.1-3_sparc.deb lib64stdc++6_4.2.1-3_i386.deb libffi4_4.2.1-3_i386.deb fixincludes_4.2.1-3_sparc.deb gcc-4.2_4.2.1-3_sparc.deb cpp-4.2-doc_4.2.1-3_all.deb lib64mudflap0_4.2.1-3_i386.deb cpp-4.2_4.2.1-3_powerpc.deb gobjc++-4.2-multilib_4.2.1-3_sparc.deb lib64gomp1_4.2.1-3_i386.deb libgcc1_4.2.1-3_powerpc.deb libmudflap0-4.2-dev_4.2.1-3_sparc.deb treelang-4.2_4.2.1-3_i386.deb libgcc1_4.2.1-3_sparc.deb gobjc++-4.2-multilib_4.2.1-3_powerpc.deb treelang-4.2_4.2.1-3_sparc.deb lib64gcc1_4.2.1-3_powerpc.deb gobjc-4.2_4.2.1-3_i386.deb libgcc1_4.2.1-3_i386.deb libobjc2_4.2.1-3_powerpc.deb libstdc++6_4.2.1-3_powerpc.deb libmudflap0_4.2.1-3_powerpc.deb libstdc++6-4.2-pic_4.2.1-3_sparc.deb gfortran-4.2_4.2.1-3_sparc.deb fixincludes_4.2.1-3_i386.deb lib64objc2_4.2.1-3_powerpc.deb gobjc-4.2-multilib_4.2.1-3_sparc.deb gcc-4.2_4.2.1-3_powerpc.deb libgfortran2_4.2.1-3_i386.deb libstdc++6_4.2.1-3_i386.deb libstdc++6-4.2-pic_4.2.1-3_powerpc.deb g++-4.2-multilib_4.2.1-3_i386.deb gcc-4.2-base_4.2.1-3_sparc.deb lib64stdc++6-4.2-dbg_4.2.1-3_sparc.deb gobjc-4.2_4.2.1-3_sparc.deb libgomp1_4.2.1-3_i386.deb gcc-4.2-base_4.2.1-3_powerpc.deb libmudflap0-4.2-dev_4.2.1-3_powerpc.deb treelang-4.2_4.2.1-3_powerpc.deb gobjc++-4.2_4.2.1-3_powerpc.deb g++-4.2_4.2.1-3_powerpc.deb protoize_4.2.1-3_i386.deb gobjc-4.2-multilib_4.2.1-3_i386.deb gobjc-4.2-multilib_4.2.1-3_powerpc.deb libstdc++6-4.2-dbg_4.2.1-3_sparc.deb libstdc++6-4.2-dev_4.2.1-3_sparc.deb libstdc++6-4.2-dbg_4.2.1-3_powerpc.deb lib64stdc++6_4.2.1-3_powerpc.deb gobjc++-4.2_4.2.1-3_i386.deb libffi4-dev_4.2.1-3_sparc.deb cpp-4.2_4.2.1-3_i386.deb gfortran-4.2-multilib_4.2.1-3_sparc.deb libmudflap0-4.2-dev_4.2.1-3_i386.deb fixincludes_4.2.1-3_powerpc.deb gobjc++-4.2_4.2.1-3_sparc.deb libstdc++6-4.2-dev_4.2.1-3_i386.deb libgfortran2_4.2.1-3_sparc.deb lib64stdc++6-4.2-dbg_4.2.1-3_powerpc.deb gcc-4.2-doc_4.2.1-3_all.deb gcc-4.2-multilib_4.2.1-3_powerpc.deb gcc-4.2-multilib_4.2.1-3_sparc.deb libgomp1_4.2.1-3_powerpc.deb gcc-4.2-base_4.2.1-3_i386.deb libmudflap0_4.2.1-3_i386.deb lib64gfortran2_4.2.1-3_sparc.deb gfortran-4.2-doc_4.2.1-3_all.deb libstdc++6_4.2.1-3_sparc.deb lib64ffi4_4.2.1-3_i386.deb lib64ffi4_4.2.1-3_powerpc.deb lib64gomp1_4.2.1-3_powerpc.deb libgfortran2_4.2.1-3_powerpc.deb gcc-4.2_4.2.1-3.dsc protoize_4.2.1-3_sparc.deb lib64ffi4_4.2.1-3_sparc.deb libffi4_4.2.1-3_sparc.deb gcc-4.2-multilib_4.2.1-3_i386.deb lib64objc2_4.2.1-3_i386.deb lib64stdc++6-4.2-dbg_4.2.1-3_i386.deb lib64objc2_4.2.1-3_sparc.deb gcc-4.2_4.2.1-3.diff.gz gobjc-4.2_4.2.1-3_powerpc.deb libstdc++6-4.2-doc_4.2.1-3_all.deb g++-4.2-multilib_4.2.1-3_powerpc.deb lib64mudflap0_4.2.1-3_sparc.deb g++-4.2_4.2.1-3_i386.deb lib64gcc1_4.2.1-3_sparc.deb libmudflap0_4.2.1-3_sparc.deb lib64gfortran2_4.2.1-3_i386.deb libstdc++6-4.2-dev_4.2.1-3_powerpc.deb gfortran-4.2-multilib_4.2.1-3_i386.deb libffi4-dev_4.2.1-3_powerpc.deb lib64gcc1_4.2.1-3_i386.deb libgomp1_4.2.1-3_sparc.deb protoize_4.2.1-3_powerpc.deb libffi4_4.2.1-3_powerpc.deb lib64stdc++6_4.2.1-3_sparc.deb gcc-4.2_4.2.1-3_i386.deb Greetings, Your Debian queue daemon -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
gcc-4.2_4.2.1-3_multi.changes ACCEPTED
Accepted: cpp-4.2-doc_4.2.1-3_all.deb to pool/main/g/gcc-4.2/cpp-4.2-doc_4.2.1-3_all.deb cpp-4.2_4.2.1-3_i386.deb to pool/main/g/gcc-4.2/cpp-4.2_4.2.1-3_i386.deb cpp-4.2_4.2.1-3_powerpc.deb to pool/main/g/gcc-4.2/cpp-4.2_4.2.1-3_powerpc.deb cpp-4.2_4.2.1-3_sparc.deb to pool/main/g/gcc-4.2/cpp-4.2_4.2.1-3_sparc.deb fixincludes_4.2.1-3_i386.deb to pool/main/g/gcc-4.2/fixincludes_4.2.1-3_i386.deb fixincludes_4.2.1-3_powerpc.deb to pool/main/g/gcc-4.2/fixincludes_4.2.1-3_powerpc.deb fixincludes_4.2.1-3_sparc.deb to pool/main/g/gcc-4.2/fixincludes_4.2.1-3_sparc.deb g++-4.2-multilib_4.2.1-3_i386.deb to pool/main/g/gcc-4.2/g++-4.2-multilib_4.2.1-3_i386.deb g++-4.2-multilib_4.2.1-3_powerpc.deb to pool/main/g/gcc-4.2/g++-4.2-multilib_4.2.1-3_powerpc.deb g++-4.2-multilib_4.2.1-3_sparc.deb to pool/main/g/gcc-4.2/g++-4.2-multilib_4.2.1-3_sparc.deb g++-4.2_4.2.1-3_i386.deb to pool/main/g/gcc-4.2/g++-4.2_4.2.1-3_i386.deb g++-4.2_4.2.1-3_powerpc.deb to pool/main/g/gcc-4.2/g++-4.2_4.2.1-3_powerpc.deb g++-4.2_4.2.1-3_sparc.deb to pool/main/g/gcc-4.2/g++-4.2_4.2.1-3_sparc.deb gcc-4.2-base_4.2.1-3_i386.deb to pool/main/g/gcc-4.2/gcc-4.2-base_4.2.1-3_i386.deb gcc-4.2-base_4.2.1-3_powerpc.deb to pool/main/g/gcc-4.2/gcc-4.2-base_4.2.1-3_powerpc.deb gcc-4.2-base_4.2.1-3_sparc.deb to pool/main/g/gcc-4.2/gcc-4.2-base_4.2.1-3_sparc.deb gcc-4.2-doc_4.2.1-3_all.deb to pool/main/g/gcc-4.2/gcc-4.2-doc_4.2.1-3_all.deb gcc-4.2-locales_4.2.1-3_all.deb to pool/main/g/gcc-4.2/gcc-4.2-locales_4.2.1-3_all.deb gcc-4.2-multilib_4.2.1-3_i386.deb to pool/main/g/gcc-4.2/gcc-4.2-multilib_4.2.1-3_i386.deb gcc-4.2-multilib_4.2.1-3_powerpc.deb to pool/main/g/gcc-4.2/gcc-4.2-multilib_4.2.1-3_powerpc.deb gcc-4.2-multilib_4.2.1-3_sparc.deb to pool/main/g/gcc-4.2/gcc-4.2-multilib_4.2.1-3_sparc.deb gcc-4.2-source_4.2.1-3_all.deb to pool/main/g/gcc-4.2/gcc-4.2-source_4.2.1-3_all.deb gcc-4.2_4.2.1-3.diff.gz to pool/main/g/gcc-4.2/gcc-4.2_4.2.1-3.diff.gz gcc-4.2_4.2.1-3.dsc to pool/main/g/gcc-4.2/gcc-4.2_4.2.1-3.dsc gcc-4.2_4.2.1-3_i386.deb to pool/main/g/gcc-4.2/gcc-4.2_4.2.1-3_i386.deb gcc-4.2_4.2.1-3_powerpc.deb to pool/main/g/gcc-4.2/gcc-4.2_4.2.1-3_powerpc.deb gcc-4.2_4.2.1-3_sparc.deb to pool/main/g/gcc-4.2/gcc-4.2_4.2.1-3_sparc.deb gfortran-4.2-doc_4.2.1-3_all.deb to pool/main/g/gcc-4.2/gfortran-4.2-doc_4.2.1-3_all.deb gfortran-4.2-multilib_4.2.1-3_i386.deb to pool/main/g/gcc-4.2/gfortran-4.2-multilib_4.2.1-3_i386.deb gfortran-4.2-multilib_4.2.1-3_powerpc.deb to pool/main/g/gcc-4.2/gfortran-4.2-multilib_4.2.1-3_powerpc.deb gfortran-4.2-multilib_4.2.1-3_sparc.deb to pool/main/g/gcc-4.2/gfortran-4.2-multilib_4.2.1-3_sparc.deb gfortran-4.2_4.2.1-3_i386.deb to pool/main/g/gcc-4.2/gfortran-4.2_4.2.1-3_i386.deb gfortran-4.2_4.2.1-3_powerpc.deb to pool/main/g/gcc-4.2/gfortran-4.2_4.2.1-3_powerpc.deb gfortran-4.2_4.2.1-3_sparc.deb to pool/main/g/gcc-4.2/gfortran-4.2_4.2.1-3_sparc.deb gobjc++-4.2-multilib_4.2.1-3_i386.deb to pool/main/g/gcc-4.2/gobjc++-4.2-multilib_4.2.1-3_i386.deb gobjc++-4.2-multilib_4.2.1-3_powerpc.deb to pool/main/g/gcc-4.2/gobjc++-4.2-multilib_4.2.1-3_powerpc.deb gobjc++-4.2-multilib_4.2.1-3_sparc.deb to pool/main/g/gcc-4.2/gobjc++-4.2-multilib_4.2.1-3_sparc.deb gobjc++-4.2_4.2.1-3_i386.deb to pool/main/g/gcc-4.2/gobjc++-4.2_4.2.1-3_i386.deb gobjc++-4.2_4.2.1-3_powerpc.deb to pool/main/g/gcc-4.2/gobjc++-4.2_4.2.1-3_powerpc.deb gobjc++-4.2_4.2.1-3_sparc.deb to pool/main/g/gcc-4.2/gobjc++-4.2_4.2.1-3_sparc.deb gobjc-4.2-multilib_4.2.1-3_i386.deb to pool/main/g/gcc-4.2/gobjc-4.2-multilib_4.2.1-3_i386.deb gobjc-4.2-multilib_4.2.1-3_powerpc.deb to pool/main/g/gcc-4.2/gobjc-4.2-multilib_4.2.1-3_powerpc.deb gobjc-4.2-multilib_4.2.1-3_sparc.deb to pool/main/g/gcc-4.2/gobjc-4.2-multilib_4.2.1-3_sparc.deb gobjc-4.2_4.2.1-3_i386.deb to pool/main/g/gcc-4.2/gobjc-4.2_4.2.1-3_i386.deb gobjc-4.2_4.2.1-3_powerpc.deb to pool/main/g/gcc-4.2/gobjc-4.2_4.2.1-3_powerpc.deb gobjc-4.2_4.2.1-3_sparc.deb to pool/main/g/gcc-4.2/gobjc-4.2_4.2.1-3_sparc.deb lib64ffi4_4.2.1-3_i386.deb to pool/main/g/gcc-4.2/lib64ffi4_4.2.1-3_i386.deb lib64ffi4_4.2.1-3_powerpc.deb to pool/main/g/gcc-4.2/lib64ffi4_4.2.1-3_powerpc.deb lib64ffi4_4.2.1-3_sparc.deb to pool/main/g/gcc-4.2/lib64ffi4_4.2.1-3_sparc.deb lib64gcc1_4.2.1-3_i386.deb to pool/main/g/gcc-4.2/lib64gcc1_4.2.1-3_i386.deb lib64gcc1_4.2.1-3_powerpc.deb to pool/main/g/gcc-4.2/lib64gcc1_4.2.1-3_powerpc.deb lib64gcc1_4.2.1-3_sparc.deb to pool/main/g/gcc-4.2/lib64gcc1_4.2.1-3_sparc.deb lib64gfortran2_4.2.1-3_i386.deb to pool/main/g/gcc-4.2/lib64gfortran2_4.2.1-3_i386.deb lib64gfortran2_4.2.1-3_powerpc.deb to pool/main/g/gcc-4.2/lib64gfortran2_4.2.1-3_powerpc.deb lib64gfortran2_4.2.1-3_sparc.deb to pool/main/g/gcc-4.2/lib64gfortran2_4.2.1-3_sparc.deb lib64gomp1_4.2.1-3_i386.deb to pool/main/g/gcc-4.2/lib64gomp1_4.2.1-3_i386.deb lib64gomp1_4.2.1-3_powerpc.deb to pool/main/g/gcc-4.2/lib64gomp1_4.2.1-3_powerpc.deb lib
Bug#437470: marked as done (gcj-4.2: FTBFS on GNU/Hurd)
Your message dated Mon, 13 Aug 2007 21:32:15 + with message-id <[EMAIL PROTECTED]> and subject line Bug#437470: fixed in gcc-4.2 4.2.1-3 has caused the attached Bug report to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) --- Begin Message --- Package: gcj-4.1 Version: 4.1.1-20 Severity: important Tags: patch Hi, gcj-4.1 currently FTBFS on hurd-i386. Here are patches: - libjava-hurdfix.dpatch, to be put in debian/patches/ - gcj-4.1.diff, which enables java for hurd-i386 and the above patch. Samuel -- System Information: Debian Release: 4.0 APT prefers testing APT policy: (990, 'testing'), (500, 'unstable'), (500, 'stable'), (1, 'experimental') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/bash Kernel: Linux 2.6.19 Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15) Versions of packages gcj-4.1 depends on: ii gcc-4.1 4.1.1-21 The GNU C compiler ii gcj-4.1-base4.1.1-20 The GNU Compiler Collection (gcj b ii gij-4.1 4.1.1-20 The GNU Java bytecode interpreter ii java-common 0.25 Base of all Java packages ii libc6 2.3.6.ds1-8 GNU C Library: Shared libraries ii libc6-dev 2.3.6.ds1-8 GNU C Library: Development Librari ii libgcc1 1:4.2-20060709-1 GCC support library ii libgcj7-0 4.1.1-20 Java runtime library for use with ii libgcj7-dev 4.1.1-20 Java development headers and stati ii libgcj7-jar 4.1.1-20 Java runtime library for use with ii zlib1g 1:1.2.3-13 compression library - runtime Versions of packages gcj-4.1 recommends: ii fastjar 1:4.1.1-21 Jar creation utility -- no debconf information #! /bin/sh -e # Description: java support for GNU/Hurd # Author: Robert Millan, Petr Salinger, Samuel Thibault dir= if [ $# -eq 3 -a "$2" = '-d' ]; then pdir="-d $3" dir="$3/" elif [ $# -ne 1 ]; then echo >&2 "`basename $0`: script expects -patch|-unpatch as argument" exit 1 fi case "$1" in -patch) patch $pdir -f --no-backup-if-mismatch -p1 < $0 #cd ${dir}gcc && autoconf ;; -unpatch) patch $pdir -f --no-backup-if-mismatch -R -p1 < $0 #rm ${dir}gcc/configure ;; *) echo >&2 "`basename $0`: script expects -patch|-unpatch as argument" exit 1 esac exit 0 --- gcc-4.1.1/libjava/java/io/natFilePosix.cc.orig 2003-09-12 03:08:18.0 +0200 +++ gcc-4.1.1/libjava/java/io/natFilePosix.cc 2007-01-25 23:23:42.0 +0100 @@ -25,6 +25,7 @@ #endif #include #include +#include #include #include @@ -379,6 +380,10 @@ void java::io::File::init_native () { +#ifdef MAXPATHLEN maxPathLen = MAXPATHLEN; +#else + maxPathLen = INT_MAX; +#endif caseSensitive = true; } --- gcc-4.1.1/libjava/java/net/natVMInetAddressPosix.cc.orig2007-01-26 15:27:19.0 + +++ gcc-4.1.1/libjava/java/net/natVMInetAddressPosix.cc 2007-01-26 15:45:53.0 + @@ -47,10 +47,25 @@ { char *chars; #ifdef HAVE_GETHOSTNAME +#ifdef MAXHOSTNAMELEN char buffer[MAXHOSTNAMELEN]; if (gethostname (buffer, MAXHOSTNAMELEN)) return NULL; chars = buffer; +#else + size_t size = 256; + while (1) { +char buffer[size]; +if (!gethostname (buffer, size-1)) + { + buffer[size-1] = 0; + return JvNewStringUTF (buffer); + } +else if (errno != ENAMETOOLONG) + return NULL; +size *= 2; + } +#endif #elif HAVE_UNAME struct utsname stuff; if (uname (&stuff) != 0) diff -ur gcj-4.1.1/libjava/configure gcj-4.1.1/libjava/configure --- gcj-4.1.1/libjava/configure 2006-05-12 13:35:06.0 +0200 +++ gcj-4.1.1/libjava/configure 2006-05-12 11:00:31.0 +0200 @@ -4351,7 +4341,7 @@ ;; # This must be Linux ELF. -linux*) +linux*|gnu*) version_type=linux need_lib_prefix=no need_version=no diff -ur gcj-4.1.1/libjava/libltdl/acinclude.m4 gcj-4.1.1/libjava/libltdl/acinclude.m4 --- gcj-4.1.1/libjava/libltdl/acinclude.m4 2006-05-12 13:35:07.0 +0200 +++ gcj-4.1.1/libjava/libltdl/acinclude.m4 2006-05-12 11:07:03.0 +0200 @@ -1413,7 +1413,7 @@ ;; # This must be Linux ELF. -linux*) +linux*|gnu*) version_type=linux need_lib_prefix=no need_version=no diff -ur gcj-4.1.1/libjava/libltdl/configure gcj-4.1.1/libjava/libltdl/configure --- gcj-4.1.1/libjava/libltdl/configure 2006-05-12 13:35:21.0 +0200 +++ gcj-4.1.1
Results for 4.1.3 20070812 (prerelease) (Debian 4.1.2-15) testsuite on i486-pc-linux-gnu
LAST_UPDATED: Sun Aug 12 15:51:06 UTC 2007 (revision 127373) Target: i486-linux-gnu gcc version 4.1.3 20070812 (prerelease) (Debian 4.1.2-15) Native configuration is i486-pc-linux-gnu === g++ tests === Running target unix XPASS: g++.dg/tree-ssa/pr14814.C scan-tree-dump-times &this 0 XPASS: g++.old-deja/g++.other/init5.C execution test === g++ Summary for unix === # of expected passes12476 # of unexpected successes 2 # of expected failures 66 # of unsupported tests 69 Running target unix/-fstack-protector XPASS: g++.dg/tree-ssa/pr14814.C scan-tree-dump-times &this 0 XPASS: g++.old-deja/g++.other/init5.C execution test === g++ Summary for unix/-fstack-protector === # of expected passes12476 # of unexpected successes 2 # of expected failures 66 # of unsupported tests 69 Running target unix/-m64 XPASS: g++.dg/tree-ssa/pr14814.C scan-tree-dump-times &this 0 XPASS: g++.old-deja/g++.other/init5.C execution test === g++ Summary for unix/-m64 === # of expected passes12391 # of unexpected successes 2 # of expected failures 66 # of unsupported tests 98 === g++ Summary === # of expected passes37343 # of unexpected successes 6 # of expected failures 198 # of unsupported tests 236 /scratch/packages/gcc/4.1/gcc-4.1-4.1.2/build/gcc/testsuite/g++/../../g++ version 4.1.3 20070812 (prerelease) (Debian 4.1.2-15) === gcc tests === Running target unix ERROR: gcc.dg/cpp/dir-only-3.c: unknown dg option: dg-message 6 {dir-only-3a.h UNRESOLVED: gcc.dg/cpp/dir-only-3.c: unknown dg option: dg-message 6 {dir-only-3a.h === gcc Summary for unix === # of expected passes39233 # of expected failures 101 # of unresolved testcases 1 # of untested testcases 28 # of unsupported tests 247 Running target unix/-fstack-protector ERROR: gcc.dg/cpp/dir-only-3.c: unknown dg option: dg-message 6 {dir-only-3a.h UNRESOLVED: gcc.dg/cpp/dir-only-3.c: unknown dg option: dg-message 6 {dir-only-3a.h === gcc Summary for unix/-fstack-protector === # of expected passes39233 # of expected failures 101 # of unresolved testcases 1 # of untested testcases 28 # of unsupported tests 247 Running target unix/-m64 ERROR: gcc.dg/cpp/dir-only-3.c: unknown dg option: dg-message 6 {dir-only-3a.h UNRESOLVED: gcc.dg/cpp/dir-only-3.c: unknown dg option: dg-message 6 {dir-only-3a.h FAIL: gcc.misc-tests/linkage.c link FAIL: gcc.target/i386/asm-1.c (test for errors, line 4) FAIL: gcc.target/i386/compress-float-387-pic.c (test for excess errors) ERROR: gcc.target/i386/compress-float-387-pic.c: error executing dg-final: couldn't open "compress-float-387-pic.s": no such file or directory UNRESOLVED: gcc.target/i386/compress-float-387-pic.c: error executing dg-final: couldn't open "compress-float-387-pic.s": no such file or directory FAIL: gcc.target/i386/compress-float-387.c (test for excess errors) ERROR: gcc.target/i386/compress-float-387.c: error executing dg-final: couldn't open "compress-float-387.s": no such file or directory UNRESOLVED: gcc.target/i386/compress-float-387.c: error executing dg-final: couldn't open "compress-float-387.s": no such file or directory FAIL: gcc.target/i386/compress-float-sse-pic.c (test for excess errors) ERROR: gcc.target/i386/compress-float-sse-pic.c: error executing dg-final: couldn't open "compress-float-sse-pic.s": no such file or directory UNRESOLVED: gcc.target/i386/compress-float-sse-pic.c: error executing dg-final: couldn't open "compress-float-sse-pic.s": no such file or directory FAIL: gcc.target/i386/compress-float-sse.c (test for excess errors) ERROR: gcc.target/i386/compress-float-sse.c: error executing dg-final: couldn't open "compress-float-sse.s": no such file or directory UNRESOLVED: gcc.target/i386/compress-float-sse.c: error executing dg-final: couldn't open "compress-float-sse.s": no such file or directory === gcc Summary for unix/-m64 === # of expected passes39087 # of unexpected failures6 # of expected failures 100 # of unresolved testcases 5 # of untested testcases 28 # of unsupported tests 357 === gcc Summary === # of expected passes117553 # of unexpected failures6 # of expected failures 302 # of unresolved testcases 7 # of untested testcases 84 # of unsupported tests 851 /scratch/packages/gcc/4.1/gcc-4.1-4.1.2/build/gcc/xgcc version 4.1.3 20070812 (prerelease) (Debian 4.1.2-15) === gfortran tests === Running target unix XPASS: gfortran.dg/csqrt_2.f -O0 execution test XPASS: gfortran.dg/csqrt_2.f -O1 execution test XPASS: gfortran.dg/csqrt_2.f -O2 execution test XPASS: g
Results for 4.1.3 20070812 (prerelease) (Debian 4.1.2-15) testsuite on powerpc-unknown-linux-gnu
LAST_UPDATED: Sun Aug 12 15:51:06 UTC 2007 (revision 127373) Target: powerpc-linux-gnu gcc version 4.1.3 20070812 (prerelease) (Debian 4.1.2-15) Native configuration is powerpc-unknown-linux-gnu === g++ tests === Running target unix XPASS: g++.dg/tree-ssa/pr14814.C scan-tree-dump-times &this 0 === g++ Summary for unix === # of expected passes12498 # of unexpected successes 1 # of expected failures 66 # of unsupported tests 94 Running target unix/-fstack-protector XPASS: g++.dg/tree-ssa/pr14814.C scan-tree-dump-times &this 0 === g++ Summary for unix/-fstack-protector === # of expected passes12498 # of unexpected successes 1 # of expected failures 66 # of unsupported tests 94 Running target unix/-m64 XPASS: g++.dg/tree-ssa/pr14814.C scan-tree-dump-times &this 0 === g++ Summary for unix/-m64 === # of expected passes12460 # of unexpected successes 1 # of expected failures 66 # of unsupported tests 97 === g++ Summary === # of expected passes37456 # of unexpected successes 3 # of expected failures 198 # of unsupported tests 285 /home/doko/gcc/4.1/gcc-4.1-4.1.2/build/gcc/testsuite/g++/../../g++ version 4.1.3 20070812 (prerelease) (Debian 4.1.2-15) === gcc tests === Running target unix ERROR: gcc.dg/cpp/dir-only-3.c: unknown dg option: dg-message 6 {dir-only-3a.h UNRESOLVED: gcc.dg/cpp/dir-only-3.c: unknown dg option: dg-message 6 {dir-only-3a.h FAIL: gcc.dg/20020103-1.c scan-assembler-not LC[0-9] FAIL: gcc.target/powerpc/pr18096-1.c stack frame too large (test for warnings, line 11) FAIL: gcc.target/powerpc/pr18096-1.c (test for excess errors) === gcc Summary for unix === # of expected passes39447 # of unexpected failures3 # of expected failures 99 # of unresolved testcases 1 # of untested testcases 28 # of unsupported tests 318 Running target unix/-fstack-protector ERROR: gcc.dg/cpp/dir-only-3.c: unknown dg option: dg-message 6 {dir-only-3a.h UNRESOLVED: gcc.dg/cpp/dir-only-3.c: unknown dg option: dg-message 6 {dir-only-3a.h FAIL: gcc.dg/20020103-1.c scan-assembler-not LC[0-9] FAIL: gcc.target/powerpc/pr18096-1.c (internal compiler error) FAIL: gcc.target/powerpc/pr18096-1.c stack frame too large (test for warnings, line 11) FAIL: gcc.target/powerpc/pr18096-1.c (test for excess errors) === gcc Summary for unix/-fstack-protector === # of expected passes39447 # of unexpected failures4 # of expected failures 99 # of unresolved testcases 1 # of untested testcases 28 # of unsupported tests 318 Running target unix/-m64 ERROR: gcc.dg/cpp/dir-only-3.c: unknown dg option: dg-message 6 {dir-only-3a.h UNRESOLVED: gcc.dg/cpp/dir-only-3.c: unknown dg option: dg-message 6 {dir-only-3a.h FAIL: gcc.dg/20020103-1.c scan-assembler-not LC[0-9] FAIL: gcc.dg/20020919-1.c (test for errors, line 106) FAIL: gcc.dg/20020919-1.c (test for errors, line 124) FAIL: gcc.dg/20020919-1.c (test for errors, line 133) FAIL: gcc.dg/20020919-1.c (test for errors, line 160) FAIL: gcc.dg/20020919-1.c (test for errors, line 178) FAIL: gcc.dg/20020919-1.c (test for errors, line 232) XPASS: gcc.dg/tree-ssa/sra-2.c scan-tree-dump-times link_error 0 FAIL: gcc.target/powerpc/20050603-3.c scan-assembler-not inm FAIL: gcc.target/powerpc/980827-1.c (test for excess errors) UNRESOLVED: gcc.target/powerpc/980827-1.c compilation failed to produce executable FAIL: gcc.target/powerpc/altivec-14.c (test for warnings, line 7) FAIL: gcc.target/powerpc/altivec-14.c (test for warnings, line 8) FAIL: gcc.target/powerpc/altivec-14.c (test for warnings, line 9) FAIL: gcc.target/powerpc/altivec-14.c (test for warnings, line 10) FAIL: gcc.target/powerpc/altivec-14.c (test for warnings, line 11) FAIL: gcc.target/powerpc/altivec-14.c (test for warnings, line 12) FAIL: gcc.target/powerpc/altivec-14.c (test for warnings, line 14) FAIL: gcc.target/powerpc/altivec-14.c (test for warnings, line 15) FAIL: gcc.target/powerpc/altivec-14.c (test for warnings, line 16) FAIL: gcc.target/powerpc/altivec-14.c (test for warnings, line 20) FAIL: gcc.target/powerpc/altivec-14.c (test for warnings, line 21) FAIL: gcc.target/powerpc/altivec-14.c (test for warnings, line 22) FAIL: gcc.target/powerpc/altivec-14.c (test for excess errors) FAIL: gcc.target/powerpc/altivec-22.c scan-assembler-not mfcr FAIL: gcc.target/powerpc/ppc-sdata-1.c (test for excess errors) ERROR: gcc.target/powerpc/ppc-sdata-1.c: error executing dg-final: couldn't open "ppc-sdata-1.s": no such file or directory UNRESOLVED: gcc.target/powerpc/ppc-sdata-1.c: error executing dg-final: couldn't open "ppc-sdata-1.s": no such file or directory FAIL: gcc.target/powerpc/ppc-sdata-2.c (test for excess errors) ERRO
Results for 4.2.1 (Debian 4.2.1-2) testsuite on arm-unknown-linux-gnu
LAST_UPDATED: Sat Aug 4 23:29:08 UTC 2007 (revision 127217) Native configuration is arm-unknown-linux-gnu === libffi tests === Running target unix FAIL: libffi.call/cls_1_1byte.c -O0 -W -Wall execution test FAIL: libffi.call/cls_5_1_byte.c -O0 -W -Wall output pattern test, is 127 120 1 3 4 3 4 28 64 168: 130 124 29 67 172 FAIL: libffi.call/cls_5byte.c -O0 -W -Wall output pattern test, is 127 120 1 128 9 180: 255 129 181 FAIL: libffi.call/cls_6_1_byte.c -O0 -W -Wall output pattern test, is 127 120 1 3 4 5 9 3 4 5 160 143: 136 123 5 8 164 148 FAIL: libffi.call/cls_6byte.c -O0 -W -Wall output pattern test, is 127 120 1 128 128 32521 176 191: 255 32641 177 63 FAIL: libffi.call/cls_7_1_byte.c -O0 -W -Wall output pattern test, is 127 120 1 3 4 5 6 128 9 3 4 5 6 128: 255 129 4 7 9 11 134 FAIL: libffi.call/cls_align_sint16.c -O0 -W -Wall output pattern test, is 12 4951 127 104 13 164: 116 4964 35 FAIL: libffi.call/cls_align_uint16.c -O0 -W -Wall output pattern test, is 12 4951 127 104 13 164: 116 4964 35 FAIL: libffi.call/struct3.c -O0 -W -Wall execution test FAIL: libffi.call/cls_1_1byte.c -O2 output pattern test, is 48 12: 60 FAIL: libffi.call/cls_5_1_byte.c -O2 output pattern test, is 127 120 1 3 4 3 4 0 0 152: 130 124 1 3 156 FAIL: libffi.call/cls_5byte.c -O2 output pattern test, is 127 120 1 128 9 160: 255 129 161 FAIL: libffi.call/cls_6_1_byte.c -O2 output pattern test, is 127 120 1 3 4 5 9 3 4 5 144 47: 136 123 5 8 148 52 FAIL: libffi.call/cls_6byte.c -O2 output pattern test, is 127 120 1 128 128 32521 156 159: 255 32641 157 31 FAIL: libffi.call/cls_7_1_byte.c -O2 output pattern test, is 127 120 1 3 4 5 6 128 9 3 4 5 6 148: 255 129 4 7 9 11 154 FAIL: libffi.call/cls_align_sint16.c -O2 output pattern test, is 12 4951 127 104 13 148: 116 4964 19 FAIL: libffi.call/cls_align_uint16.c -O2 output pattern test, is 12 4951 127 104 13 148: 116 4964 19 FAIL: libffi.call/struct3.c -O2 execution test FAIL: libffi.call/cls_1_1byte.c -O3 output pattern test, is 48 12: 60 FAIL: libffi.call/cls_5_1_byte.c -O3 output pattern test, is 127 120 1 3 4 3 4 0 0 152: 130 124 1 3 156 FAIL: libffi.call/cls_5byte.c -O3 output pattern test, is 127 120 1 128 9 160: 255 129 161 FAIL: libffi.call/cls_6_1_byte.c -O3 output pattern test, is 127 120 1 3 4 5 9 3 4 5 144 31: 136 123 5 8 148 36 FAIL: libffi.call/cls_6byte.c -O3 output pattern test, is 127 120 1 128 128 32521 156 255: 255 32641 157 127 FAIL: libffi.call/cls_7_1_byte.c -O3 output pattern test, is 127 120 1 3 4 5 6 128 9 3 4 5 6 207: 255 129 4 7 9 11 213 FAIL: libffi.call/cls_align_sint16.c -O3 output pattern test, is 12 4951 127 104 13 148: 116 4964 19 FAIL: libffi.call/cls_align_uint16.c -O3 output pattern test, is 12 4951 127 104 13 148: 116 4964 19 FAIL: libffi.call/struct3.c -O3 execution test FAIL: libffi.call/cls_1_1byte.c -Os execution test FAIL: libffi.call/cls_5_1_byte.c -Os output pattern test, is 127 120 1 3 4 3 4 0 0 156: 130 124 1 3 160 FAIL: libffi.call/cls_5byte.c -Os output pattern test, is 127 120 1 128 9 164: 255 129 165 FAIL: libffi.call/cls_6_1_byte.c -Os output pattern test, is 127 120 1 3 4 5 9 3 4 5 148 79: 136 123 5 8 152 84 FAIL: libffi.call/cls_6byte.c -Os output pattern test, is 127 120 1 128 128 32521 160 79: 255 32641 161 207 FAIL: libffi.call/cls_7_1_byte.c -Os output pattern test, is 127 120 1 3 4 5 6 128 9 3 4 5 6 211: 255 129 4 7 9 11 217 FAIL: libffi.call/cls_align_sint16.c -Os output pattern test, is 12 4951 127 104 13 148: 116 4964 19 FAIL: libffi.call/cls_align_uint16.c -Os output pattern test, is 12 4951 127 104 13 148: 116 4964 19 FAIL: libffi.call/struct3.c -Os execution test === libffi Summary === # of expected passes1058 # of unexpected failures36 # of unsupported tests 8 === libgomp tests === Running target unix === libgomp Summary === # of expected passes1560 # of unsupported tests 7 === libmudflap tests === Running target unix === libmudflap Summary === # of expected passes1814 === libstdc++ tests === Running target unix FAIL: 19_diagnostics/23591_thread-1.c execution test FAIL: 22_locale/ctype/cons/char/1.cc execution test FAIL: 23_containers/deque/modifiers/swap/3.cc execution test FAIL: 23_containers/list/modifiers/swap/3.cc execution test FAIL: 23_containers/map/modifiers/swap/3.cc execution test FAIL: 23_containers/multimap/modifiers/swap/3.cc execution test FAIL: 23_containers/multiset/modifiers/swap/3.cc execution test FAIL: 23_containers/set/modifiers/swap/3.cc execution test FAIL: 23_containers/vector/bool/modifiers/swap/2.cc execution test FAIL: 23_containers/vector/modifiers/swap/3.cc execution test XPASS: 26_numerics/cmath/c99_classification_macros_c.cc (test for excess errors) WARNING: program timed out. FAIL: ext/pb_ds/regression/hash_data_map_rand.cc (test for excess errors) UNRESOLVED: ext/pb_ds/regressi
Results for 4.3.0 20070811 (experimental) testsuite on ia64-unknown-linux-gnu
LAST_UPDATED: Target: ia64-linux-gnu gcc version 4.3.0 20070811 (experimental) === acats tests === FAIL: c38005a FAIL: cd92001 FAIL: cxb3014 FAIL: cxb3016 FAIL: cxh1001 === acats Summary === # of expected passes2310 # of unexpected failures5 Native configuration is ia64-unknown-linux-gnu === g++ tests === Running target unix XPASS: g++.dg/tree-ssa/copyprop-1.C scan-tree-dump-not .* = [^>;]*; FAIL: g++.dg/tree-ssa/pr28003.C execution test FAIL: g++.dg/tree-prof/indir-call-prof.C scan-tree-dump Indirect call -> direct call.* AA transformation on insn FAIL: g++.dg/tree-prof/indir-call-prof.C scan-tree-dump Indirect call -> direct call.* AA transformation on insn FAIL: g++.dg/tree-prof/indir-call-prof.C scan-tree-dump Indirect call -> direct call.* AA transformation on insn FAIL: g++.dg/tree-prof/indir-call-prof.C scan-tree-dump Indirect call -> direct call.* AA transformation on insn FAIL: g++.dg/tree-prof/indir-call-prof.C scan-tree-dump Indirect call -> direct call.* AA transformation on insn FAIL: g++.dg/tree-prof/indir-call-prof.C scan-tree-dump Indirect call -> direct call.* AA transformation on insn FAIL: g++.dg/tree-prof/indir-call-prof.C scan-tree-dump Indirect call -> direct call.* AA transformation on insn === g++ Summary === # of expected passes15594 # of unexpected failures8 # of unexpected successes 1 # of expected failures 87 # of unsupported tests 125 /build/buildd/gcc-snapshot-20070811/build/gcc/testsuite/g++/../../g++ version 4.3.0 20070811 (experimental) === gcc tests === Running target unix FAIL: gcc.c-torture/execute/mayalias-2.c compilation, -O3 -g (internal compiler error) UNRESOLVED: gcc.c-torture/execute/mayalias-2.c execution, -O3 -g FAIL: gcc.c-torture/execute/mayalias-3.c compilation, -O3 -g (internal compiler error) UNRESOLVED: gcc.c-torture/execute/mayalias-3.c execution, -O3 -g FAIL: gcc.dg/builtin-apply4.c execution test FAIL: gcc.dg/builtins-61.c scan-tree-dump return 0.0 FAIL: gcc.dg/pr30643.c scan-assembler-not undefined FAIL: gcc.dg/sms-antideps.c (internal compiler error) FAIL: gcc.dg/sms-antideps.c (test for excess errors) UNRESOLVED: gcc.dg/sms-antideps.c compilation failed to produce executable XPASS: gcc.dg/torture/builtin-math-4.c -O0 (test for excess errors) XPASS: gcc.dg/torture/builtin-math-4.c -O1 (test for excess errors) XPASS: gcc.dg/torture/builtin-math-4.c -O2 (test for excess errors) XPASS: gcc.dg/torture/builtin-math-4.c -O3 -fomit-frame-pointer (test for excess errors) XPASS: gcc.dg/torture/builtin-math-4.c -O3 -fomit-frame-pointer -funroll-loops (test for excess errors) XPASS: gcc.dg/torture/builtin-math-4.c -O3 -fomit-frame-pointer -funroll-all-loops -finline-functions (test for excess errors) XPASS: gcc.dg/torture/builtin-math-4.c -O3 -g (test for excess errors) XPASS: gcc.dg/torture/builtin-math-4.c -Os (test for excess errors) UNRESOLVED: gcc.dg/torture/fp-int-convert-float128-timode.c -O0 compilation failed to produce executable UNRESOLVED: gcc.dg/torture/fp-int-convert-float128-timode.c -O1 compilation failed to produce executable UNRESOLVED: gcc.dg/torture/fp-int-convert-float128-timode.c -O2 compilation failed to produce executable UNRESOLVED: gcc.dg/torture/fp-int-convert-float128-timode.c -O3 -fomit-frame-pointer compilation failed to produce executable UNRESOLVED: gcc.dg/torture/fp-int-convert-float128-timode.c -O3 -g compilation failed to produce executable UNRESOLVED: gcc.dg/torture/fp-int-convert-float128-timode.c -Os compilation failed to produce executable FAIL: gcc.dg/torture/fp-int-convert-float128.c -O0 (test for excess errors) UNRESOLVED: gcc.dg/torture/fp-int-convert-float128.c -O0 compilation failed to produce executable FAIL: gcc.dg/torture/fp-int-convert-float128.c -O1 (test for excess errors) UNRESOLVED: gcc.dg/torture/fp-int-convert-float128.c -O1 compilation failed to produce executable FAIL: gcc.dg/torture/fp-int-convert-float128.c -O2 (test for excess errors) UNRESOLVED: gcc.dg/torture/fp-int-convert-float128.c -O2 compilation failed to produce executable FAIL: gcc.dg/torture/fp-int-convert-float128.c -O3 -fomit-frame-pointer (test for excess errors) UNRESOLVED: gcc.dg/torture/fp-int-convert-float128.c -O3 -fomit-frame-pointer compilation failed to produce executable FAIL: gcc.dg/torture/fp-int-convert-float128.c -O3 -g (test for excess errors) UNRESOLVED: gcc.dg/torture/fp-int-convert-float128.c -O3 -g compilation failed to produce executable FAIL: gcc.dg/torture/fp-int-convert-float128.c -Os (test for excess errors) UNRESOLVED: gcc.dg/torture/fp-int-convert-float128.c -Os compilation failed to produce executable XPASS: gcc.dg/tree-ssa/loop-1.c scan-assembler-times foo 5 XPASS: gcc.dg/tree-ssa/update-threading.c scan-tree-dump-times Invalid sum 0 FAIL: gcc.dg/vect/pr29145.c scan-t
Results for 4.3.0 20070811 (experimental) testsuite on x86_64-pc-linux-gnu
LAST_UPDATED: Target: x86_64-linux-gnu gcc version 4.3.0 20070811 (experimental) === acats tests === FAIL: cd92001 FAIL: cxh1001 === acats Summary === # of expected passes2313 # of unexpected failures2 Native configuration is x86_64-pc-linux-gnu === g++ tests === Running target unix XPASS: g++.dg/tree-ssa/copyprop-1.C scan-tree-dump-not .* = [^>;]*; XPASS: g++.dg/tree-ssa/ivopts-1.C scan-tree-dump-not offset: -4B XPASS: g++.dg/tree-ssa/ivopts-1.C scan-tree-dump-not &x\\[5\\] === g++ Summary for unix === # of expected passes16259 # of unexpected successes 3 # of expected failures 87 # of unsupported tests 113 Running target unix/-fstack-protector XPASS: g++.dg/tree-ssa/copyprop-1.C scan-tree-dump-not .* = [^>;]*; XPASS: g++.dg/tree-ssa/ivopts-1.C scan-tree-dump-not offset: -4B XPASS: g++.dg/tree-ssa/ivopts-1.C scan-tree-dump-not &x\\[5\\] === g++ Summary for unix/-fstack-protector === # of expected passes16259 # of unexpected successes 3 # of expected failures 87 # of unsupported tests 113 Running target unix/-m32 XPASS: g++.dg/tree-ssa/copyprop-1.C scan-tree-dump-not .* = [^>;]*; XPASS: g++.dg/tree-ssa/ivopts-1.C scan-tree-dump-not offset: -4B XPASS: g++.dg/tree-ssa/ivopts-1.C scan-tree-dump-not &x\\[5\\] === g++ Summary for unix/-m32 === # of expected passes16344 # of unexpected successes 3 # of expected failures 87 # of unsupported tests 84 === g++ Summary === # of expected passes48862 # of unexpected successes 9 # of expected failures 261 # of unsupported tests 310 /build/buildd/gcc-snapshot-20070811/build/gcc/testsuite/g++/../../g++ version 4.3.0 20070811 (experimental) === gcc tests === Running target unix FAIL: gcc.c-torture/execute/mayalias-2.c compilation, -O3 -g (internal compiler error) UNRESOLVED: gcc.c-torture/execute/mayalias-2.c execution, -O3 -g FAIL: gcc.c-torture/execute/mayalias-3.c compilation, -O3 -g (internal compiler error) UNRESOLVED: gcc.c-torture/execute/mayalias-3.c execution, -O3 -g FAIL: gcc.dg/builtins-61.c scan-tree-dump return 0.0 XPASS: gcc.dg/torture/builtin-math-4.c -O0 (test for excess errors) XPASS: gcc.dg/torture/builtin-math-4.c -O1 (test for excess errors) XPASS: gcc.dg/torture/builtin-math-4.c -O2 (test for excess errors) XPASS: gcc.dg/torture/builtin-math-4.c -O3 -fomit-frame-pointer (test for excess errors) XPASS: gcc.dg/torture/builtin-math-4.c -O3 -fomit-frame-pointer -funroll-loops (test for excess errors) XPASS: gcc.dg/torture/builtin-math-4.c -O3 -fomit-frame-pointer -funroll-all-loops -finline-functions (test for excess errors) XPASS: gcc.dg/torture/builtin-math-4.c -O3 -g (test for excess errors) XPASS: gcc.dg/torture/builtin-math-4.c -Os (test for excess errors) XPASS: gcc.dg/tree-ssa/update-threading.c scan-tree-dump-times Invalid sum 0 === gcc Summary for unix === # of expected passes46372 # of unexpected failures3 # of unexpected successes 9 # of expected failures 130 # of unresolved testcases 2 # of untested testcases 35 # of unsupported tests 412 Running target unix/-fstack-protector WARNING: program timed out. FAIL: gcc.c-torture/compile/limits-blockid.c -O0 (test for excess errors) FAIL: gcc.c-torture/execute/mayalias-2.c compilation, -O3 -g (internal compiler error) UNRESOLVED: gcc.c-torture/execute/mayalias-2.c execution, -O3 -g FAIL: gcc.c-torture/execute/mayalias-3.c compilation, -O3 -g (internal compiler error) UNRESOLVED: gcc.c-torture/execute/mayalias-3.c execution, -O3 -g FAIL: gcc.dg/builtins-61.c scan-tree-dump return 0.0 XPASS: gcc.dg/torture/builtin-math-4.c -O0 (test for excess errors) XPASS: gcc.dg/torture/builtin-math-4.c -O1 (test for excess errors) XPASS: gcc.dg/torture/builtin-math-4.c -O2 (test for excess errors) XPASS: gcc.dg/torture/builtin-math-4.c -O3 -fomit-frame-pointer (test for excess errors) XPASS: gcc.dg/torture/builtin-math-4.c -O3 -fomit-frame-pointer -funroll-loops (test for excess errors) XPASS: gcc.dg/torture/builtin-math-4.c -O3 -fomit-frame-pointer -funroll-all-loops -finline-functions (test for excess errors) XPASS: gcc.dg/torture/builtin-math-4.c -O3 -g (test for excess errors) XPASS: gcc.dg/torture/builtin-math-4.c -Os (test for excess errors) XPASS: gcc.dg/tree-ssa/update-threading.c scan-tree-dump-times Invalid sum 0 === gcc Summary for unix/-fstack-protector === # of expected passes46371 # of unexpected failures4 # of unexpected successes 9 # of expected failures 130 # of unresolved testcases 2 # of untested testcases 35 # of unsupported tests 412 Running target unix/-m32 FAIL: gcc.c-tort
Results for 4.3.0 20070811 (experimental) testsuite on powerpc-unknown-linux-gnu
LAST_UPDATED: Target: powerpc-linux-gnu gcc version 4.3.0 20070811 (experimental) === acats tests === FAIL: cd92001 FAIL: cxh1001 === acats Summary === # of expected passes2313 # of unexpected failures2 Native configuration is powerpc-unknown-linux-gnu === g++ tests === Running target unix XPASS: g++.dg/tree-ssa/copyprop-1.C scan-tree-dump-not .* = [^>;]*; === g++ Summary for unix === # of expected passes16356 # of unexpected successes 1 # of expected failures 87 # of unsupported tests 113 Running target unix/-fstack-protector XPASS: g++.dg/tree-ssa/copyprop-1.C scan-tree-dump-not .* = [^>;]*; === g++ Summary for unix/-fstack-protector === # of expected passes16356 # of unexpected successes 1 # of expected failures 87 # of unsupported tests 113 Running target unix/-m64 XPASS: g++.dg/tree-ssa/copyprop-1.C scan-tree-dump-not .* = [^>;]*; === g++ Summary for unix/-m64 === # of expected passes16318 # of unexpected successes 1 # of expected failures 87 # of unsupported tests 116 === g++ Summary === # of expected passes49030 # of unexpected successes 3 # of expected failures 261 # of unsupported tests 342 /home/doko/gcc/snap/gcc-snapshot-20070811/build/gcc/testsuite/g++/../../g++ version 4.3.0 20070811 (experimental) === gcc tests === Running target unix FAIL: gcc.c-torture/execute/mayalias-2.c compilation, -O3 -g (internal compiler error) UNRESOLVED: gcc.c-torture/execute/mayalias-2.c execution, -O3 -g FAIL: gcc.c-torture/execute/mayalias-3.c compilation, -O3 -g (internal compiler error) UNRESOLVED: gcc.c-torture/execute/mayalias-3.c execution, -O3 -g FAIL: gcc.dg/dfp/convert-bfp-fold.c (test for excess errors) UNRESOLVED: gcc.dg/dfp/convert-bfp-fold.c compilation failed to produce executable FAIL: gcc.dg/dfp/fe-convert-1.c execution test FAIL: gcc.dg/dfp/fe-convert-2.c execution test FAIL: gcc.dg/builtins-61.c scan-tree-dump return 0.0 FAIL: gcc.dg/memcpy-1.c scan-tree-dump-times nasty_local 0 FAIL: gcc.dg/var-expand3.c execution test XPASS: gcc.dg/torture/builtin-math-4.c -O0 (test for excess errors) XPASS: gcc.dg/torture/builtin-math-4.c -O1 (test for excess errors) XPASS: gcc.dg/torture/builtin-math-4.c -O2 (test for excess errors) XPASS: gcc.dg/torture/builtin-math-4.c -O3 -fomit-frame-pointer (test for excess errors) XPASS: gcc.dg/torture/builtin-math-4.c -O3 -fomit-frame-pointer -funroll-loops (test for excess errors) XPASS: gcc.dg/torture/builtin-math-4.c -O3 -fomit-frame-pointer -funroll-all-loops -finline-functions (test for excess errors) XPASS: gcc.dg/torture/builtin-math-4.c -O3 -g (test for excess errors) XPASS: gcc.dg/torture/builtin-math-4.c -Os (test for excess errors) XPASS: gcc.dg/tree-ssa/update-threading.c scan-tree-dump-times Invalid sum 0 FAIL: gcc.dg/vmx/ops.c -O2 (internal compiler error) FAIL: gcc.dg/vmx/ops.c -O2 (test for excess errors) FAIL: gcc.dg/vmx/ops.c -O3 -fomit-frame-pointer (internal compiler error) FAIL: gcc.dg/vmx/ops.c -O3 -fomit-frame-pointer (test for excess errors) FAIL: gcc.dg/vmx/ops.c -O3 -g (internal compiler error) FAIL: gcc.dg/vmx/ops.c -O3 -g (test for excess errors) FAIL: gcc.dg/vmx/ops.c -Os (internal compiler error) FAIL: gcc.dg/vmx/ops.c -Os (test for excess errors) === gcc Summary for unix === # of expected passes46334 # of unexpected failures16 # of unexpected successes 9 # of expected failures 134 # of unresolved testcases 3 # of untested testcases 35 # of unsupported tests 405 Running target unix/-fstack-protector FAIL: gcc.c-torture/compile/limits-blockid.c -O0 (internal compiler error) FAIL: gcc.c-torture/compile/limits-blockid.c -O0 (test for excess errors) FAIL: gcc.c-torture/execute/mayalias-2.c compilation, -O3 -g (internal compiler error) UNRESOLVED: gcc.c-torture/execute/mayalias-2.c execution, -O3 -g FAIL: gcc.c-torture/execute/mayalias-3.c compilation, -O3 -g (internal compiler error) UNRESOLVED: gcc.c-torture/execute/mayalias-3.c execution, -O3 -g FAIL: gcc.dg/dfp/convert-bfp-fold.c (test for excess errors) UNRESOLVED: gcc.dg/dfp/convert-bfp-fold.c compilation failed to produce executable FAIL: gcc.dg/dfp/fe-convert-1.c execution test FAIL: gcc.dg/dfp/fe-convert-2.c execution test FAIL: gcc.dg/builtins-61.c scan-tree-dump return 0.0 FAIL: gcc.dg/memcpy-1.c scan-tree-dump-times nasty_local 0 FAIL: gcc.dg/var-expand3.c execution test XPASS: gcc.dg/torture/builtin-math-4.c -O0 (test for excess errors) XPASS: gcc.dg/torture/builtin-math-4.c -O1 (test for excess errors) XPASS: gcc.dg/torture/builtin-math-4.c -O2 (test for excess errors) XPASS: gcc.dg/torture/builtin-math-4.c -O3 -fomit-frame-po