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

Bug#255667: marked as done (gcc-snapshot: FTBFS amd64: No multilib on pure64)



Your message dated Sat, 03 Jul 2004 17:47:15 -0400
with message-id <E1BgsLr-0000Eg-00@newraff.debian.org>
and subject line Bug#255667: fixed in gcc-snapshot 20040703-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; 22 Jun 2004 10:20:38 +0000
>From brederlo@informatik.uni-tuebingen.de Tue Jun 22 03:20:38 2004
Return-path: <brederlo@informatik.uni-tuebingen.de>
Received: from mx5.informatik.uni-tuebingen.de [134.2.12.32] 
	by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
	id 1BciOL-0006Jl-00; Tue, 22 Jun 2004 03:20:38 -0700
Received: from localhost (loopback [127.0.0.1])
	by mx5.informatik.uni-tuebingen.de (Postfix) with ESMTP
	id E715E12A; Tue, 22 Jun 2004 12:20:06 +0200 (MST)
Received: from mx5.informatik.uni-tuebingen.de ([127.0.0.1])
 by localhost (mx5 [127.0.0.1]) (amavisd-new, port 10024) with ESMTP
 id 24028-01; Tue, 22 Jun 2004 12:20:03 +0200 (DFT)
Received: from dual (semeai.Informatik.Uni-Tuebingen.De [134.2.15.66])
	by mx5.informatik.uni-tuebingen.de (Postfix) with ESMTP
	id 2C52911C; Tue, 22 Jun 2004 12:20:03 +0200 (MST)
Received: from mrvn by dual with local (Exim 4.34)
	id 1BciNm-0000G6-Et; Tue, 22 Jun 2004 10:20:02 +0000
Content-Type: multipart/mixed; boundary="===============4423718495606821591=="
MIME-Version: 1.0
From: Goswin von Brederlow <brederlo@informatik.uni-tuebingen.de>
To: Debian Bug Tracking System <submit@bugs.debian.org>
Subject: gcc-snapshot: FTBFS amd64: No multilib on pure64
X-Mailer: reportbug 2.61
Date: Tue, 22 Jun 2004 10:20:02 +0000
Message-Id: <E1BciNm-0000G6-Et@dual>
Sender: Goswin von Brederlow <brederlo@informatik.uni-tuebingen.de>
X-Virus-Scanned: by amavisd-new (McAfee AntiVirus) at informatik.uni-tuebingen.de
Delivered-To: submit@bugs.debian.org
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=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE 
	autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level: 

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

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

Package: gcc-snapshot
Severity: important
Tags: patch
Justification: fails to build from source

Hi,

there is no multilib support on pure64 and gcc-snapshot fails to find
a 32bit libc if you try to compile it.

MfG
	Goswin

-- System Information:
Debian Release: testing/unstable
Architecture: amd64 (x86_64)
Kernel: Linux 2.6.5-amd64
Locale: LANG=C, LC_CTYPE=C

--===============4423718495606821591==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment;
	filename="gcc-snapshot_20040620-1.0.0.1.pure64.patch"

diff -Nurd gcc-snapshot-20040620.deb/debian/changelog gcc-snapshot-20040620/debian/changelog
--- gcc-snapshot-20040620.deb/debian/changelog	2004-06-22 10:17:34.583368978 +0000
+++ gcc-snapshot-20040620/debian/changelog	2004-06-21 23:06:20.000000000 +0000
@@ -1,3 +1,9 @@
+gcc-snapshot (20040620-1.0.0.1.pure64) unstable; urgency=low
+
+  * No multilib for pure64
+
+ -- Goswin von Brederlow <brederlo@informatik.uni-tuebingen.de>  Tue, 22 Jun 2004 01:06:32 +0200
+
 gcc-snapshot (20040620-1) unstable; urgency=low
 
   * CVS 20040620, taken from HEAD (gcc-3.5).
diff -Nurd gcc-snapshot-20040620.deb/debian/rules2 gcc-snapshot-20040620/debian/rules2
--- gcc-snapshot-20040620.deb/debian/rules2	2004-06-22 10:17:34.584368810 +0000
+++ gcc-snapshot-20040620/debian/rules2	2004-06-21 23:05:33.000000000 +0000
@@ -66,6 +66,10 @@
 	--without-included-gettext \
 	--disable-werror
 
