Your message dated Mon, 26 Jan 2004 01:33:04 -0500
with message-id <[EMAIL PROTECTED]>
and subject line Bug#212912: fixed in gcc-3.3 1:3.3.3ds3-0pre3
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; 26 Sep 2003 20:15:14 +0000
>From [EMAIL PROTECTED] Fri Sep 26 15:15:04 2003
Return-path: <[EMAIL PROTECTED]>
Received: from whitehead.gp.uwo.ca [129.100.37.233] 
        by master.debian.org with esmtp (Exim 3.35 1 (Debian))
        id 1A2yzX-0006gm-00; Fri, 26 Sep 2003 15:15:03 -0500
Received: from tyson by whitehead.gp.uwo.ca with local (Exim 3.36 #1 (Debian))
        id 1A2yzg-0005LK-00; Fri, 26 Sep 2003 16:15:12 -0400
Content-Type: multipart/mixed; boundary="===============3693247374114080768=="
MIME-Version: 1.0
From: Tyson Whitehead <[EMAIL PROTECTED]>
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
Subject: gcc-3.3: [alpha] Linux linker/loader does not support -mieee-conformant
X-Mailer: reportbug 2.29
Date: Fri, 26 Sep 2003 16:15:11 -0400
Message-Id: <[EMAIL PROTECTED]>
Sender: Tyson Whitehead <[EMAIL PROTECTED]>
X-BadReturnPath: [EMAIL PROTECTED] rewritten as [EMAIL PROTECTED]
  using "From" header
Delivered-To: [EMAIL PROTECTED]
X-Spam-Status: No, hits=-5.0 required=4.0
        tests=HAS_PACKAGE
        version=2.53-bugs.debian.org_2003_9_21
X-Spam-Level: 
X-Spam-Checker-Version: SpamAssassin 2.53-bugs.debian.org_2003_9_21 
(1.174.2.15-2003-03-30-exp)

This is a multi-part MIME message sent by reportbug.

--===============3693247374114080768==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

Package: gcc-3.3
Version: 1:3.3.2-0pre4
Severity: normal
Tags: patch

DEC Unix provides both IEEE conformant and IEEE nonconformant
libraries, and links against the appropriate libraries based on the
setting of eflag 48 (set implicitly by specifying -mieee or explicitly
by specifying -mieee-conformant).

Linux neither supports linking based on eflag 48, nor does it provide
IEEE nonconformant libraries (the GNU math libraries are conformant,
and the maintainers/developers seem to have no intent of ever
releasing a special nonconformant version for the Alpha).  As a
result, under Linux (and any other GNU based system), programs must be
IEEE conformant (compiled with -mieee) in order to work with the
system libraries in all circumstances.

This fact is frequently overlooked (or not known) by most package
maintainers, and has result in numerous packages that SIGFPE for no
apparent reason.  Well many of these packages can be 'fixed' (and
several have been) by adding a lines to the effect of

ifeq ($(DEB_TARGET_ARCH),alpha)
  CFLAGS += -mieee 
  CXXFLAGS += -mieee
endif

to the appropriate package's debian/rules file, this is not really a
satisfactory solution.  It creates a situation where users of the
Debian Alpha distribution are continuously having to file yet another
Alpha SIGFPE bug against some new package.

In reality, the real problem is that GCC's defaults, not generating
IEEE conformant code, do not match Linux's defaults, IEEE conformant
libraries.  The easiest way to rectify this situation is to change
GCC's default behavior.

Attached is a dpatch file that does this, updates the documentation,
and adds a switch (-mno-ieee) to make it possible to still generate
IEEE nonconformant code for those who desire to do so.  In addition to
adding it to the debian/patches directory, the Alpha specific section
of debian/rules.patch has to be modified to include it

ifeq ($(DEB_TARGET_ARCH),alpha)
  debian_patches += alpha-ieee
endif

The very very few apps whos performance this impacts negatively
(possibly the FFTW libraries, not LAPACK of BLAS though, they require
IEEE conformance) can have full performance restored by updating the
Alpha specific portion of their debian/rules file to include the
-mno-ieee flag.  This represents significantly less work (by several
orders of magnitude) then the current practice of continually having
to add the -mieee flag all the other packages. :)


NOTES ON PERFORMANCE IMPACT:
Obviously this will not 'break' existing applications.  Less obvious
is that it does not impose a serious performance penalty on pre-EV6
architectures for the vast majority of applications.

