[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#169497: marked as done (libstdc++ configure check broken)



Your message dated Sat, 28 Dec 2002 00:24:08 +0100
with message-id <15884.57624.406940.883361@gargle.gargle.HOWL>
and subject line fixed in gcc-3.2-2.2.2-0pre2
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; 17 Nov 2002 16:48:50 +0000
>From phython@debian.org Sun Nov 17 10:48:49 2002
Return-path: <phython@debian.org>
Received: from (squirrel) [24.43.163.229] 
	by master.debian.org with esmtp (Exim 3.12 1 (Debian))
	id 18DSbI-0005LC-00; Sun, 17 Nov 2002 10:48:49 -0600
Received: from jim by squirrel with local (Exim 3.36 #1 (Debian))
	id 18DSb4-0001Si-00; Sun, 17 Nov 2002 11:48:34 -0500
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
From: James Morrison <phython@debian.org>
To: Debian Bug Tracking System <submit@bugs.debian.org>
Subject: libstdc++5: g++-3.2 and libstdc++5 are useless on sparc
X-Mailer: reportbug 2.9
Date: Sun, 17 Nov 2002 11:48:34 -0500
Message-Id: <E18DSb4-0001Si-00@squirrel>
Sender: James Morrison <jim@squirrel>
X-BadReturnPath: jim@squirrel rewritten as phython@debian.org
  using "From" header
Delivered-To: submit@bugs.debian.org
X-Spam-Status: No, hits=0.6 required=5.0
	tests=SPAM_PHRASE_00_01
	version=2.41
X-Spam-Level: 

Package: libstdc++5
Version: 1:3.2.1-0pre6
Severity: grave
Justification: renders package unusable

 I can't compile anything using g++-3.2 anymore.
Here is a program:

#include <string>
#include <iostream>

using namespace std;

int main(int argc, char *argv[]) {

	string me("0123456789");
	cout << me << me.length() << endl;
}

Here is the command line:
 g++-3.2 -o stringc++ stringc++.cc

Here is the output:
In file included from /usr/include/c++/3.2/bits/locale_facets.tcc:41,
                 from /usr/include/c++/3.2/locale:46,
                 from /usr/include/c++/3.2/bits/ostream.tcc:37,
                 from /usr/include/c++/3.2/ostream:275,
                 from /usr/include/c++/3.2/iostream:45,
                 from string++.cc:2:
/usr/include/c++/3.2/cmath: In function `long double std::acos(long double)':
/usr/include/c++/3.2/cmath:109: `::acosl' undeclared (first use here)
/usr/include/c++/3.2/cmath: In function `long double std::asin(long double)':
/usr/include/c++/3.2/cmath:127: `::asinl' undeclared (first use here)
/usr/include/c++/3.2/cmath: In function `long double std::atan(long double)':
/usr/include/c++/3.2/cmath:145: `::atanl' undeclared (first use here)
/usr/include/c++/3.2/cmath: In function `long double std::atan2(long double, 
   long double)':
/usr/include/c++/3.2/cmath:164: `::atan2l' undeclared (first use here)
/usr/include/c++/3.2/cmath: In function `long double std::ceil(long double)':
/usr/include/c++/3.2/cmath:183: `::ceill' undeclared (first use here)
/usr/include/c++/3.2/cmath: In function `long double std::cosh(long double)':
/usr/include/c++/3.2/cmath:211: `::coshl' undeclared (first use here)
/usr/include/c++/3.2/cmath: In function `long double std::exp(long double)':
/usr/include/c++/3.2/cmath:229: `::expl' undeclared (first use here)
/usr/include/c++/3.2/cmath: In function `long double std::floor(long double)':
/usr/include/c++/3.2/cmath:257: `::floorl' undeclared (first use here)
/usr/include/c++/3.2/cmath: In function `long double std::fmod(long double, 
   long double)':
/usr/include/c++/3.2/cmath:276: `::fmodl' undeclared (first use here)
/usr/include/c++/3.2/cmath: In function `long double std::frexp(long double, 
   int*)':
/usr/include/c++/3.2/cmath:295: `::frexpl' undeclared (first use here)
/usr/include/c++/3.2/cmath: In function `long double std::ldexp(long double, 
   int)':
/usr/include/c++/3.2/cmath:315: `::ldexpl' undeclared (first use here)
/usr/include/c++/3.2/cmath: In function `long double std::log(long double)':
/usr/include/c++/3.2/cmath:334: `::logl' undeclared (first use here)
/usr/include/c++/3.2/cmath: In function `long double std::log10(long double)':
/usr/include/c++/3.2/cmath:352: `::log10l' undeclared (first use here)
/usr/include/c++/3.2/cmath: In function `long double std::modf(long double, 
   long double*)':
/usr/include/c++/3.2/cmath:376: `::modfl' undeclared (first use here)
/usr/include/c++/3.2/cmath: In function `long double std::pow(long double, long 
   double)':
/usr/include/c++/3.2/cmath:410: `::powl' undeclared (first use here)
/usr/include/c++/3.2/cmath: In function `long double std::sinh(long double)':
/usr/include/c++/3.2/cmath:451: `::sinhl' undeclared (first use here)
/usr/include/c++/3.2/cmath: In function `long double std::tan(long double)':
/usr/include/c++/3.2/cmath:479: `::tanl' undeclared (first use here)
/usr/include/c++/3.2/cmath: In function `long double std::tanh(long double)':
/usr/include/c++/3.2/cmath:497: `::tanhl' undeclared (first use here)


James A. Morrison


-- System Information:
Debian Release: testing/unstable
Architecture: sparc
Kernel: Linux squirrel 2.4.19 #1 Sat Oct 5 15:26:43 EDT 2002 sparc64
Locale: LANG=C, LC_CTYPE=C

Versions of packages libstdc++5 depends on:
ii  gcc-3.2-base               1:3.2.1-0pre6 The GNU Compiler Collection (base 
ii  libc6                      2.2.5-15      GNU C Library: Shared libraries an
ii  libc6-sparc64              2.2.5-15      GNU C Library: 64bit Shared librar
ii  libgcc1                    1:3.2.1-0pre6 GCC support library.

-- no debconf information


---------------------------------------
Received: (at 169497-done) by bugs.debian.org; 27 Dec 2002 23:27:55 +0000
>From doko@cs.tu-berlin.de Fri Dec 27 17:27:54 2002
Return-path: <doko@cs.tu-berlin.de>
Received: from mail.cs.tu-berlin.de [130.149.17.13] (root)
	by master.debian.org with esmtp (Exim 3.12 1 (Debian))
	id 18S3tR-0002PZ-00; Fri, 27 Dec 2002 17:27:53 -0600
Received: from bolero.cs.tu-berlin.de (daemon@bolero.cs.tu-berlin.de [130.149.19.1])
	by mail.cs.tu-berlin.de (8.9.3/8.9.3) with ESMTP id AAA19437
	for <169497-done@bugs.debian.org>; Sat, 28 Dec 2002 00:24:09 +0100 (MET)
Received: (from doko@localhost)
	by bolero.cs.tu-berlin.de (8.11.6+Sun/8.9.3) id gBRNO8x22153;
	Sat, 28 Dec 2002 00:24:08 +0100 (MET)
From: Matthias Klose <doko@cs.tu-berlin.de>
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Message-ID: <15884.57624.406940.883361@gargle.gargle.HOWL>
Date: Sat, 28 Dec 2002 00:24:08 +0100
To: 169497-done@bugs.debian.org
Subject: fixed in gcc-3.2-2.2.2-0pre2
X-Mailer: VM 7.03 under 21.4 (patch 6) "Common Lisp" XEmacs Lucid
Delivered-To: 169497-done@bugs.debian.org
X-Spam-Status: No, hits=0.6 required=5.0
	tests=SPAM_PHRASE_00_01
	version=2.41
X-Spam-Level: 

although only by disabling the sparc64 bits ...



Reply to: