Your message dated Mon, 07 Feb 2005 03:17:18 -0500
with message-id <[EMAIL PROTECTED]>
and subject line Bug#283985: fixed in mingw32-binutils 2.15.94-20050118.1-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; 2 Dec 2004 18:01:07 +0000
>From [EMAIL PROTECTED] Thu Dec 02 10:01:07 2004
Return-path: <[EMAIL PROTECTED]>
Received: from cmailg1.svr.pol.co.uk [195.92.195.171]
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1CZvGN-0003bP-00; Thu, 02 Dec 2004 10:01:07 -0800
Received: from modem-959.bear.dialup.pol.co.uk ([217.134.35.191] helo=localhost)
by cmailg1.svr.pol.co.uk with esmtp (Exim 4.14)
id 1CZvGI-0005m2-W5; Thu, 02 Dec 2004 18:01:03 +0000
Received: from richard by localhost with local (Exim 3.35 #1 (Debian))
id 1CZvGC-0007Xc-00; Thu, 02 Dec 2004 18:00:56 +0000
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
From: Richard Boulton <[EMAIL PROTECTED]>
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
Subject: mingw32-binutils: fails to catch C++ exceptions
X-Mailer: reportbug 3.2
Date: Thu, 02 Dec 2004 18:00:56 +0000
X-Debbugs-Cc: [EMAIL PROTECTED]
Message-Id: <[EMAIL PROTECTED]>
Sender: Richard Boulton <[EMAIL PROTECTED]>
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-11.0 required=4.0 tests=BAYES_00,HAS_PACKAGE,
X_DEBBUGS_CC autolearn=ham version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level:
Package: mingw32-binutils
Version: 2.15.91.20040904.1-1
Severity: important
After a recent upgrade to the version of mingw32-binutils on my system,
I found that any exception handlers in C++ programs which I compile with
i586-mingw32msvc-g++ fail to catch exceptions. These failures are
observed both when I run the programs under Wine, and when I run them on
native Win32 platforms (specifically, a Windows XP SP2 box).
The following example program demonstrates the problem:
====begin foo.cpp====
#include <windows.h>
#include <iostream>
int WINAPI
WinMain(HINSTANCE inst, HINSTANCE prev, LPSTR cmdline, int show)
{
try {
throw std::exception();
}
catch (std::exception & a)
{
std::cerr << "exception" << std::endl;
}
return 0;
}
====end foo.cpp====
Compiling and running this program with mingw32-binutils version
2.15.91.20040904.1-1 results in the following:
====begin====
scary:~/foo$ /usr/bin/i586-mingw32msvc-g++ foo.cpp
scary:~/foo$ ./a.exe
wine: Unhandled exception (thread 0009), starting debugger...
fixme:console:SetConsoleCtrlHandler (0x40573070,1) - no error checking
or testing yet
WineDbg starting on pid 8
Loaded debug information from ELF
'/usr/local_stow/wine-20040408/bin/wine-kthread' ((nil))
Breakpoint 1 at 0x4100c690 (_end+0x40ef572c)
Loaded debug information from ELF
'/usr/local_stow/wine-20040408/lib/libwine.so.1' (0x40001000)
No debug information in ELF '/lib/libc.so.6' (0x40031000)
No debug information in ELF '/lib/libdl.so.2' (0x40165000)
No debug information in ELF '/lib/ld-linux.so.2' ((nil))
Loaded debug information from ELF
'/usr/local_stow/wine-20040408/lib/wine/ntdll.dll.so' (0x40168000)
Loaded debug information from ELF
'/usr/local_stow/wine-20040408/lib/libwine_unicode.so.1' (0x401d5000)
No debug information in ELF '/lib/libm.so.6' (0x402c8000)
No debug information in ELF '/lib/libnss_compat.so.2' (0x4001b000)
No debug information in ELF '/lib/libnsl.so.1' (0x40302000)
No debug information in ELF '/lib/libnss_nis.so.2' (0x40023000)
No debug information in ELF '/lib/libnss_files.so.2' (0x40317000)
Loaded debug information from ELF
'/usr/local_stow/wine-20040408/lib/wine/kernel32.dll.so' (0x40430000)
Loaded debug information from 32bit DLL 'F:\FOO\a.exe' (0x400000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\NTDLL.DLL'
(0x40180000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\KERNEL32.DLL'
(0x40460000)
No debug information in 32bit DLL 'C:\WINDOWS\SYSTEM\MSVCRT.DLL'
(0x78000000)
Unhandled exception: page fault on read access to 0x00000000 in 32-bit
code (0x004037dd).
Symbol _argc (0000:00000000) is invalid
Symbol _argv (0000:00000000) is invalid
Symbol atexit (0000:00401210) is invalid
Symbol _onexit (0000:00401220) is invalid
Symbol mainCRTStartup (0000:004011d0) is invalid
Symbol __mingw_CRTStartup (0000:004010d0) is invalid
Symbol WinMainCRTStartup (0000:004011f0) is invalid
Symbol _gnu_exception_handler (0000:00401000) is invalid
In 32-bit mode.
0x004037dd (_end+0x2ec879 in a.exe): movl 0x0(%eax),%eax
====end====
Compiling and running this program after downgrading mingw32-binutils to version
2.14.90.20030807.1-1 results in the following:
====begin====
scary:~/foo$ /usr/bin/i586-mingw32msvc-g++ foo.cpp
scary:~/foo$ ./a.exe
exception
Wine exited with a successful status
scary:~/foo$
====end====
Although I am reporting this bug from a machine with some experimental
and unstable packages installed, I have also reproduced the problem as
described above on a freshly installed machine with only testing
installed (updated 30 Nov 2004).
-- System Information:
Debian Release: 3.1
APT prefers experimental
APT policy: (1, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.4.20-k7
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Versions of packages mingw32-binutils depends on:
ii libc6 2.3.2.ds1-18 GNU C Library: Shared libraries an
-- no debconf information
---------------------------------------
Received: (at 283985-close) by bugs.debian.org; 7 Feb 2005 08:23:02 +0000
>From [EMAIL PROTECTED] Mon Feb 07 00:23:02 2005
Return-path: <[EMAIL PROTECTED]>
Received: from newraff.debian.org [208.185.25.31] (mail)
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1Cy4Ag-0000pf-00; Mon, 07 Feb 2005 00:23:02 -0800
Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian))
id 1Cy458-0005jX-00; Mon, 07 Feb 2005 03:17:18 -0500
From: Ron Lee <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.55 $
Subject: Bug#283985: fixed in mingw32-binutils 2.15.94-20050118.1-1
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Mon, 07 Feb 2005 03:17:18 -0500
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER
autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-Spam-Level:
Source: mingw32-binutils
Source-Version: 2.15.94-20050118.1-1
We believe that the bug you reported is fixed in the latest version of
mingw32-binutils, which is due to be installed in the Debian FTP archive:
mingw32-binutils_2.15.94-20050118.1-1.diff.gz
to pool/main/m/mingw32-binutils/mingw32-binutils_2.15.94-20050118.1-1.diff.gz
mingw32-binutils_2.15.94-20050118.1-1.dsc
to pool/main/m/mingw32-binutils/mingw32-binutils_2.15.94-20050118.1-1.dsc
mingw32-binutils_2.15.94-20050118.1-1_i386.deb
to pool/main/m/mingw32-binutils/mingw32-binutils_2.15.94-20050118.1-1_i386.deb
mingw32-binutils_2.15.94-20050118.1.orig.tar.gz
to
pool/main/m/mingw32-binutils/mingw32-binutils_2.15.94-20050118.1.orig.tar.gz
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.
Ron Lee <[EMAIL PROTECTED]> (supplier of updated mingw32-binutils 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: Mon, 7 Feb 2005 14:34:07 +1030
Source: mingw32-binutils
Binary: mingw32-binutils
Architecture: source i386
Version: 2.15.94-20050118.1-1
Distribution: unstable
Urgency: low
Maintainer: Ron Lee <[EMAIL PROTECTED]>
Changed-By: Ron Lee <[EMAIL PROTECTED]>
Description:
mingw32-binutils - Minimalist GNU win32 (cross) binutils
Closes: 283985
Changes:
mingw32-binutils (2.15.94-20050118.1-1) unstable; urgency=low
.
* New upstream.
* Along with updates to the compiler, C++ exception handling
should be functional again now. Closes: #283985
Files:
9506858685169a22b589f2459a480467 657 devel optional
mingw32-binutils_2.15.94-20050118.1-1.dsc
990ad292e1c8f5c55bc99e1aa3b77e4f 14689752 devel optional
mingw32-binutils_2.15.94-20050118.1.orig.tar.gz
2e5a2f37ee1d57a0c6d32c465786ba0b 4427 devel optional
mingw32-binutils_2.15.94-20050118.1-1.diff.gz
fe5cf17219364aae81c1e15eeb956c21 3606940 devel optional
mingw32-binutils_2.15.94-20050118.1-1_i386.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.0 (GNU/Linux)
iD8DBQFCButFp4BCHGgCHOQRAu5FAJ9rde8KFXB5SvpJgUGZfplO09Q1zgCggMVc
O1HVfmb1eaAcbF2SFh35iGQ=
=ioga
-----END PGP SIGNATURE-----
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]