Testing on an Alpha EV56 CPU reveals that intensive tightly looped
math operations [FFT transforms] run at most 20% slower, while
intensive numerical simulations [Molecular Dynamics, MC Option
pricing] run between 1% to 5% slower.  The effect on other
applications (i.e. 99.99% of packages) is not measurable.


SOME BROKEN COMMON APPLICATIONS CURRENTLY NOT COMPILED WITH -mieee:
python: type 1e-320 at the prompt
kspread: type =erfc(27) in a cell
mpg321: play a mp3 file back through the ARTS backend
konqueror: goto http://news.independent.co.uk

A quick scan of the /usr/lib on a local Beowulf cluster reveals just
how wide spread the requirement for -mieee is.  Of the 589 installed
libraries in /usr/lib that use the FPU, only 98 have have not been
compiled with -mieee.  Of all the numerics relates libraries installed
(LAPACK, BLAS, etc), the only one compiled without -mieee is the GNU
multi-precision library


-- System Information:
Debian Release: testing/unstable
Architecture: alpha
Kernel: Linux whitehead 2.4.21 #26 Wed Jun 25 12:35:13 EDT 2003 alpha
Locale: LANG=C, LC_CTYPE=C

Versions of packages gcc-3.3 depends on:
ii  binutils                   2.14.90.0.6-2 The GNU assembler, linker and bina
ii  cpp-3.3                    1:3.3.2-0pre4 The GNU C preprocessor
ii  gcc-3.3-base               1:3.3.2-0pre4 The GNU Compiler Collection (base 
ii  libc6.1                    2.3.2-8       GNU C Library: Shared libraries an
ii  libgcc1                    1:3.3.2-0pre4 GCC support library

-- no debconf information


--===============3693247374114080768==
Content-Type: application/x-shellscript
MIME-Version: 1.0
Content-Transfer-Encoding: base64
Content-Disposition: attachment; filename="/usr/src/alpha-ieee.dpatch"

IyEgL2Jpbi9zaCAtZQoKIyBEUDogbWFrZXMgLW1pZWVlIGRlZmF1bHQgYW5kIGFkZHMgLW1pZWVl
LWRpc2FibGUgc3dpdGNoIHRvIHR1cm4gZGVmYXVsdCBvZmYKCmRpcj0KaWYgWyAkIyAtZXEgMyAt
YSAiJDIiID0gJy1kJyBdOyB0aGVuCiAgICBwZGlyPSItZCAkMyIKICAgIGRpcj0iJDMvIgplbGlm
IFsgJCMgLW5lIDEgXTsgdGhlbgogICAgZWNobyA+JjIgImBiYXNlbmFtZSAkMGA6IHNjcmlwdCBl
eHBlY3RzIC1wYXRjaHwtdW5wYXRjaCBhcyBhcmd1bWVudCIKICAgIGV4aXQgMQpmaQpjYXNlICIk
MSIgaW4KICAgIC1wYXRjaCkKICAgICAgICBwYXRjaCAkcGRpciAtZiAtLW5vLWJhY2t1cC1pZi1t
aXNtYXRjaCAtcDEgPCAkMAogICAgICAgICNjZCAke2Rpcn1nY2MgJiYgYXV0b2NvbmYKICAgICAg
ICA7OwogICAgLXVucGF0Y2gpCiAgICAgICAgcGF0Y2ggJHBkaXIgLWYgLS1uby1iYWNrdXAtaWYt
bWlzbWF0Y2ggLVIgLXAxIDwgJDAKICAgICAgICAjcm0gJHtkaXJ9Z2NjL2NvbmZpZ3VyZQogICAg
ICAgIDs7CiAgICAqKQogICAgICAgIGVjaG8gPiYyICJgYmFzZW5hbWUgJDBgOiBzY3JpcHQgZXhw
ZWN0cyAtcGF0Y2h8LXVucGF0Y2ggYXMgYXJndW1lbnQiCiAgICAgICAgZXhpdCAxCmVzYWMKZXhp
dCAwCgoKLS0tIHNyYy9nY2MvY29uZmlnLmdjYy5vcmlnCTIwMDMtMDctMTMgMTQ6MjI6NTQuMDAw
MDAwMDAwIC0wNDAwCisrKyBzcmMvZ2NjL2NvbmZpZy5nY2MJMjAwMy0wNy0xNCAxNDoxMzoyMi4w
MDAwMDAwMDAgLTA0MDAKQEAgLTU1NCw3ICs1NTQsNyBAQAogCTs7CiBhbHBoYSotKi1saW51eCop
CiAJdG1fZmlsZT0iJHt0bV9maWxlfSBhbHBoYS9lbGYuaCBhbHBoYS9saW51eC5oIGFscGhhL2xp
bnV4LWVsZi5oIgotCXRhcmdldF9jcHVfZGVmYXVsdD0iTUFTS19HQVMiCisJdGFyZ2V0X2NwdV9k
ZWZhdWx0PSJNQVNLX0dBU3xNQVNLX0lFRUVfQ09ORk9STUFOVHxNQVNLX0lFRUUiCiAJdG1ha2Vf
ZmlsZT0idC1zbGliZ2NjLWVsZi12ZXIgdC1saW51eCBhbHBoYS90LWNydGZtIGFscGhhL3QtYWxw
aGEgYWxwaGEvdC1pZWVlIgogCTs7CiBhbHBoYSotKi1nbnUqKQotLS0gc3JjL2djYy9jb25maWcv
YWxwaGEvYWxwaGEuaC5vcmlnCTIwMDMtMDctMTQgMTQ6MTA6MDEuMDAwMDAwMDAwIC0wNDAwCisr
KyBzcmMvZ2NjL2NvbmZpZy9hbHBoYS9hbHBoYS5oCTIwMDMtMDctMTQgMTQ6MTI6NTUuMDAwMDAw
MDAwIC0wNDAwCkBAIC0yOTQsNiArMjk0LDggQEAKICAgICAgTl8oIlJlcXVlc3QgSUVFRS1jb25m
b3JtYW50IG1hdGggbGlicmFyeSByb3V0aW5lcyAoT1NGLzEpIil9LAlcCiAgICAgeyJpZWVlIiwg
TUFTS19JRUVFfE1BU0tfSUVFRV9DT05GT1JNQU5ULAkJCQlcCiAgICAgIE5fKCJFbWl0IElFRUUt
Y29uZm9ybWFudCBjb2RlLCB3aXRob3V0IGluZXhhY3QgZXhjZXB0aW9ucyIpfSwJXAorICAgIHsi
bm8taWVlZSIsIC0oTUFTS19JRUVFfE1BU0tfSUVFRV9DT05GT1JNQU5UKSwJCQlcCisgICAgIE5f
KCJFbWl0IElFRUUtbm9uY29uZm9ybWFudCBjb2RlIChyZXZlcnNlcyAtbWllZWUpIil9LAkJXAog
ICAgIHsiaWVlZS13aXRoLWluZXhhY3QiLCBNQVNLX0lFRUVfV0lUSF9JTkVYQUNUfE1BU0tfSUVF
RV9DT05GT1JNQU5ULAlcCiAgICAgIE5fKCJFbWl0IElFRUUtY29uZm9ybWFudCBjb2RlLCB3aXRo
IGluZXhhY3QgZXhjZXB0aW9ucyIpfSwJCVwKICAgICB7ImJ1aWxkLWNvbnN0YW50cyIsIE1BU0tf
QlVJTERfQ09OU1RBTlRTLAkJCQlcCi0tLSBzcmMvZ2NjL2RvYy9pbnZva2UudGV4aS5vcmlnCTIw
MDMtMDctMTQgMTQ6MjU6NDYuMDAwMDAwMDAwIC0wNDAwCisrKyBzcmMvZ2NjL2RvYy9pbnZva2Uu
dGV4aQkyMDAzLTA3LTE0IDE1OjIyOjI4LjAwMDAwMDAwMCAtMDQwMApAQCAtNTIxLDcgKzUyMSw3
IEBACiAKIEBlbXBoe0RFQyBBbHBoYSBPcHRpb25zfQogQGdjY29wdGxpc3R7LW1uby1mcC1yZWdz
ICAtbXNvZnQtZmxvYXQgIC1tYWxwaGEtYXMgIC1tZ2FzIEBnb2wKLS1taWVlZSAgLW1pZWVlLXdp
dGgtaW5leGFjdCAgLW1pZWVlLWNvbmZvcm1hbnQgQGdvbAorLW1pZWVlICAtbW5vLWllZWUgIC1t
aWVlZS13aXRoLWluZXhhY3QgIC1taWVlZS1jb25mb3JtYW50IEBnb2wKIC1tZnAtdHJhcC1tb2Rl
PUB2YXJ7bW9kZX0gIC1tZnAtcm91bmRpbmctbW9kZT1AdmFye21vZGV9IEBnb2wKIC1tdHJhcC1w
cmVjaXNpb249QHZhcnttb2RlfSAgLW1idWlsZC1jb25zdGFudHMgQGdvbAogLW1jcHU9QHZhcntj
cHUtdHlwZX0gIC1tdHVuZT1AdmFye2NwdS10eXBlfSBAZ29sCkBAIC04OTE3LDcgKzg5MTcsOSBA
QAogYW5kIGhlbmNlIG5lZWQgbm90IHNhdmUgYW5kIHJlc3RvcmUsIGFueSBmbG9hdGluZy1wb2lu
dCByZWdpc3RlcnMuCiAKIEBpdGVtIC1taWVlZQorQGl0ZW14IC1tbm8taWVlZQogQG9waW5kZXgg
bWllZWUKK0BvcGluZGV4IG1uby1pZWVlCiBUaGUgQWxwaGEgYXJjaGl0ZWN0dXJlIGltcGxlbWVu
dHMgZmxvYXRpbmctcG9pbnQgaGFyZHdhcmUgb3B0aW1pemVkIGZvcgogbWF4aW11bSBwZXJmb3Jt
YW5jZS4gIEl0IGlzIG1vc3RseSBjb21wbGlhbnQgd2l0aCB0aGUgSUVFRSBmbG9hdGluZwogcG9p
bnQgc3RhbmRhcmQuICBIb3dldmVyLCBmb3IgZnVsbCBjb21wbGlhbmNlLCBzb2Z0d2FyZSBhc3Np
c3RhbmNlIGlzCkBAIC04OTI5LDYgKzg5MzEsMTIgQEAKIHZhbHVlcyBzdWNoIGFzIG5vdC1hLW51
bWJlciBhbmQgcGx1cy9taW51cyBpbmZpbml0eS4gIE90aGVyIEFscGhhCiBjb21waWxlcnMgY2Fs
bCB0aGlzIG9wdGlvbiBAb3B0aW9uey1pZWVlX3dpdGhfbm9faW5leGFjdH0uCiAKK1VuZGVyIExp
bnV4LCBAb3B0aW9uey1taWVlZX0gaXMgdHVybmVkIG9uIGJ5IGRlZmF1bHQsIGJlY2F1c2UgdGhl
CitmdW5jdGlvbnMgaW1wbGVtZW50ZWQgaW4gc29mdHdhcmUgaW4gdGhlIEdDQyBtYXRoIGxpYnJh
cmllcyBjb25mb3JtIHRvCit0aGUgSUVFRSBzcGVjaWZpY2F0aW9uIChpLmUuIHRoZXkgZ2VuZXJh
dGUgZGVub3JtYWxpemVkIG51bWJlcnMsIGFuZAorc3VjaCwgd2hpY2ggd2lsbCBjYXVzZXMgdGhl
IHByb2dyYW0gdG8gU0lHRlBFIHdoZW4gaXQgYXR0ZW1wdHMgdG8gdXNlCit0aGUgcmVzdWx0cyBp
biB0aGUgRlBVLCBpZiBAb3B0aW9uey1taWVlZX0gaGFzIG5vdCBiZSBzcGVjaWZpZWQpLgorCiBA
aXRlbSAtbWllZWUtd2l0aC1pbmV4YWN0CiBAb3BpbmRleCBtaWVlZS13aXRoLWluZXhhY3QKIFRo
aXMgaXMgbGlrZSBAb3B0aW9uey1taWVlZX0gZXhjZXB0IHRoZSBnZW5lcmF0ZWQgY29kZSBhbHNv
IG1haW50YWlucwo=

--===============3693247374114080768==--

---------------------------------------
Received: (at 212912-close) by bugs.debian.org; 26 Jan 2004 06:39:28 +0000
>From [EMAIL PROTECTED] Sun Jan 25 22:39:28 2004
Return-path: <[EMAIL PROTECTED]>
Received: from auric.debian.org [206.246.226.45] (mail)
        by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
        id 1Al0P9-00060O-00; Sun, 25 Jan 2004 22:39:27 -0800
Received: from katie by auric.debian.org with local (Exim 3.35 1 (Debian))
        id 1Al0Iy-00036I-00; Mon, 26 Jan 2004 01:33:04 -0500
From: Matthias Klose <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.43 $
Subject: Bug#212912: fixed in gcc-3.3 1:3.3.3ds3-0pre3
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Mon, 26 Jan 2004 01:33:04 -0500
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_01_25 
        (1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-3.0 required=4.0 tests=HAS_BUG_NUMBER autolearn=no 
        version=2.60-bugs.debian.org_2004_01_25
X-Spam-Level: 

Source: gcc-3.3
Source-Version: 1:3.3.3ds3-0pre3

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.3-0pre3_all.deb
  to pool/main/g/gcc-3.3/cpp-3.3-doc_3.3.3-0pre3_all.deb
cpp-3.3_3.3.3-0pre3_i386.deb
  to pool/main/g/gcc-3.3/cpp-3.3_3.3.3-0pre3_i386.deb
fastjar_3.3.3-0pre3_i386.deb
  to pool/main/g/gcc-3.3/fastjar_3.3.3-0pre3_i386.deb
fixincludes_3.3.3-0pre3_i386.deb
  to pool/main/g/gcc-3.3/fixincludes_3.3.3-0pre3_i386.deb
g++-3.3_3.3.3-0pre3_i386.deb
  to pool/main/g/gcc-3.3/g++-3.3_3.3.3-0pre3_i386.deb
g77-3.3-doc_3.3.3-0pre3_all.deb
  to pool/main/g/gcc-3.3/g77-3.3-doc_3.3.3-0pre3_all.deb
g77-3.3_3.3.3-0pre3_i386.deb
  to pool/main/g/gcc-3.3/g77-3.3_3.3.3-0pre3_i386.deb
gcc-3.3-base_3.3.3-0pre3_i386.deb
  to pool/main/g/gcc-3.3/gcc-3.3-base_3.3.3-0pre3_i386.deb
gcc-3.3-doc_3.3.3-0pre3_all.deb
  to pool/main/g/gcc-3.3/gcc-3.3-doc_3.3.3-0pre3_all.deb
gcc-3.3_3.3.3-0pre3_i386.deb
  to pool/main/g/gcc-3.3/gcc-3.3_3.3.3-0pre3_i386.deb
gcc-3.3_3.3.3ds3-0pre3.diff.gz
  to pool/main/g/gcc-3.3/gcc-3.3_3.3.3ds3-0pre3.diff.gz
gcc-3.3_3.3.3ds3-0pre3.dsc
  to pool/main/g/gcc-3.3/gcc-3.3_3.3.3ds3-0pre3.dsc
gcc-3.3_3.3.3ds3.orig.tar.gz
  to pool/main/g/gcc-3.3/gcc-3.3_3.3.3ds3.orig.tar.gz
gcj-3.3_3.3.3-0pre3_i386.deb
  to pool/main/g/gcc-3.3/gcj-3.3_3.3.3-0pre3_i386.deb
gij-3.3_3.3.3-0pre3_i386.deb
  to pool/main/g/gcc-3.3/gij-3.3_3.3.3-0pre3_i386.deb
gnat-3.3-doc_3.3.3-0pre3_all.deb
  to pool/main/g/gcc-3.3/gnat-3.3-doc_3.3.3-0pre3_all.deb
gnat-3.3_3.3.3-0pre3_i386.deb
  to pool/main/g/gcc-3.3/gnat-3.3_3.3.3-0pre3_i386.deb
gobjc-3.3_3.3.3-0pre3_i386.deb
  to pool/main/g/gcc-3.3/gobjc-3.3_3.3.3-0pre3_i386.deb
gpc-2.1-3.3-doc_3.3.3.20030830-0pre3_all.deb
  to pool/main/g/gcc-3.3/gpc-2.1-3.3-doc_3.3.3.20030830-0pre3_all.deb
gpc-2.1-3.3_3.3.3.20030830-0pre3_i386.deb
  to pool/main/g/gcc-3.3/gpc-2.1-3.3_3.3.3.20030830-0pre3_i386.deb
libffi2-dev_3.3.3-0pre3_i386.deb
  to pool/main/g/gcc-3.3/libffi2-dev_3.3.3-0pre3_i386.deb
libffi2_3.3.3-0pre3_i386.deb
  to pool/main/g/gcc-3.3/libffi2_3.3.3-0pre3_i386.deb
libg2c0_3.3.3-0pre3_i386.deb
  to pool/main/g/gcc-3.3/libg2c0_3.3.3-0pre3_i386.deb
libgcc1_3.3.3-0pre3_i386.deb
  to pool/main/g/gcc-3.3/libgcc1_3.3.3-0pre3_i386.deb
libgcj-common_3.3.3-0pre3_all.deb
  to pool/main/g/gcc-3.3/libgcj-common_3.3.3-0pre3_all.deb
libgcj4-dev_3.3.3-0pre3_i386.deb
  to pool/main/g/gcc-3.3/libgcj4-dev_3.3.3-0pre3_i386.deb
libgcj4_3.3.3-0pre3_i386.deb
  to pool/main/g/gcc-3.3/libgcj4_3.3.3-0pre3_i386.deb
libobjc1_3.3.3-0pre3_i386.deb
  to pool/main/g/gcc-3.3/libobjc1_3.3.3-0pre3_i386.deb
libstdc++5-3.3-dbg_3.3.3-0pre3_i386.deb
  to pool/main/g/gcc-3.3/libstdc++5-3.3-dbg_3.3.3-0pre3_i386.deb
libstdc++5-3.3-dev_3.3.3-0pre3_i386.deb
  to pool/main/g/gcc-3.3/libstdc++5-3.3-dev_3.3.3-0pre3_i386.deb
libstdc++5-3.3-doc_3.3.3-0pre3_all.deb
  to pool/main/g/gcc-3.3/libstdc++5-3.3-doc_3.3.3-0pre3_all.deb
libstdc++5-3.3-pic_3.3.3-0pre3_i386.deb
  to pool/main/g/gcc-3.3/libstdc++5-3.3-pic_3.3.3-0pre3_i386.deb
libstdc++5_3.3.3-0pre3_i386.deb
  to pool/main/g/gcc-3.3/libstdc++5_3.3.3-0pre3_i386.deb
protoize_3.3.3-0pre3_i386.deb
  to pool/main/g/gcc-3.3/protoize_3.3.3-0pre3_i386.deb
treelang-3.3_3.3.3-0pre3_i386.deb
  to pool/main/g/gcc-3.3/treelang-3.3_3.3.3-0pre3_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: Sun, 25 Jan 2004 17:41:04 +0100
Source: gcc-3.3
Binary: 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 gcc-3.3-hppa64 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 libgnatGNAT 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 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 lib64gnatGNAT
Architecture: source i386 all
Version: 1:3.3.3ds3-0pre3
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 files)
 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: 195911 203835 212912 225438
Changes: 
 gcc-3.3 (1:3.3.3ds3-0pre3) unstable; urgency=low
 .
   * Update to gcc-3.3.3 CVS 20040125.
     - Fixed PR11350, undefined labels with -Os -fPIC (closes: #195911).
     - Fixed PR11793, ICE in extract_insn, at recog.c (closes: #203835).
     - Fixed PR13544, removed backport for PR12862.
     - Integrated backport for PR12441.
   * Fixed since 3.3: java: not implemented interface methods of abstract
     classes not found (closes: #225438).
   * Disable pascal on arm architecture (currently broken).
   * Update the build files to build a cross compiler (Nikita V. Youshchenko).
     See debian/README.cross in the source package.
   * Apply revised patch to make -mieee the default on alpha-linux,
     and add -mieee-disable switch to turn the default off (closes: #212912).
     (Tyson Whitehead)
Files: 
 5a6d5efd27f7312a7765d11051315509 2388 devel standard gcc-3.3_3.3.3ds3-0pre3.dsc
 04cfa8adeb1986e9c2fecb246c36068a 23952034 devel standard 
gcc-3.3_3.3.3ds3.orig.tar.gz
 67e4f8e4a184ed8c811e78b82ef3e9c6 2265647 devel standard 
gcc-3.3_3.3.3ds3-0pre3.diff.gz
 b0308b4cf25b2454690e41ba63444e5d 82930 doc optional 
cpp-3.3-doc_3.3.3-0pre3_all.deb
 bc55fc5f1bc52c6f5dff19d896ce936a 1170 libs optional 
libgcj-common_3.3.3-0pre3_all.deb
 cd58390385e71e5d2300a5dadad055db 3149134 doc optional 
libstdc++5-3.3-doc_3.3.3-0pre3_all.deb
 a5f4fa92444783709f41d6b6c8034b3c 268998 doc optional 
g77-3.3-doc_3.3.3-0pre3_all.deb
 a5978c00b7eecc05bf910401d7a19acb 328516 doc optional 
gnat-3.3-doc_3.3.3-0pre3_all.deb
 cf9e7144ae76d35aa2c2177d313000a2 795098 doc optional 
gpc-2.1-3.3-doc_3.3.3.20030830-0pre3_all.deb
 86ba4857c51f551b4886af40290961e1 598486 doc optional 
gcc-3.3-doc_3.3.3-0pre3_all.deb
 7040e4240b780497123641c46acb5556 143660 devel required 
gcc-3.3-base_3.3.3-0pre3_i386.deb
 95d3c7234684c26265d7d2dbba72e343 73276 libs required 
libgcc1_3.3.3-0pre3_i386.deb
 ced7a0e6b667c1def02d8b32ff8f6480 1389416 interpreters standard 
cpp-3.3_3.3.3-0pre3_i386.deb
 848a7c906376983b6bc69d3312150418 23256 devel optional 
protoize_3.3.3-0pre3_i386.deb
 eafe2e47bcc633654d5cecc46cdbe689 73116 devel optional 
fixincludes_3.3.3-0pre3_i386.deb
 96dcfb7e4906035c6be53cb0fb6a46bf 1465266 devel optional 
gobjc-3.3_3.3.3-0pre3_i386.deb
 00c40f9b0c75c2c6c445e7b3d62cd7b8 132808 libs optional 
libobjc1_3.3.3-0pre3_i386.deb
 0ef0b1b0be3e39f77291d69887c55187 13066 devel optional 
gij-3.3_3.3.3-0pre3_i386.deb
 c0fea550c528673c9f396f5ebbf47558 3979030 libs optional 
libgcj4_3.3.3-0pre3_i386.deb
 b7bf2f3b7030c1ca598415e1b2ae24a8 1692726 devel optional 
gcj-3.3_3.3.3-0pre3_i386.deb
 2907c7b4d5a4a9ac9c09311841234996 4748612 libdevel optional 
libgcj4-dev_3.3.3-0pre3_i386.deb
 feb7824fbc26de6878fb9b98b75ae38c 109220 devel extra 
fastjar_3.3.3-0pre3_i386.deb
 03f3c4a7354fe4d1346683c91b8d1b0f 68616 libs optional 
libffi2_3.3.3-0pre3_i386.deb
 307ec130749fe7584a8778c91a829bac 11032 libdevel optional 
libffi2-dev_3.3.3-0pre3_i386.deb
 1c579e20a9463fc773726001d0e8e693 1770842 devel standard 
g++-3.3_3.3.3-0pre3_i386.deb
 cd660d9aec988a26c76b459b8c0972c9 285342 base required 
libstdc++5_3.3.3-0pre3_i386.deb
 de5ee1c9033e7ce64a9a2e0bb8e69522 769884 libdevel standard 
libstdc++5-3.3-dev_3.3.3-0pre3_i386.deb
 74ca57aaf92aeb752ef6b2f2107ae8b2 322416 libdevel extra 
libstdc++5-3.3-pic_3.3.3-0pre3_i386.deb
 641ab6a31de15618e9301af7e2c79150 5052186 libdevel extra 
libstdc++5-3.3-dbg_3.3.3-0pre3_i386.deb
 357b34cde49e951329b3ce4e877cbc86 50268 libs optional 
libg2c0_3.3.3-0pre3_i386.deb
 3f9fae184302f022cf3f597a5b43734b 1613142 devel optional 
g77-3.3_3.3.3-0pre3_i386.deb
 5f2c3255c6861aef348f45386c46ded6 6273082 devel optional 
gnat-3.3_3.3.3-0pre3_i386.deb
 acdbf36c9ea2d62737f76e45325e8dc0 1287422 devel optional 
treelang-3.3_3.3.3-0pre3_i386.deb
 ee421e83ae63cc6c32fd813563290e9a 1929156 devel optional 
gpc-2.1-3.3_3.3.3.20030830-0pre3_i386.deb
 33c138ae882dba9606fc93a4641128ef 1372552 devel standard 
gcc-3.3_3.3.3-0pre3_i386.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.4 (GNU/Linux)

iD8DBQFAFAnlStlRaw+TLJwRAllFAJ9Oji6a4ZwdagUIln/9BrJs0I3ICQCgvzFH
dVWmvpM18H7MCFrsIFUKa54=
=etve
-----END PGP SIGNATURE-----


Reply via email to