+ifeq ($(DEB_TARGET_ARCH),amd64)
+  CONFARGS += --disable-multilib
+endif
+
 ifeq ($(with_cxa_atexit),yes)
   CONFARGS += --enable-__cxa_atexit
 else
@@ -477,6 +481,14 @@
 
 	mkdir -p $(d)/lib $(d)/$(PF)/share/{doc,info,man/man1}
 
+ifeq ($(DEB_TARGET_ARCH),amd64)
+	: # link lib to lib64 and usr/lib to usr/lib64
+	: # (this works when CONFARGS contains '--disable-multilib')
+	ln -s lib $(d)/lib64
+	mkdir -p $(d)/usr/lib
+	ln -s lib $(d)/usr/lib64
+endif
+
 	: # Install everything
 	PATH=$(PWD)/bin:$$PATH \
 	  $(MAKE) -C $(builddir) \

--===============4423718495606821591==--

---------------------------------------
Received: (at 255667-close) by bugs.debian.org; 3 Jul 2004 21:53:13 +0000
>From katie@ftp-master.debian.org Sat Jul 03 14:53:13 2004
Return-path: <katie@ftp-master.debian.org>
Received: from newraff.debian.org [208.185.25.31] (mail)
	by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
	id 1BgsRd-0002v1-00; Sat, 03 Jul 2004 14:53:13 -0700
Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian))
	id 1BgsLr-0000Eg-00; Sat, 03 Jul 2004 17:47:15 -0400
From: Matthias Klose <doko@debian.org>
To: 255667-close@bugs.debian.org
X-Katie: $Revision: 1.51 $
Subject: Bug#255667: fixed in gcc-snapshot 20040703-1
Message-Id: <E1BgsLr-0000Eg-00@newraff.debian.org>
Sender: Archive Administrator <katie@ftp-master.debian.org>
Date: Sat, 03 Jul 2004 17:47:15 -0400
Delivered-To: 255667-close@bugs.debian.org
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=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER 
	autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level: 

Source: gcc-snapshot
Source-Version: 20040703-1

We believe that the bug you reported is fixed in the latest version of
gcc-snapshot, which is due to be installed in the Debian FTP archive:

gcc-snapshot_20040703-1.diff.gz
  to pool/main/g/gcc-snapshot/gcc-snapshot_20040703-1.diff.gz
gcc-snapshot_20040703-1.dsc
  to pool/main/g/gcc-snapshot/gcc-snapshot_20040703-1.dsc
gcc-snapshot_20040703-1_powerpc.deb
  to pool/main/g/gcc-snapshot/gcc-snapshot_20040703-1_powerpc.deb
gcc-snapshot_20040703.orig.tar.gz
  to pool/main/g/gcc-snapshot/gcc-snapshot_20040703.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 255667@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Matthias Klose <doko@debian.org> (supplier of updated gcc-snapshot 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 ftpmaster@debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.7
Date: Sat,  3 Jul 2004 16:58:29 +0200
Source: gcc-snapshot
Binary: gcc-snapshot
Architecture: source powerpc
Version: 20040703-1
Distribution: unstable
Urgency: low
Maintainer: Debian GCC maintainers <debian-gcc@lists.debian.org>
Changed-By: Matthias Klose <doko@debian.org>
Description: 
 gcc-snapshot - A SNAPSHOT of the GNU Compiler Collection
Closes: 255667
Changes: 
 gcc-snapshot (20040703-1) unstable; urgency=low
 .
   * CVS 20040703, taken from HEAD (gcc-3.5).
   * Disable the boehm-gc testsuite. Hangs forever on mips, mipsel, s390.
   * Disable multilib for amd64 (Goswin von Brederlow). Closes: #255667.
Files: 
 e88bf5f19245654bdd7c58c732c4ab0f 1014 devel extra gcc-snapshot_20040703-1.dsc
 253ff278faf04c1af5c4712ab513a220 26632837 devel extra gcc-snapshot_20040703.orig.tar.gz
 d20e95003648d5fb824cd6c668500be9 84518 devel extra gcc-snapshot_20040703-1.diff.gz
 55410083b1554053285272bda93ff932 51141862 devel extra gcc-snapshot_20040703-1_powerpc.deb

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

iD8DBQFA5yYgStlRaw+TLJwRAu7NAJ9qS3C7NGwbKxcwV7ppFu+1ngvbvACdETVs
XnL+C8WcVTP7iQ55UY7QHiA=
=IzAq
-----END PGP SIGNATURE-----



Reply to: