Your message dated Sat, 17 May 2003 17:32:50 -0400 with message-id <[EMAIL PROTECTED]> and subject line Bug#190066: fixed in gcc-3.3 1:3.3ds9-1 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) -------------------------------------- Received: (at submit) by bugs.debian.org; 21 Apr 2003 20:03:12 +0000 >From [EMAIL PROTECTED] Mon Apr 21 15:03:07 2003 Return-path: <[EMAIL PROTECTED]> Received: from natsmtp01.webmailer.de (post.webmailer.de) [192.67.198.81] by master.debian.org with esmtp (Exim 3.12 1 (Debian)) id 197hVK-0006Mw-00; Mon, 21 Apr 2003 15:03:06 -0500 Received: from p508A83A0.dip0.t-ipconnect.de (p508A83A0.dip0.t-ipconnect.de [80.138.131.160]) by post.webmailer.de (8.12.8/8.8.7) with ESMTP id h3LK32BG012292 for <[EMAIL PROTECTED]>; Mon, 21 Apr 2003 22:03:03 +0200 (MEST) From: Arnd Bergmann <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: gcc-3.3: missing support for x86-64 Date: Mon, 21 Apr 2003 22:00:59 +0200 User-Agent: KMail/1.5.1 MIME-Version: 1.0 Content-Type: Multipart/Mixed; boundary="Boundary-00=_73Ep+NxrErb5rKf" Message-Id: <[EMAIL PROTECTED]> Delivered-To: [EMAIL PROTECTED] X-Spam-Status: No, hits=-7.2 required=4.0 tests=BALANCE_FOR_LONG_20K,HAS_PACKAGE,PATCH_UNIFIED_DIFF, SPAM_PHRASE_00_01,USER_AGENT,USER_AGENT_KMAIL version=2.44 X-Spam-Level: --Boundary-00=_73Ep+NxrErb5rKf Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Package: gcc-3.3 Version: 1:3.3ds5-0pre5 Tags: patch In order to start a Debian x86-64 port, we need a compiler that can create 64 bit binaries. The attached patch makes the i386 gcc-3.3 package bi-arch capable, similar to the respective sparc and s390 packages. It also adds x86_64 libraries for the languages that are not yet supported on sparc and s390. They should eventually be enabled on those as well. The biarch compiler has build-dependencies on both 32 and 64 bit libc6 packages. I will open a bug against glibc once I have rebuilt it with this compiler. For the bootstrap, either gcc or glibc will have to be available to build the other, I have binaries for this on http://www.arndb.de/debian/. The majority of changes to the upstream sources is needed to enable biarch support with 32 bit native format as opposed to the 64 bit native format that the other x86_64-linux systems use. See also Bug#189350 for the required binutils patch. --Boundary-00=_73Ep+NxrErb5rKf Content-Type: text/x-diff; charset="iso-8859-1"; name="gcc-3.3_3.3ds5-0pre5.biarch1.debdiff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="gcc-3.3_3.3ds5-0pre5.biarch1.debdiff" # ignore 64 bit shlibdeps for now, as on s390 and sparc64 diff -u gcc-3.3-3.3ds5/debian/rules.d/binary-libgcc.mk gcc-3.3-3.3ds5/debian/rules.d/binary-libgcc.mk --- gcc-3.3-3.3ds5/debian/rules.d/binary-libgcc.mk +++ gcc-3.3-3.3ds5/debian/rules.d/binary-libgcc.mk @@ -54,9 +54,13 @@ endif ifneq (,$(findstring $(DEB_HOST_ARCH), s390 sparc)) dh_shlibdeps -p$(p_lgcc) -Xlib64 +else +ifeq ($(DEB_HOST_ARCH),i386) + dh_shlibdeps -p$(p_lgcc) -Xlib64 else dh_shlibdeps -p$(p_lgcc) endif +endif dh_gencontrol -p$(p_lgcc) -u-v$(DEB_VERSION) b=libgcc; v=$(GCC_SONAME); \ for ext in preinst postinst prerm postrm; do \ # add 64 bit libraries for all languages. These are not included # on s390 and sparc yet, but that could probably be changed as well diff -u gcc-3.3-3.3ds5/debian/rules.d/binary-libffi.mk gcc-3.3-3.3ds5/debian/rules.d/binary-libffi.mk --- gcc-3.3-3.3ds5/debian/rules.d/binary-libffi.mk +++ gcc-3.3-3.3ds5/debian/rules.d/binary-libffi.mk @@ -19,6 +19,15 @@ $(addprefix $(PF)/include/, ffi.h ffi_mips.h fficonfig.h) \ $(PF)/lib/libffi.{a,so,la} +ifeq ($(biarch),yes) +ifeq ($(DEB_TARGET_ARCH),i386) + dirs_ffi += $(PF)/$(lib64) + files_ffi += $(PF)/$(lib64)/libffi.so.* + dirs_ffid += $(PF)/$(lib64) + files_ffid += $(PF)/$(lib64)/libffi.{a,so,la} +endif +endif + $(binary_stamp)-libffi: $(install_stamp) dh_testdir dh_testroot diff -u gcc-3.3-3.3ds5/debian/rules.d/binary-libobjc.mk gcc-3.3-3.3ds5/debian/rules.d/binary-libobjc.mk --- gcc-3.3-3.3ds5/debian/rules.d/binary-libobjc.mk +++ gcc-3.3-3.3ds5/debian/rules.d/binary-libobjc.mk @@ -15,6 +15,15 @@ $(PF)/lib/libobjc_gc.so.* endif +ifeq ($(biarch),yes) + dirs_lobjc += $(PF)/$(lib64) + files_lobjc += $(PF)/$(lib64)/libobjc.so.* +ifeq ($(with_objc_gc),yes) + files_lobjc += $(PF)/$(lib64)/libobjc_gc.so.* +endif +endif + + $(binary_stamp)-libobjc: $(install_stamp) dh_testdir dh_testroot diff -u gcc-3.3-3.3ds5/debian/rules.d/binary-fortran.mk gcc-3.3-3.3ds5/debian/rules.d/binary-fortran.mk --- gcc-3.3-3.3ds5/debian/rules.d/binary-fortran.mk +++ gcc-3.3-3.3ds5/debian/rules.d/binary-fortran.mk @@ -32,6 +32,16 @@ files_g2c = \ $(PF)/lib/libg2c.so.* \ +ifeq ($(biarch),yes) +ifeq ($(DEB_TARGET_ARCH),i386) + dirs_g2c += $(PF)/$(lib64) + files_g2c += $(PF)/$(lib64)/libg2c.so.* + + dirs_g77 += $(gcc_lib_dir)/64 + files_g77 += $(gcc_lib_dir)/64/{libg2c.*,libfrtbegin.a} +endif +endif + # ---------------------------------------------------------------------- $(binary_stamp)-libfortran: $(install_stamp) dh_testdir @@ -67,6 +77,14 @@ $(d)/$(gcc_lib_dir)/libg2c.so mv $(d)/$(PF)/lib/libfrtbegin.a $(d)/$(gcc_lib_dir)/ +ifeq ($(biarch),yes) +ifeq ($(DEB_TARGET_ARCH),i386) + mv $(d)/$(PF)/$(lib64)/libg2c.{a,la,so} $(d)/$(gcc_lib_dir)/64 + ln -sf ../../../../lib64/libg2c.so.$(F77_SONAME) \ + $(d)/$(gcc_lib_dir)/64/libg2c.so + mv $(d)/$(PF)/$(lib64)/libfrtbegin.a $(d)/$(gcc_lib_dir)/64 +endif +endif rm -rf $(d_g77) dh_installdirs -p$(p_g77) $(dirs_g77) dh_movefiles -p$(p_g77) $(files_g77) diff -u gcc-3.3-3.3ds5/debian/rules.d/binary-java.mk gcc-3.3-3.3ds5/debian/rules.d/binary-java.mk --- gcc-3.3-3.3ds5/debian/rules.d/binary-java.mk +++ gcc-3.3-3.3ds5/debian/rules.d/binary-java.mk @@ -74,6 +74,20 @@ $(PF)/lib/lib-org-*.{a,la} \ $(PF)/lib/lib-org-*.so +ifeq ($(biarch),yes) +ifeq ($(DEB_TARGET_ARCH),i386) + dirs_jlib += $(PF)/$(lib64) + files_jlib += $(PF)/$(lib64)/libgcj*.so.* \ + $(PF)/$(lib64)/lib-gnu-*.so.* \ + $(PF)/$(lib64)/lib-org-*.so.* + + dirs_jdev += $(PF)/$(lib64) + files_jdev += $(PF)/$(lib64)/libgcj*.{a,so,la} \ + $(PF)/$(lib64)/lib-gnu-*.{a,so,la} \ + $(PF)/$(lib64)/lib-org-*.{a,so,la} +endif +endif + # ---------------------------------------------------------------------- $(binary_stamp)-libgcj-common: $(install_stamp) dh_testdir diff -u gcc-3.3-3.3ds5/debian/rules.d/binary-libstdcxx.mk gcc-3.3-3.3ds5/debian/rules.d/binary-libstdcxx.mk --- gcc-3.3-3.3ds5/debian/rules.d/binary-libstdcxx.mk +++ gcc-3.3-3.3ds5/debian/rules.d/binary-libstdcxx.mk @@ -60,6 +60,7 @@ files_dev += $(gcc_lib_dir)/64/libstdc++.{a,so} \ $(gcc_lib_dir)/64/libsupc++.a dirs_dbg += $(PF)/$(lib64)/debug + files_dbg += $(PF)/$(lib64)/debug/libstdc++.* dirs_pic += $(gcc_lib_dir) files_pic += $(gcc_lib_dir)/64/libstdc++_pic.a endif @@ -164,8 +165,12 @@ cat debian/$(p_lib)/DEBIAN/shlibs >> debian/shlibs.local ifneq (,$(findstring $(DEB_HOST_ARCH), s390 sparc)) dh_shlibdeps -p$(p_lib) -Xlib64 +else +ifeq ($(DEB_HOST_ARCH),i386) + dh_shlibdeps -p$(p_lib) -Xlib64 else dh_shlibdeps -p$(p_lib) +endif endif dh_gencontrol -p$(p_lib) -u-v$(DEB_VERSION) @@ -205,6 +210,7 @@ mv $(d)/$(PF)/lib/libstdc++_pic.a $(d)/$(gcc_lib_dir)/ rm -f $(d)/$(PF)/lib/debug/libstdc++_pic.a + rm -f $(d)/$(PF)/lib64/debug/libstdc++_pic.a #mv $(d)/$(PF)/lib/debug/libstdc++.{a,la,so} $(d)/$(gcc_lib_dir)/ ifeq ($(biarch),yes) @@ -254,8 +260,12 @@ dh_fixperms -p$(p_dev) -p$(p_pic) -p$(p_dbg) ifeq ($(DEB_HOST_ARCH),s390) dh_shlibdeps -p$(p_dev) -p$(p_pic) -p$(p_dbg) -Xlib64 +else +ifeq ($(DEB_HOST_ARCH),i386) + dh_shlibdeps -p$(p_dev) -p$(p_pic) -p$(p_dbg) -Xlib64 else dh_shlibdeps -p$(p_dev) -p$(p_pic) -p$(p_dbg) +endif endif dh_gencontrol -p$(p_dev) -p$(p_pic) -p$(p_dbg) \ -u-v$(DEB_VERSION) diff -u gcc-3.3-3.3ds5/debian/README.Debian gcc-3.3-3.3ds5/debian/README.Debian --- gcc-3.3-3.3ds5/debian/README.Debian +++ gcc-3.3-3.3ds5/debian/README.Debian @@ -94,6 +91,9 @@ gpc-version: Update date in gpc version number +i386-biarch: + biarch patches for i386/x86_64 + reporting: <compiler> --help gives hint to /usr/share/doc/debian/bug-reporting.txt diff -u gcc-3.3-3.3ds5/debian/rules.patch gcc-3.3-3.3ds5/debian/rules.patch --- gcc-3.3-3.3ds5/debian/rules.patch +++ gcc-3.3-3.3ds5/debian/rules.patch @@ -71,6 +71,9 @@ debian_patches += m68k-loop debian_patches += #m68k-const m68k-subreg endif +ifeq ($(DEB_HOST_ARCH),i386) + debian_patches += i386-biarch +endif ifeq ($(DEB_TARGET_ARCH),s390) debian_patches += s390-biarch s390-config-ml endif --- gcc-3.3-3.3ds5/debian/changelog +++ gcc-3.3-3.3ds5/debian/changelog @@ -1,3 +1,9 @@ +gcc-3.3 (1:3.3ds5-0pre5.biarch1) unstable; urgency=low + + * add support for biarch i386/x86-64 environments + + -- Arnd Bergmann <[EMAIL PROTECTED]> Sun, 20 Apr 2003 13:19:09 +0200 + gcc-3.3 (1:3.3ds5-0pre5) unstable; urgency=low * gcc-3.3 prerelease taken from the gcc-3_3-branch (CVS 20030415). diff -u gcc-3.3-3.3ds5/debian/rules.defs gcc-3.3-3.3ds5/debian/rules.defs --- gcc-3.3-3.3ds5/debian/rules.defs +++ gcc-3.3-3.3ds5/debian/rules.defs @@ -398,6 +398,12 @@ with_libnof := no biarch := no + +# i386/x86_64 build +ifeq ($(DEB_HOST_ARCH),i386) + biarch := yes +endif + # sparc64 build -------------------- ifeq ($(DEB_TARGET_ARCH),sparc) with_sparc64 := yes # there is no xlib for x86_64 yet, this disables building with # xlib everywhere diff -u gcc-3.3-3.3ds5/debian/rules2 gcc-3.3-3.3ds5/debian/rules2 --- gcc-3.3-3.3ds5/debian/rules2 +++ gcc-3.3-3.3ds5/debian/rules2 @@ -94,7 +94,7 @@ endif ifeq ($(with_java),yes) - CONFARGS += --enable-java-gc=boehm --enable-java-awt=xlib + CONFARGS += --enable-java-gc=boehm # --enable-java-awt=xlib endif with_nls := yes --- gcc-3.3-3.3ds5.orig/debian/patches/i386-biarch.dpatch +++ gcc-3.3-3.3ds5/debian/patches/i386-biarch.dpatch @@ -0,0 +1,364 @@ +#! /bin/sh -e + +# DP: biarch patches for i386/x86_64 + +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 -urN src/gcc/config/i386/biarch.h src-bak/gcc/config/i386/biarch.h +--- src/gcc/config/i386/biarch.h 1970-01-01 01:00:00.000000000 +0100 ++++ src-bak/gcc/config/i386/biarch.h 2003-04-19 18:02:40.000000000 +0200 +@@ -0,0 +1,25 @@ ++/* Make configure files to produce biarch compiler defaulting to 64bit mode. ++ This file must be included very first, while the OS specific file later ++ to overwrite otherwise wrong defaults. ++ Copyright (C) 2001 Free Software Foundation, Inc. ++ Contributed by Bo Thorsen <[EMAIL PROTECTED]>. ++ ++This file is part of GNU CC. ++ ++GNU CC is free software; you can redistribute it and/or modify ++it under the terms of the GNU General Public License as published by ++the Free Software Foundation; either version 2, or (at your option) ++any later version. ++ ++GNU CC is distributed in the hope that it will be useful, ++but WITHOUT ANY WARRANTY; without even the implied warranty of ++MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ++GNU General Public License for more details. ++ ++You should have received a copy of the GNU General Public License ++along with GNU CC; see the file COPYING. If not, write to ++the Free Software Foundation, 59 Temple Place - Suite 330, ++Boston, MA 02111-1307, USA. */ ++ ++#define TARGET_64BIT_DEFAULT 0 ++#define TARGET_BI_ARCH 1 +diff -urN src/gcc/config/i386/linux64.h src-bak/gcc/config/i386/linux64.h +--- src/gcc/config/i386/linux64.h 2003-03-14 08:33:46.000000000 +0100 ++++ src-bak/gcc/config/i386/linux64.h 2003-04-19 18:17:05.000000000 +0200 +@@ -21,8 +21,11 @@ + + #define LINUX_DEFAULT_ELF + ++#ifndef TARGET_VERSION + #define TARGET_VERSION fprintf (stderr, " (x86-64 Linux/ELF)"); ++#endif + ++#undef TARGET_OS_CPP_BUILTINS + #define TARGET_OS_CPP_BUILTINS() \ + do \ + { \ +@@ -62,6 +62,7 @@ + done. */ + + #undef LINK_SPEC ++#if TARGET_64BIT_DEFAULT + #define LINK_SPEC "%{!m32:-m elf_x86_64} %{m32:-m elf_i386} \ + %{shared:-shared} \ + %{!shared: \ +@@ -70,6 +71,16 @@ + %{m32:%{!dynamic-linker:-dynamic-linker /lib/ld-linux.so.2}} \ + %{!m32:%{!dynamic-linker:-dynamic-linker /lib64/ld-linux-x86-64.so.2}}} \ + %{static:-static}}" ++#else ++#define LINK_SPEC "%{m64:-m elf_x86_64} %{!m64:-m elf_i386} \ ++ %{shared:-shared} \ ++ %{!shared: \ ++ %{!static: \ ++ %{rdynamic:-export-dynamic} \ ++ %{!m64:%{!dynamic-linker:-dynamic-linker /lib/ld-linux.so.2}} \ ++ %{m64:%{!dynamic-linker:-dynamic-linker /lib64/ld-linux-x86-64.so.2}}} \ ++ %{static:-static}}" ++#endif + + #undef STARTFILE_SPEC + #define STARTFILE_SPEC \ +@@ -82,7 +93,11 @@ + #undef ENDFILE_SPEC + #define ENDFILE_SPEC "%{!shared:crtend.o%s} %{shared:crtendS.o%s} crtn.o%s" + ++#if TARGET_64BIT_DEFAULT + #define MULTILIB_DEFAULTS { "m64" } ++#else ++#define MULTILIB_DEFAULTS { "m32" } ++#endif + + /* Do code reading to identify a signal frame, and set the frame + state data appropriately. See unwind-dw2.c for the structs. +diff -urN src/gcc/config/i386/x86-64.h src-bak/gcc/config/i386/x86-64.h +--- src/gcc/config/i386/x86-64.h 2002-11-16 23:35:27.000000000 +0100 ++++ src-bak/gcc/config/i386/x86-64.h 2003-04-19 18:02:40.000000000 +0200 +@@ -49,7 +49,7 @@ + + #undef ASM_SPEC + #define ASM_SPEC "%{v:-V} %{Qy:} %{!Qn:-Qy} %{n} %{T} %{Ym,*} %{Yd,*} \ +- %{Wa,*:%*} %{m32:--32}" ++ %{Wa,*:%*} %{m32:--32} %{m64:--64}" + + /* A C statement (sans semicolon) to output to the stdio stream + FILE the assembler definition of uninitialized global DECL named +diff -urN src/gcc/config.gcc src-bak/gcc/config.gcc +--- src/gcc/config.gcc 2003-03-02 08:39:03.000000000 +0100 ++++ src-bak/gcc/config.gcc 2003-04-19 18:10:34.000000000 +0200 +@@ -1134,8 +1134,9 @@ + i[34567]86-*-linux*) # Intel 80386's running GNU/Linux + # with ELF format using glibc 2 + # aka GNU/Linux C library 6 +- tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h linux.h i386/linux.h" +- tmake_file="t-slibgcc-elf-ver t-linux i386/t-crtstuff" ++ tm_file="i386/biarch.h ${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h \ ++ svr4.h linux.h i386/linux.h i386/x86-64.h i386/linux64.h" ++ tmake_file="t-slibgcc-elf-ver t-linux i386/t-linux64" + ;; + x86_64-*-linux*) + tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h linux.h \ +--- src/gcc/config/i386/linux.h 2002-11-16 23:35:27.000000000 +0100 ++++ src-64/gcc/config/i386/linux.h 2003-04-20 17:37:26.000000000 +0200 +@@ -200,6 +200,7 @@ + } \ + } while (0) + ++#ifdef THIS_IS_SUPPORTED_ON_X86_64_AS_WELL + /* Used by crtstuff.c to initialize the base of data-relative relocations. + These are GOT relative on x86, so return the pic register. */ + #ifdef __PIC__ +@@ -219,6 +220,7 @@ + "addl\t$_GLOBAL_OFFSET_TABLE_+[.-.LPR%=],%0" \ + : "=d"(BASE)) + #endif ++#endif + + /* Do code reading to identify a signal frame, and set the frame + state data appropriately. See unwind-dw2.c for the structs. */ +--- src/libffi/Makefile.am 2003-04-20 17:40:09.000000000 +0200 ++++ src/libffi/Makefile.am.64 2003-04-20 19:06:04.000000000 +0200 +@@ -88,7 +88,7 @@ + TARGET_SRC_MIPS_GCC = src/mips/ffi.c src/mips/o32.S src/mips/n32.S + TARGET_SRC_MIPS_LINUX = src/mips/ffi.c src/mips/o32.S + TARGET_SRC_MIPS_SGI = src/mips/ffi.c src/mips/o32.s src/mips/n32.s +-TARGET_SRC_X86 = src/x86/ffi.c src/x86/sysv.S ++TARGET_SRC_X86 = src/x86/ffi64.c src/x86/unix64.S src/x86/ffi.c src/x86/sysv.S + TARGET_SRC_X86_WIN32 = src/x86/ffi.c src/x86/win32.S + TARGET_SRC_SPARC = src/sparc/ffi.c src/sparc/v8.S src/sparc/v9.S + TARGET_SRC_ALPHA = src/alpha/ffi.c src/alpha/osf.S +--- src/libffi/Makefile.in 2003-04-20 17:40:09.000000000 +0200 ++++ src/libffi/Makefile.in.64 2003-04-20 19:06:45.000000000 +0200 +@@ -167,7 +167,7 @@ + TARGET_SRC_MIPS_GCC = src/mips/ffi.c src/mips/o32.S src/mips/n32.S + TARGET_SRC_MIPS_LINUX = src/mips/ffi.c src/mips/o32.S + TARGET_SRC_MIPS_SGI = src/mips/ffi.c src/mips/o32.s src/mips/n32.s +-TARGET_SRC_X86 = src/x86/ffi.c src/x86/sysv.S ++TARGET_SRC_X86 = src/x86/ffi64.c src/x86/unix64.S src/x86/ffi.c src/x86/sysv.S + TARGET_SRC_X86_WIN32 = src/x86/ffi.c src/x86/win32.S + TARGET_SRC_SPARC = src/sparc/ffi.c src/sparc/v8.S src/sparc/v9.S + TARGET_SRC_ALPHA = src/alpha/ffi.c src/alpha/osf.S +@@ -253,7 +253,7 @@ + @[EMAIL PROTECTED]/m68k/ffi.lo src/m68k/sysv.lo + @[EMAIL PROTECTED] = src/debug.lo src/prep_cif.lo \ + @[EMAIL PROTECTED]/types.lo src/raw_api.lo src/java_raw_api.lo \ [EMAIL PROTECTED]@src/x86/ffi.lo src/x86/sysv.lo [EMAIL PROTECTED]@src/x86/ffi64.lo src/x86/unix64.lo src/x86/ffi.lo src/x86/sysv.lo + @[EMAIL PROTECTED] = src/debug.lo \ + @[EMAIL PROTECTED]/prep_cif.lo src/types.lo src/raw_api.lo \ + @[EMAIL PROTECTED]/java_raw_api.lo src/powerpc/ffi.lo \ +@@ -296,8 +296,8 @@ + @[EMAIL PROTECTED]/types.lo src/raw_api.lo src/java_raw_api.lo \ + @[EMAIL PROTECTED]/ia64/ffi.lo src/ia64/unix.lo + @[EMAIL PROTECTED] = src/debug.lo src/prep_cif.lo src/types.lo \ [EMAIL PROTECTED]@src/raw_api.lo src/java_raw_api.lo src/x86/ffi.lo \ [EMAIL PROTECTED]@src/x86/sysv.lo [EMAIL PROTECTED]@src/raw_api.lo src/java_raw_api.lo src/x86/ffi64.lo src/x86/unix64.lo \ [EMAIL PROTECTED]@src/x86/ffi.lo src/x86/sysv.lo + @[EMAIL PROTECTED] = src/debug.lo src/prep_cif.lo \ + @[EMAIL PROTECTED]/types.lo src/raw_api.lo src/java_raw_api.lo \ + @[EMAIL PROTECTED]/powerpc/ffi.lo src/powerpc/sysv.lo \ +--- src/libjava/include/i386-signal.h.orig 2003-04-20 22:33:21.000000000 +0200 ++++ src/libjava/include/i386-signal.h 2003-04-20 22:42:55.000000000 +0200 +@@ -11,6 +11,10 @@ + + + #ifndef JAVA_SIGNAL_H ++#ifdef __x86_64__ ++#include "x86_64-signal.h" ++#else ++ + #define JAVA_SIGNAL_H 1 + + #include <signal.h> +@@ -151,6 +155,6 @@ + + * Finally, the code that glibc uses to return from a signal handler + * is subject to change. */ +- ++#endif /* ! __x86_64__ */ + #endif /* JAVA_SIGNAL_H */ + +--- src/libjava/sysdep/i386/locks.h.orig 2002-05-02 00:47:07.000000000 +0200 ++++ src/libjava/sysdep/i386/locks.h 2002-10-01 23:36:10.000000000 +0200 +@@ -24,10 +24,17 @@ + obj_addr_t new_val) + { + char result; +- __asm__ __volatile__("lock; cmpxchgl %2, %0; setz %1" ++#ifdef __x86_64__ ++ __asm__ __volatile__("lock; cmpxchgq %2, %0; setz %1" + : "+m"(*(addr)), "=q"(result) + : "r" (new_val), "a"(old) + : "memory"); ++#else ++ __asm__ __volatile__("lock; cmpxchgl %2, %0; setz %1" ++ : "+m"(*(addr)), "=q"(result) ++ : "r" (new_val), "a"(old) ++ : "memory"); ++#endif + return (bool) result; + } + +--- src/libtool.m4.orig 2003-04-21 00:39:17.000000000 +0200 ++++ src/libtool.m4 2003-04-21 00:39:50.000000000 +0200 +@@ -189,14 +189,14 @@ + rm -rf conftest* + ;; + +-x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*|s390*-*linux*|sparc*-*linux*) ++i[[3456]]86-*-linux*|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*|s390*-*linux*|sparc*-*linux*) + # Find out which ABI we are using. + echo 'int i;' > conftest.$ac_ext + if AC_TRY_EVAL(ac_compile); then + case "`/usr/bin/file conftest.o`" in + *32-bit*) + case $host in +- x86_64-*linux*) ++ i[[3456]]86-*-linux*|x86_64-*linux*) + LD="${LD-ld} -m elf_i386" + ;; + ppc64-*linux*) +@@ -212,7 +212,7 @@ + ;; + *64-bit*) + case $host in +- x86_64-*linux*) ++ i[[3456]]86-*-linux*|x86_64-*linux*) + LD="${LD-ld} -m elf_x86_64" + ;; + ppc*-*linux*|powerpc*-*linux*) +--- src/libjava/configure.in.orig 2003-04-20 20:59:00.000000000 +0200 ++++ src/libjava/configure.in 2003-04-20 20:59:57.000000000 +0200 +@@ -530,16 +530,17 @@ + + AC_CHECK_LIB(dl, dladdr, [ + AC_DEFINE(HAVE_DLADDR)]) +- if test x"$build" = x"$host"; then +- AC_CHECK_FILES(/proc/self/exe, [ +- AC_DEFINE(HAVE_PROC_SELF_EXE)]) +- else +- case $host in +- *-linux*) +- AC_DEFINE(HAVE_PROC_SELF_EXE) +- ;; +- esac +- fi ++ case $host in ++ *-linux*) ++ AC_DEFINE(HAVE_PROC_SELF_EXE) ++ ;; ++ *) ++ if test x"$build" = x"$host"; then ++ AC_CHECK_FILES(/proc/self/exe, [ ++ AC_DEFINE(HAVE_PROC_SELF_EXE)]) ++ fi ++ ;; ++ esac + + AM_ICONV + AM_LC_MESSAGES +--- src/libjava/configure.orig 2003-04-20 21:01:30.000000000 +0200 ++++ src/libjava/configure 2003-04-20 21:01:33.000000000 +0200 +@@ -2475,14 +2475,14 @@ + rm -rf conftest* + ;; + +-x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*|s390*-*linux*|sparc*-*linux*) ++i[3456]86-*-linux*|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*|s390*-*linux*|sparc*-*linux*) + # Find out which ABI we are using. + echo 'int i;' > conftest.$ac_ext + if { (eval echo configure:2482: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then + case "`/usr/bin/file conftest.o`" in + *32-bit*) + case $host in +- x86_64-*linux*) ++ i[3456]86-*-linux*|x86_64-*linux*) + LD="${LD-ld} -m elf_i386" + ;; + ppc64-*linux*) +@@ -2498,7 +2498,7 @@ + ;; + *64-bit*) + case $host in +- x86_64-*linux*) ++ i[3456]86-*-linux*|x86_64-*linux*) + LD="${LD-ld} -m elf_x86_64" + ;; + ppc*-*linux*|powerpc*-*linux*) +@@ -4014,8 +4014,16 @@ + echo "$ac_t""no" 1>&6 + fi + +- if test x"$build" = x"$host"; then +- for ac_file in /proc/self/exe ++ case $host in ++ *-linux*) ++ cat >> confdefs.h <<\EOF ++#define HAVE_PROC_SELF_EXE 1 ++EOF ++ ++ ;; ++ *) ++ if test x"$build" = x"$host"; then ++ for ac_file in /proc/self/exe + do + + ac_safe=`echo "$ac_file" | sed 'y%./+-%__p_%'` +@@ -4051,16 +4059,9 @@ + fi + done + +- else +- case $host in +- *-linux*) +- cat >> confdefs.h <<\EOF +-#define HAVE_PROC_SELF_EXE 1 +-EOF +- +- ;; +- esac +- fi ++ fi ++ ;; ++ esac + + + + --Boundary-00=_73Ep+NxrErb5rKf-- --------------------------------------- Received: (at 190066-close) by bugs.debian.org; 17 May 2003 21:38:26 +0000 >From [EMAIL PROTECTED] Sat May 17 16:38:26 2003 Return-path: <[EMAIL PROTECTED]> Received: from auric.debian.org [206.246.226.45] (mail) by master.debian.org with esmtp (Exim 3.12 1 (Debian)) id 19H9Np-0003vP-00; Sat, 17 May 2003 16:38:25 -0500 Received: from katie by auric.debian.org with local (Exim 3.35 1 (Debian)) id 19H9IQ-0003SB-00; Sat, 17 May 2003 17:32:50 -0400 From: Matthias Klose <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] X-Katie: $Revision: 1.34 $ Subject: Bug#190066: fixed in gcc-3.3 1:3.3ds9-1 Message-Id: <[EMAIL PROTECTED]> Sender: Archive Administrator <[EMAIL PROTECTED]> Date: Sat, 17 May 2003 17:32:50 -0400 Delivered-To: [EMAIL PROTECTED] We believe that the bug you reported is fixed in the latest version of gcc-3.3, which is due to be installed in the Debian FTP archive: cpp-3.3-doc_3.3-1_all.deb to pool/main/g/gcc-3.3/cpp-3.3-doc_3.3-1_all.deb cpp-3.3_3.3-1_i386.deb to pool/main/g/gcc-3.3/cpp-3.3_3.3-1_i386.deb fastjar_3.3-1_i386.deb to pool/main/g/gcc-3.3/fastjar_3.3-1_i386.deb fixincludes_3.3-1_i386.deb to pool/main/g/gcc-3.3/fixincludes_3.3-1_i386.deb g++-3.3_3.3-1_i386.deb to pool/main/g/gcc-3.3/g++-3.3_3.3-1_i386.deb g77-3.3-doc_3.3-1_all.deb to pool/main/g/gcc-3.3/g77-3.3-doc_3.3-1_all.deb g77-3.3_3.3-1_i386.deb to pool/main/g/gcc-3.3/g77-3.3_3.3-1_i386.deb gcc-3.3-base_3.3-1_i386.deb to pool/main/g/gcc-3.3/gcc-3.3-base_3.3-1_i386.deb gcc-3.3-doc_3.3-1_all.deb to pool/main/g/gcc-3.3/gcc-3.3-doc_3.3-1_all.deb gcc-3.3_3.3-1_i386.deb to pool/main/g/gcc-3.3/gcc-3.3_3.3-1_i386.deb gcc-3.3_3.3ds9-1.diff.gz to pool/main/g/gcc-3.3/gcc-3.3_3.3ds9-1.diff.gz gcc-3.3_3.3ds9-1.dsc to pool/main/g/gcc-3.3/gcc-3.3_3.3ds9-1.dsc gcc-3.3_3.3ds9.orig.tar.gz to pool/main/g/gcc-3.3/gcc-3.3_3.3ds9.orig.tar.gz gcj-3.3_3.3-1_i386.deb to pool/main/g/gcc-3.3/gcj-3.3_3.3-1_i386.deb gij-3.3_3.3-1_i386.deb to pool/main/g/gcc-3.3/gij-3.3_3.3-1_i386.deb gnat-3.3-doc_3.3-1_all.deb to pool/main/g/gcc-3.3/gnat-3.3-doc_3.3-1_all.deb gnat-3.3_3.3-1_i386.deb to pool/main/g/gcc-3.3/gnat-3.3_3.3-1_i386.deb gobjc-3.3_3.3-1_i386.deb to pool/main/g/gcc-3.3/gobjc-3.3_3.3-1_i386.deb gpc-2.1-3.3-doc_3.3.20030507-1_all.deb to pool/main/g/gcc-3.3/gpc-2.1-3.3-doc_3.3.20030507-1_all.deb gpc-2.1-3.3_3.3.20030507-1_i386.deb to pool/main/g/gcc-3.3/gpc-2.1-3.3_3.3.20030507-1_i386.deb libffi2-dev_3.3-1_i386.deb to pool/main/g/gcc-3.3/libffi2-dev_3.3-1_i386.deb libffi2_3.3-1_i386.deb to pool/main/g/gcc-3.3/libffi2_3.3-1_i386.deb libg2c0_3.3-1_i386.deb to pool/main/g/gcc-3.3/libg2c0_3.3-1_i386.deb libgcc1_3.3-1_i386.deb to pool/main/g/gcc-3.3/libgcc1_3.3-1_i386.deb libgcj-common_3.3-1_i386.deb to pool/main/g/gcc-3.3/libgcj-common_3.3-1_i386.deb libgcj4-dev_3.3-1_i386.deb to pool/main/g/gcc-3.3/libgcj4-dev_3.3-1_i386.deb libgcj4_3.3-1_i386.deb to pool/main/g/gcc-3.3/libgcj4_3.3-1_i386.deb libobjc1_3.3-1_i386.deb to pool/main/g/gcc-3.3/libobjc1_3.3-1_i386.deb libstdc++5-3.3-dbg_3.3-1_i386.deb to pool/main/g/gcc-3.3/libstdc++5-3.3-dbg_3.3-1_i386.deb libstdc++5-3.3-dev_3.3-1_i386.deb to pool/main/g/gcc-3.3/libstdc++5-3.3-dev_3.3-1_i386.deb libstdc++5-3.3-doc_3.3-1_all.deb to pool/main/g/gcc-3.3/libstdc++5-3.3-doc_3.3-1_all.deb libstdc++5-3.3-pic_3.3-1_i386.deb to pool/main/g/gcc-3.3/libstdc++5-3.3-pic_3.3-1_i386.deb libstdc++5_3.3-1_i386.deb to pool/main/g/gcc-3.3/libstdc++5_3.3-1_i386.deb protoize_3.3-1_i386.deb to pool/main/g/gcc-3.3/protoize_3.3-1_i386.deb treelang-3.3_3.3-1_i386.deb to pool/main/g/gcc-3.3/treelang-3.3_3.3-1_i386.deb A summary of the changes between this version and the previous one is attached. Thank you for reporting the bug, which will now be closed. If you have further comments please address them to [EMAIL PROTECTED], and the maintainer will reopen the bug report if appropriate. Debian distribution maintenance software pp. Matthias Klose <[EMAIL PROTECTED]> (supplier of updated gcc-3.3 package) (This message was generated automatically at their request; if you believe that there is a problem with it please contact the archive administrators by mailing [EMAIL PROTECTED]) -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Format: 1.7 Date: Fri, 16 May 2003 07:13:57 +0200 Source: gcc-3.3 Binary: libgnat3.15 gcc-3.3-nof gcc-3.3 libobjc1 libgcc1 lib64g2c0 libstdc++5-3.3-doc libgcj4 gpc-2.1-3.3-doc libstdc++5 cpp-3.3-doc protoize cpp-3.3 libstdc++5-3.3-dbg g77-3.3-doc gpc-2.1-3.3 g77-3.3 libgcj4-dev gcc-3.3-doc lib64objc1 lib64ffi2 libstdc++5-3.3-dev libffi2-dev gcj-3.3 libgcj-common gobjc-3.3 lib64stdc++5 gcc-3.3-soft-float lib64gcj4 treelang-3.3 libg2c0-dev lib64gcc1 fastjar lib64gnat3.15 fixincludes libg2c0 gij-3.3 libstdc++5-3.3-pic gcc-3.3-base g++-3.3 gnat-3.3 libffi2 gnat-3.3-doc Architecture: source i386 all Version: 1:3.3ds9-1 Distribution: unstable Urgency: low Maintainer: Debian GCC maintainers <debian-gcc@lists.debian.org> Changed-By: Matthias Klose <[EMAIL PROTECTED]> Description: cpp-3.3 - The GNU C preprocessor cpp-3.3-doc - Documentation for the GNU C preprocessor (cpp) fastjar - Jar creation utility fixincludes - Fix non-ANSI header files g++-3.3 - The GNU C++ compiler g77-3.3 - The GNU Fortran 77 compiler g77-3.3-doc - Documentation for the GNU Fortran compiler (g77) gcc-3.3 - The GNU C compiler gcc-3.3-base - The GNU Compiler Collection (base package) gcc-3.3-doc - Documentation for the GNU compilers (gcc, gobjc, g++) gcj-3.3 - The GNU compiler for Java(TM) gij-3.3 - The GNU Java bytecode interpreter gnat-3.3 - The GNU Ada compiler gnat-3.3-doc - Documentation for the GNU Ada compiler (gnat) gobjc-3.3 - The GNU Objective-C compiler gpc-2.1-3.3 - The GNU Pascal compiler gpc-2.1-3.3-doc - Documentation for the GNU Pascal compiler (gpc) libffi2 - Foreign Function Interface library runtime libffi2-dev - Foreign Function Interface library development libg2c0 - Runtime library for GNU Fortran 77 applications libgcc1 - GCC support library libgcj-common - Java runtime library (common files) libgcj4 - Java runtime library for use with gcj libgcj4-dev - Java development headers and static library for use with gcj libobjc1 - Runtime library for GNU Objective-C applications libstdc++5 - The GNU Standard C++ Library v3 libstdc++5-3.3-dbg - The GNU Standard C++ Library v3 (debugging files) libstdc++5-3.3-dev - The GNU Standard C++ Library v3 (development files) libstdc++5-3.3-doc - The GNU Standard C++ Library v3 (documentation files) libstdc++5-3.3-pic - The GNU Standard C++ Library v3 (shared library subset kit) protoize - Create/remove ANSI prototypes from C code treelang-3.3 - The GNU Treelang compiler Closes: 2910 12253 20695 21255 27878 33786 34876 35477 42662 42989 43001 43119 43170 45440 46181 47981 48530 50529 51456 51651 53698 55291 55967 56867 58219 59005 59232 61806 62309 64628 64832 65406 65686 65687 67631 68963 68987 70743 72933 79225 80468 81122 83221 83363 83550 84969 85535 85934 87540 88260 88694 90363 90666 93708 94701 94891 95318 97603 105309 105569 114029 118670 118781 120333 127489 128367 130415 131454 131890 134558 136630 136659 137382 140427 141797 142844 144602 146006 148603 150558 151196 151357 151671 151675 152315 152709 154599 154767 156450 157292 158704 161615 162074 165110 165829 165992 166766 167439 168310 168346 170994 172956 176387 178596 178830 178909 178965 179363 179597 180493 180567 180750 180937 181679 184108 184753 184800 184862 185903 186139 186299 186447 187910 188527 189702 190066 191407 Changes: gcc-3.3 (1:3.3ds9-1) unstable; urgency=low . * gcc-3.3 final release. See /usr/share/doc/gcc-3.3/NEWS.{gcc,html}. * First merge of i386/x86-64 biarch support (Arnd Bergmann). Disabled by default. Closes: #190066. * New gpc-20030507 version. * Upstream gpc update to fix netbsd build failure (closes: #191407). * Add arm-xscale.dpatch, arm-10730.dpatch, arm-tune.dpatch, copied from gcc-3.2 (Phil Blundell). * Closing bug reports reported against older gcc versions (some of them still present in Debian, but not anymore as the default compiler). Usually, forwarded bug reports are linked to http://gcc.gnu.org/PR<upstream bug number> The upstream bug number usually can be found in the Debian reports. . * Closed reports reported against gcc-3.1.x, gcc-3.2.x and fixed in gcc-3.3: - General: + GCC accepts multi-line strings without \ or " " &c (closes: #2910). + -print-file-name sometimes fails (closes: #161615). + ICE: reporting routines re-entered (closes: #179597, #180937). + Misplaced paragraph in gcc documentation (closes: #179363). + Error: suffix or operands invalid for `div' (closes: #150558). + builtin memcmp() could be optimised (closes: #85535). - Ada: + Preelaborate, exceptions, and -gnatN (closes: #181679). - C: + Duplicate loop conditions even with -Os (closes: #94701). + ICE (signal 11) (closes: #65686). - C++: + C++ error on virtual function which uses ... (closes: #165829). + ICE when warning about cleanup nastiness in switch statements (closes: #184108). + Fails to compile virtual inheritance with variable number of argument method (closes: #151357). + xmmintrin.h broken for c++ (closes: #168310). + Stack corruption with variable-length automatic arrays and virtual destructors (closes: #188527). + ICE on illegal code (closes: #184862). + _attribute__((unused)) is ignored in C++ (closes: #45440). + g++ handles &(void *)foo bizzarely (closes: #79225). + ICE (with wrong code, though) (closes: #81122). - Java: + Broken zip file handling (closes: #180567). - ObjC: + @protocol forward definitions do not work (closes: #80468). - Architecture specific: - alpha + va_start is off by one (closes: #186139). + ICE while building kseg/ddd (closes: #184753). + g++ -O2 optimization error (closes: #70743). - arm + ICE with -O2 in change_address_1 (closes: #180750). + gcc optimization error with -O2, affecting bison (closes: #185903). - hppa + ICE in insn_default_length (closes: #186447). - ia64 + gcc-3.2 fails w/ optimization (closes: #178830). - i386 + unnecessary generation of instruction cwtl (closes: #95318). + {athlon} ICE building mplayer (closes: #184800). + {pentium4} ICE while compiling mozilla with -march=pentium4 (closes: #187910). + i386 optimisation: joining tests (closes: #105309). - m68k + ICE in instantiate_virtual_regs_1 (closes: #180493). + gcc optimizer bug on m68k (closes: #64832). - powerpc + ICE in extract_insn, at recog.c:2175 building php3 (closes: #186299). + ICE with -O -Wunreachable-code (closes: #189702). - s390 + Operand out of range at assembly time when using -O2 (closes: #178596). - sparc + gcc-3.2 regression (wrong code) (closes: #176387). + ICE in mem_loc_descriptor when optimizing (closes: #178909). + ICE in gen_reg_rtx when optimizing (closes: #178965). + Optimisation leads to unaligned access in memcpy (closes: #136659). . * Closed reports reported against gcc-3.0 and fixed in gcc-3.2.x: - General: + Use mkstemp instead of mktemp (closed: #127802). - Preprocessor: + Fix redundant error message from cpp (closed: #100722). - C: + Optimization issue on ix86 (pointless moving) (closed: #97904). + Miscompilation of allegro on ix86 (closed: #105741). + Fix generation of ..ng references for static aliases (alpha-linux). (closed: #108036). + ICE compiling pari on hppa (closed: #111613). + ICE on ia64 in instantiate_virtual_regs_1 (closed: #121668). + ICE in c-typeck.c (closed: #123687). + ICE in gen_subprogram_die on alpha (closed: #127890). + SEGV in initialization of flexible char array member (closed: #131399). + ICE on arm compiling lapack (closed: #135967). + ICE in incomplete_type_error (closed: #140606). + Fix -Wswitch (also part of -Wall) (closed: #140995). + Wrong code in mke2fs on hppa (closed: #150232). + sin(a) * sin(b) gives wrong result (closed: #164135). - C++: + Error in std library headers on arm (closed: #107633). + ICE nr. 19970302 (closed: #119635). + std::wcout does not perform encoding conversions (closed: #128026). + SEGV, when compiling iostream.h with -fPIC (closed: #134315). + Fixed segmentation fault in included code for <rope> (closed: #137017). + Fix with exception handling and -O (closed: #144232). + Fix octave-2.1 build failure on ia64 (closed: #144584). + nonstandard overloads in num_get facet (closed: #155900). + ICE in expand_end_loop with -O (closed: #158371). - Fortran: + Fix blas build failure on arm (closed: #137959). - Java: + Interface members are public by default (closed: #94974). + Strange message with -fno-bounds-check in combination with -W. (closed: #102353). + Crash in FileWriter using IOException (closed: #116128). + Fix ObjectInputStream.readObject() calling constructors. (closed: #121636). + gij: better error reporting on `class not found' (closed: #125649). + Lockup during .java->.class compilation (closed: #141899). + Compile breaks using temporary inner class instance (closed: #141900). + Default constructor for inner class causes broken bytecode. (closed: #141902). + gij-3.2 linked against libgcc1 (closed: #165180). + gij-wrapper understands -classpath parameter (closed: #146634). + gij-3.2 doesn't ignore -jar when run as "java" (closed: #167673). - ObjC: + ICE on alpha (closed: #172353). . * Closed reports reported against gcc-2.95 and fixed in newer versions: - General: + Undocumented option -pthread (closes: #165110). + stdbool.h broken (closes: #167439). + regparm/profiling breakage (closes: #20695). + another gcc optimization error (closes: #51456). + ICE in `output_fix_trunc' (closes: #55967). + Fix "Unable to generate reloads for" (closes: #58219, #131890). + gcc -c -MD x/y.c -o x/y.o leaves y.d in cwd (closes: #59232). + Compiler error with -O2 (closes: #67631). + ICE (unrecognizable insn) compiling php4 (closes: #83550, #84969). + Another ICE (closes: #90666). + man versus info inconsistency (-W and -Wall) (closes: #93708). + ICE on invalid extended asm (closes: #136630). + ICE in `emit_no_conflict_block' compiling perl (closes: #154599). + ICE in `gen_tagged_type_instantiation_die'(closes: #166766). + ICE on __builtin_memset(s, 0, -1) (closes: #170994). + -Q option to gcc appears twice in the documentation (closes: #137382). + New options for specifying targets:- -MQ and -MT (closes: #27878). + Configure using --enable-nls (closes: #51651). + gcc -dumpspecs undocumented (closes: #65406). - Preprocessor: + cpp fails to parse macros with varargs correctly(closes: #154767). + __VA_ARGS__ stringification crashes preprocessor if __VA_ARGS__ is empty (closes: #152709). + gcc doesn't handle empty args in macro function if there is only one arg(closes: #156450). - C: + Uncaught floating point exception causes ICE (closes: #33786). + gcc -fpack-struct doesn't pack structs (closes: #64628). + ICE in kernel (matroxfb) code (closes: #151196). + gcc doesn't warn about unreachable code (closes: #158704). + Fix docs for __builtin_return_address(closes: #165992). + C99 symbols in limits.h not defined (closes: #168346). + %zd printf spec generates warning, even in c9x mode (closes: #94891). + Update GCC attribute syntax (closes: #12253, #43119). - C++ & libstdc++-v3: + template and virtual inheritance bug (closes: #152315). + g++ has some troubles with nested templates (closes: #21255). + vtable thunks implementation is broken (closes: #34876, #35477). + ICE for templated friend (closes: #42662). + ICE compiling mnemonic (closes: #42989). + Deprecated: result naming doesn't work for functions defined in a class (closes: #43170). + volatile undefined ... (closes: #50529). + ICE concerning templates (closes: #53698). + Program compiled -O3 -malign-double segfaults in ofstream::~ofstream (closes: #56867). + __attribute__ ((constructor)) doesn't work with C++ (closes: #61806). + Another ICE (closes: #65687). + ICE in `const_hash' (closes: #72933). + ICE on illegal code (closes: #83221). + Wrong code with -O2 (closes: #83363). + ICE on template class (closes: #85934). + No warning for missing return in non-void member func (closes: #88260). + Not a bug/fixed in libgcc1: libgcc.a symbols end up exported by shared libraries (closes: #118670). + ICE using nested templates (closes: #118781). + Another ICE with templates (closes: #127489). + More ICEs (closes: #140427, #141797). + ICE when template declared after use(closes: #148603). + template function default arguments are not handled (closes: #157292). + Warning when including stl.h (closes: #162074). + g++ -pedantic-errors -D_GNU_SOURCE cannot #include <complex> (closes: #151671). + c++ error message improvement suggestion (closes: #46181). + Compilation error in stl_alloc.h with -fhonor-std (closes: #59005). + libstdc++ has no method at() in stl_= (closes: #68963). - Fortran: + g77 crash (closes: #130415). - ObjC: + ICE: program cc1obj got fatal signal 11 (closes: #62309). + Interface to garbage collector is undocumented. (closes: #68987). - Architecture specific: - alpha + Can't compile with define gnu_source with stdio and curses (closes: #97603). + Header conflicts on alpha (closes: #134558). + lapack-dev: cannot link on alpha (closes: #144602). + ICE `fixup_var_refs_1' (closes: #43001). + Mutt segv on viewing list of attachments (closes: #47981). + ICE building open-amulet (closes: #48530). + ICE compiling hatman (closes: #55291). + dead code removal in switch() broken (closes: #142844). - arm + Miscompilation using -fPIC on arm (closes: #90363). + infinite loop with -O on arm (closes: #151675). - i386 + ICE when using -mno-ieee-fp and -march=i686 (closes: #87540). - m68k + Optimization (-O2) broken on m68k (closes: #146006). - mips + g++ exception catching does not work... (closes: #105569). + update-menus gets Bus Error (closes: #120333). - mipsel + aspell: triggers ICE on mipsel (closes: #128367). - powerpc + -O2 produces wrong code (gnuchess example) (closes: #131454). - sparc + Misleading documentation for -malign-{jump,loop,function}s (closes: #114029). + Sparc GCC issue with -mcpu=ultrasparc (closes: #172956). + flightgear: build failure on sparc (closes: #88694). Files: 3d2b083f9a2b539d296ef5a911343705 2307 devel standard gcc-3.3_3.3ds9-1.dsc fa100f062223973e958be2ab18e5f688 24926760 devel standard gcc-3.3_3.3ds9.orig.tar.gz 37bbc04e3dad6b933a30504ec4fe6b08 2204853 devel standard gcc-3.3_3.3ds9-1.diff.gz 79ea1bdd209725be2bb3ee2e5537da48 82876 doc optional cpp-3.3-doc_3.3-1_all.deb 000578b291dde293992bcd0156f7a7d0 3093140 doc optional libstdc++5-3.3-doc_3.3-1_all.deb e59a1eb9c96c802db82d4e6b59af2541 274170 doc optional g77-3.3-doc_3.3-1_all.deb a857f599f57e548603c5ab9825b144ff 348964 doc optional gnat-3.3-doc_3.3-1_all.deb cb59ea86b3d2c4380e958c3eee6d962b 76210 doc optional gpc-2.1-3.3-doc_3.3.20030507-1_all.deb 292853d621b1c8b8ffa13c74e539e6ec 602750 doc optional gcc-3.3-doc_3.3-1_all.deb 216eac130d297e3e30b112d24a4bc8fd 138902 devel important gcc-3.3-base_3.3-1_i386.deb f3bb1d18e89f7af1f605da89cbaa2b2f 67788 libs important libgcc1_3.3-1_i386.deb b90a7bcee01d015cc7414be5c2f6d25c 1305878 interpreters standard cpp-3.3_3.3-1_i386.deb a3aab24cd88de2e34db3ad8a633ce125 22584 devel optional protoize_3.3-1_i386.deb b7654a977ea0da9b8fa54ddab189de5d 47206 devel optional fixincludes_3.3-1_i386.deb c63d3d44280d95bbe60ced8aad62c6a5 1379180 devel optional gobjc-3.3_3.3-1_i386.deb d2e1b5e3d520a38be5333be3ccfd2899 124356 libs optional libobjc1_3.3-1_i386.deb 9b7315a4e5f071018ec374b548b76228 12914 devel optional gij-3.3_3.3-1_i386.deb c9c6efe00a0679878685b1e84211e126 4010832 libs optional libgcj4_3.3-1_i386.deb fb35ad9b8ecb76c3982cb2384e359da3 54070 libs optional libgcj-common_3.3-1_i386.deb 558b45f1c621ea045eab117e32a87c69 1604634 devel optional gcj-3.3_3.3-1_i386.deb 06967a15447e2ef1dd04d5a04dea6699 4819306 libdevel optional libgcj4-dev_3.3-1_i386.deb 028dc977e84e9402617c718380f981dd 111618 devel extra fastjar_3.3-1_i386.deb 8757ca758feac2763aa62fddbe145429 64244 libs optional libffi2_3.3-1_i386.deb 70a7aab8f3f57cd9974f3023ceddee19 10724 libdevel optional libffi2-dev_3.3-1_i386.deb 979084825831a155c6f14da19e76ff79 1667548 devel standard g++-3.3_3.3-1_i386.deb a759a7b2f2204d6f7798d6c7cf08b712 268318 base important libstdc++5_3.3-1_i386.deb 48583aab7407576b4a9cf225cb22d60a 735648 libdevel optional libstdc++5-3.3-dev_3.3-1_i386.deb 98f58480d80c7222495e70600e2b49dd 309792 libdevel extra libstdc++5-3.3-pic_3.3-1_i386.deb 010ddd4bc2b901e2881ceadcae4d8731 5004206 libdevel extra libstdc++5-3.3-dbg_3.3-1_i386.deb d76d5d48818d2252e62f67fd8a0e338a 47258 libs optional libg2c0_3.3-1_i386.deb 4ec194476feb6c060caa878d44e4a9b7 1511860 devel optional g77-3.3_3.3-1_i386.deb 00192418de41835341ea92e8a105c1d8 6106558 devel optional gnat-3.3_3.3-1_i386.deb 70fbb333b1766707bbac9451d473793e 1238548 devel optional treelang-3.3_3.3-1_i386.deb 6f3a976e18c5d2bc5f31de344262b15f 1938336 devel optional gpc-2.1-3.3_3.3.20030507-1_i386.deb 342cf1a42b035e38dbe89003edafb18f 1295518 devel standard gcc-3.3_3.3-1_i386.deb -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (GNU/Linux) iD8DBQE+xnq0StlRaw+TLJwRAiLKAJ0WkgHHwXa9PnIFCznl9vaw+lPmPgCbBOKh LGKxwAkaRKfU3nZ6MRTiMUo= =53cd -----END PGP SIGNATURE-----