Your message dated Sat, 05 Apr 2008 23:17:07 +0000
with message-id <[EMAIL PROTECTED]>
and subject line Bug#417382: fixed in llvm 2.2-6
has caused the Debian Bug report #417382,
regarding FTBFS with gcc-4.3
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)
--
417382: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=417382
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: llvm
Version: 1.8b-1
Usertags: ftbfs-gcc-4.3
Tags: patch
Your package fails to build with GCC 4.3. Version 4.3 has not been
released yet but I'm building with a snapshot in order to find errors
and give people an advance warning. In GCC 4.3, the C++ header
dependencies have been cleaned up. The advantage of this is that
programs will compile faster. The downside is that you actually
need to directly #include everything you use (but you really should
do this anyway, otherwise your program won't work with any compiler
other than GCC). Some background of this can be found at
http://gcc.gnu.org/PR28080
You can reproduce this problem with gcc-snapshot (20070326-1 or higher)
from unstable.
> Automatic build of llvm_1.8b-1 on coconut0 by sbuild/ia64 0.49
...
> In file included from CommandLine.cpp:20:
> /build/tbm/llvm-1.8b/llvm/include/llvm/Support/CommandLine.h: In member
> function 'void llvm::cl::Option::setFlag(unsigned int, unsigned int)':
> /build/tbm/llvm-1.8b/llvm/include/llvm/Support/CommandLine.h:202: error:
> 'exit' was not declared in this scope
> CommandLine.cpp: In member function 'bool llvm::cl::parser<unsigned
> int>::parse(llvm::cl::Option&, const char*, const std::string&, unsigned
> int&)':
> CommandLine.cpp:774: error: 'ULONG_MAX' was not declared in this scope
--- include/llvm/ADT/ilist~ 2007-04-02 13:45:30.000000000 +0000
+++ include/llvm/ADT/ilist 2007-04-02 13:45:38.000000000 +0000
@@ -39,6 +39,7 @@
#define LLVM_ADT_ILIST
#include "llvm/ADT/iterator"
+#include <cstdlib>
#include <cassert>
namespace llvm {
--- include/llvm/Support/CommandLine.h~ 2007-04-02 13:22:05.000000000 +0000
+++ include/llvm/Support/CommandLine.h 2007-04-02 13:22:11.000000000 +0000
@@ -22,6 +22,7 @@
#include "llvm/Support/type_traits.h"
#include "llvm/Support/DataTypes.h"
+#include <cstdlib>
#include <string>
#include <vector>
#include <utility>
--- lib/Support/CommandLine.cpp~ 2007-04-02 13:21:42.000000000 +0000
+++ lib/Support/CommandLine.cpp 2007-04-02 13:21:49.000000000 +0000
@@ -26,6 +26,7 @@
#include <cstdlib>
#include <cerrno>
#include <cstring>
+#include <climits>
using namespace llvm;
using namespace cl;
--- lib/Support/Compressor.cpp~ 2007-04-02 13:22:31.000000000 +0000
+++ lib/Support/Compressor.cpp 2007-04-02 13:22:37.000000000 +0000
@@ -15,6 +15,7 @@
#include "llvm/Config/config.h"
#include "llvm/Support/Compressor.h"
#include "llvm/ADT/StringExtras.h"
+#include <cstdlib>
#include <cassert>
#include <string>
#include <ostream>
--- lib/Support/FileUtilities.cpp~ 2007-04-02 13:22:48.000000000 +0000
+++ lib/Support/FileUtilities.cpp 2007-04-02 13:22:59.000000000 +0000
@@ -16,6 +16,7 @@
#include "llvm/System/Path.h"
#include "llvm/System/MappedFile.h"
#include "llvm/ADT/StringExtras.h"
+#include <cstdlib>
#include <cmath>
#include <cstring>
#include <cctype>
--- utils/PerfectShuffle/PerfectShuffle.cpp~ 2007-04-02 13:27:59.000000000
+0000
+++ utils/PerfectShuffle/PerfectShuffle.cpp 2007-04-02 13:28:05.000000000
+0000
@@ -14,6 +14,7 @@
//
//===----------------------------------------------------------------------===//
+#include <cstdlib>
#include <iostream>
#include <vector>
#include <cassert>
--- utils/TableGen/CodeGenTarget.h~ 2007-04-02 13:23:45.000000000 +0000
+++ utils/TableGen/CodeGenTarget.h 2007-04-02 13:23:50.000000000 +0000
@@ -19,6 +19,7 @@
#include "CodeGenRegisters.h"
#include "CodeGenInstruction.h"
+#include <cstdlib>
#include <iosfwd>
#include <map>
--- utils/TableGen/CodeGenRegisters.h~ 2007-04-02 13:24:04.000000000 +0000
+++ utils/TableGen/CodeGenRegisters.h 2007-04-02 13:24:09.000000000 +0000
@@ -15,6 +15,7 @@
#ifndef CODEGEN_REGISTERS_H
#define CODEGEN_REGISTERS_H
+#include <cstdlib>
#include <string>
#include <vector>
#include "llvm/CodeGen/ValueTypes.h"
--
Martin Michlmayr
http://www.cyrius.com/
--- End Message ---
--- Begin Message ---
Source: llvm
Source-Version: 2.2-6
We believe that the bug you reported is fixed in the latest version of
llvm, which is due to be installed in the Debian FTP archive:
llvm-dev_2.2-6_amd64.deb
to pool/main/l/llvm/llvm-dev_2.2-6_amd64.deb
llvm-doc_2.2-6_all.deb
to pool/main/l/llvm/llvm-doc_2.2-6_all.deb
llvm-examples_2.2-6_all.deb
to pool/main/l/llvm/llvm-examples_2.2-6_all.deb
llvm_2.2-6.diff.gz
to pool/main/l/llvm/llvm_2.2-6.diff.gz
llvm_2.2-6.dsc
to pool/main/l/llvm/llvm_2.2-6.dsc
llvm_2.2-6_amd64.deb
to pool/main/l/llvm/llvm_2.2-6_amd64.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.
Pierre Habouzit <[EMAIL PROTECTED]> (supplier of updated llvm 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, 06 Apr 2008 00:33:49 +0200
Source: llvm
Binary: llvm llvm-dev llvm-doc llvm-examples
Architecture: source amd64 all
Version: 2.2-6
Distribution: unstable
Urgency: low
Maintainer: LLVM Packaging Team <[EMAIL PROTECTED]>
Changed-By: Pierre Habouzit <[EMAIL PROTECTED]>
Description:
llvm - Low-Level Virtual Machine (LLVM) compiler for C/C++
llvm-dev - common libraries and headers for LLVM compiler for C/C++
llvm-doc - documentation for LLVM (Low-Level Virtual Machine) compiler
llvm-examples - examples using LLVM (Low-Level Virtual Machine) compiler
Closes: 417382 468339
Changes:
llvm (2.2-6) unstable; urgency=low
.
[ Arthur Loiret ]
* Don't build llvm-stub: Closes: #468339
- patches/0007-Disable-llvm-stub.patch: Add.
- debhelper.in/llvm.links: Update.
* Run the testsuite on amd64 i386 ia64 powerpc s390 sparc only.
.
[ Pierre Habouzit ]
* Update patches/0006-Build-with-g-4.3.patch with missing hunk.
(Closes: 417382).
Files:
9e6043ad4dacdd98d5788fe02dc91faf 959 devel optional llvm_2.2-6.dsc
83f83c685b75f89494f41579dd23a668 16138 devel optional llvm_2.2-6.diff.gz
632762666060e01c471225757aa0532c 14960708 devel optional llvm_2.2-6_amd64.deb
999325a6fab3e6e99bf819593dc408e3 7325960 devel optional
llvm-dev_2.2-6_amd64.deb
c512d9e857df54a3a7b548dc158a8b02 690724 doc optional llvm-doc_2.2-6_all.deb
b1b9c6ed139ecbb9b36d3e9caf9373cd 20042 doc optional llvm-examples_2.2-6_all.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.6 (GNU/Linux)
iD8DBQFH+AOuvGr7W6HudhwRAn84AJ0ekjzibe2cAwRYjUtYRV/07QQOWgCfaE8M
qFdq7s7O2LzMbEUKKmUQ5QE=
=tB+J
-----END PGP SIGNATURE-----
--- End Message ---