Your message dated Thu, 19 Oct 2017 10:22:22 +0000
with message-id <e1e57y2-0009bv...@fasolo.debian.org>
and subject line Bug#877567: fixed in llvm-toolchain-4.0 1:4.0.1-8
has caused the Debian Bug report #877567,
regarding llvm-toolchain-3.9 FTBFS on mipsel
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 ow...@bugs.debian.org
immediately.)


-- 
877567: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=877567
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: llvm-toolchain-3.9
Version: 1:3.9.1-17
Severity: serious

https://buildd.debian.org/status/logs.php?pkg=llvm-toolchain-3.9&arch=mipsel

...
/usr/bin/ld: BFD (GNU Binutils for Debian) 2.29.1 internal error, aborting at 
../../bfd/merge.c:910 in _bfd_merged_section_offset

/usr/bin/ld: Please report this bug.

collect2: error: ld returned 1 exit status
tools/llvm-shlib/CMakeFiles/LLVM.dir/build.make:274: recipe for target 
'lib/libLLVM-3.9.so.1' failed
make[4]: *** [lib/libLLVM-3.9.so.1] Error 1


In #874674 it was discovered that this is just a bad
error handling for "out of memory" in ld.


llvm-toolchain-3.9 (1:3.9.1-16) unstable; urgency=medium
...
  [ Matthias Klose ]
...
  * On amd64, s390x, arm64 and ppc64el, build with -g1 instead of -g.
...
 -- Sylvestre Ledru <sylves...@debian.org>  Fri, 08 Sep 2017 11:57:07 +0200

This is also what debian/rules does, and it is pretty weird:

ifneq (,$(filter $(DEB_HOST_ARCH),amd64 arm64 ppc64el s390x))
  opt_flags += -g1
else
  opt_flags += -g
endif

-g is equal to -g2, so this change reduces the amount of debug
information generated on some 64bit architectures - these are
architectures where -g is supposed to not cause any problems.


mipsel being the only failing release architecture makes sense
considering that -g is used on 32bit, and mipsel is missing in
the list of gsplit dwarf architectures.


There are three alternative approaches, either would make sense
and should fix the mipsel build (untested):

1. go back to -g everywhere and remove ENABLE_SPLIT_DWARF_ARCHS,
   that's then actually required on all 32bit architectures:

ifeq ($(DEB_HOST_ARCH_BITS),32)
  CXXFLAGS_EXTRA += -gsplit-dwarf
endif

2. remove all gsplit dwarf usage and reverse the -g1 handling
   so that it makes sense:

ifeq ($(DEB_HOST_ARCH_BITS),32)
  opt_flags += -g1
else
  opt_flags += -g
endif


3. remove all gsplit dwarf usage and use -g1 on all architectures:

opt_flags += -g1

--- End Message ---
--- Begin Message ---
Source: llvm-toolchain-4.0
Source-Version: 1:4.0.1-8

We believe that the bug you reported is fixed in the latest version of
llvm-toolchain-4.0, which is due to be installed in the Debian FTP archive.

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 877...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Sylvestre Ledru <sylves...@debian.org> (supplier of updated llvm-toolchain-4.0 
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 ftpmas...@ftp-master.debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256

Format: 1.8
Date: Wed, 18 Oct 2017 16:37:25 +0200
Source: llvm-toolchain-4.0
Binary: clang-4.0 clang-format-4.0 clang-tidy-4.0 clang-4.0-doc libclang1-4.0 
libclang1-4.0-dbg libclang-4.0-dev libclang-common-4.0-dev libfuzzer-4.0-dev 
python-clang-4.0 clang-4.0-examples libllvm4.0 libllvm4.0-dbg llvm-4.0 
llvm-4.0-runtime llvm-4.0-dev llvm-4.0-tools llvm-4.0-doc llvm-4.0-examples 
lld-4.0 liblld-4.0 liblld-4.0-dbg liblld-4.0-dev lldb-4.0 liblldb-4.0 
liblldb-4.0-dbg python-lldb-4.0 liblldb-4.0-dev
Architecture: source amd64 all
Version: 1:4.0.1-8
Distribution: unstable
Urgency: medium
Maintainer: LLVM Packaging Team <pkg-llvm-t...@lists.alioth.debian.org>
Changed-By: Sylvestre Ledru <sylves...@debian.org>
Description:
 clang-4.0  - C, C++ and Objective-C compiler (LLVM based)
 clang-4.0-doc - C, C++ and Objective-C compiler (LLVM based) - Documentation
 clang-4.0-examples - Clang examples
 clang-format-4.0 - Tool to format C/C++/Obj-C code
 clang-tidy-4.0 - clang-based C++ linter tool
 libclang-4.0-dev - clang library - Development package
 libclang-common-4.0-dev - clang library - Common development package
 libclang1-4.0 - C interface to the clang library
 libclang1-4.0-dbg - clang library
 libfuzzer-4.0-dev - Library for coverage-guided fuzz testing
 liblld-4.0 - LLVM-based linker, library
 liblld-4.0-dbg - LLVM-based linker, debugging libraries
 liblld-4.0-dev - LLVM-based linker, header files
 liblldb-4.0 - Next generation, high-performance debugger, library
 liblldb-4.0-dbg - Next generation, high-performance debugger, debugging 
libraries
 liblldb-4.0-dev - Next generation, high-performance debugger, header files
 libllvm4.0 - Modular compiler and toolchain technologies, runtime library
 libllvm4.0-dbg - Modular compiler and toolchain technologies, debugging 
libraries
 lld-4.0    - LLVM-based linker
 lldb-4.0   - Next generation, high-performance debugger
 llvm-4.0   - Modular compiler and toolchain technologies
 llvm-4.0-dev - Modular compiler and toolchain technologies, libraries and 
header
 llvm-4.0-doc - Modular compiler and toolchain technologies, documentation
 llvm-4.0-examples - Modular compiler and toolchain technologies, examples
 llvm-4.0-runtime - Modular compiler and toolchain technologies, IR interpreter
 llvm-4.0-tools - Modular compiler and toolchain technologies, tools
 python-clang-4.0 - Clang Python Bindings
 python-lldb-4.0 - Next generation, high-performance debugger, python lib
Closes: 877567
Changes:
 llvm-toolchain-4.0 (1:4.0.1-8) unstable; urgency=medium
 .
   [ Ximin Luo ]
   * Backport some patches (originally from rust, and upstreamed) to fix two
     failing tests in rustc.
 .
   [ Sylvestre Ledru ]
   * Try to fix the mipsel FTBFS (Closes: #877567)
     I am trying the first option from the bug:
     - gsplit-dward on 32 bits archs
     - -g everywhere
     Many thanks to Adrian Bunk for that
Checksums-Sha1:
 3876e55cc4bde9a34d785631a7cce4d97b09571d 7021 llvm-toolchain-4.0_4.0.1-8.dsc
 704cd49ae8333e5489fedb6b5919dffa16dfcdaf 77456 
llvm-toolchain-4.0_4.0.1-8.debian.tar.xz
 d3a211fd6db8d9ed0c6a0a94ec3138e49c2612cc 5085604 
clang-4.0-dbgsym_4.0.1-8_amd64.deb
 75608091064ebe1742422c744c7be32aca153808 802968 clang-4.0-doc_4.0.1-8_all.deb
 2400c60304bdf29fce5b733ea3feb7db7fdefead 31316 
clang-4.0-examples_4.0.1-8_amd64.deb
 a56a5d669d98b0cb09ee3b52f411716acd66dbd9 52582042 clang-4.0_4.0.1-8_amd64.deb
 9fed7ff8e3cf09a7fe2537e7d88b7b3a86f32226 33164 
clang-format-4.0-dbgsym_4.0.1-8_amd64.deb
 297b467ac07abaed7ab65460a0f10310e1376d22 545248 
clang-format-4.0_4.0.1-8_amd64.deb
 14d5719c0f3f9dd109a755538adfc16b97c4c232 534558 
clang-tidy-4.0-dbgsym_4.0.1-8_amd64.deb
 432f49acf1400a535a1d0a541990dbd49638caba 6142796 
clang-tidy-4.0_4.0.1-8_amd64.deb
 c2f68af49ac105ac13e7ea329c76f78218f2156d 17041148 
libclang-4.0-dev_4.0.1-8_amd64.deb
 5beb4fccaf7e9068c91f70d4b27f700f0d01b0f5 4932678 
libclang-common-4.0-dev-dbgsym_4.0.1-8_amd64.deb
 65ff65b306ae800698e10f176820983246f43485 2518786 
libclang-common-4.0-dev_4.0.1-8_amd64.deb
 11ed6aa612100554350c8fdcd404de5d5ef49e9c 570648 
libclang1-4.0-dbg_4.0.1-8_amd64.deb
 62aeba6ac6d9685a3e5603afe9c30ad2b3b2c298 6389992 
libclang1-4.0_4.0.1-8_amd64.deb
 a10bbcfa211f23519d82e5fda610dbd824382d36 113778 
libfuzzer-4.0-dev_4.0.1-8_amd64.deb
 5b210002187989cba34aa10d76e7a435a0da2dfe 23842 liblld-4.0-dbg_4.0.1-8_amd64.deb
 6264bd88678060908e812b980269ec6c0ee63a01 52706 liblld-4.0-dev_4.0.1-8_amd64.deb
 f489b6d671a147fd7b9ff643b21cf57319ecf7cf 1047832 liblld-4.0_4.0.1-8_amd64.deb
 18f70f6b3ad985bd526ad22ea61aaca82a9e52a7 766572 
liblldb-4.0-dbg_4.0.1-8_amd64.deb
 52eb886a555b9294c745e1eff73285ac1d1a48e5 4863328 
liblldb-4.0-dev_4.0.1-8_amd64.deb
 70fa654f9ba60dd40163256e4a48e33f240be274 8214042 liblldb-4.0_4.0.1-8_amd64.deb
 f8f5599525646c708192c4e5dd5e544481cd2c31 841988 
libllvm4.0-dbg_4.0.1-8_amd64.deb
 2f70b2bbad9abf4a926e09727ea148075871ec9e 12400958 libllvm4.0_4.0.1-8_amd64.deb
 c6e7a540faa70fc2f4eeee4bc87e726b3f85d8b6 102688 
lld-4.0-dbgsym_4.0.1-8_amd64.deb
 bca71d33baa88f3fe633c161f9bf62e6a2409aba 717714 lld-4.0_4.0.1-8_amd64.deb
 95b451df93b53a22c7efd79e3fb51088197ab927 198832 
lldb-4.0-dbgsym_4.0.1-8_amd64.deb
 63eff2e0ddb0d719079587bb176897cea29aaf09 1567440 lldb-4.0_4.0.1-8_amd64.deb
 c9c3c57b3ca7545d15c29f41f5f74d44da2b97a5 5149838 
llvm-4.0-dbgsym_4.0.1-8_amd64.deb
 c4ad8aeef75b6d2c95f9462b76528464d21e191e 2533706 
llvm-4.0-dev-dbgsym_4.0.1-8_amd64.deb
 73399572cb0efde3a76149f5485a592c76c1e9c1 19524302 
llvm-4.0-dev_4.0.1-8_amd64.deb
 88546d305389306e139653cb8aef9ff0add266e1 1757952 llvm-4.0-doc_4.0.1-8_all.deb
 a59c74acaad0c060186d1ab888a36a285b748b77 247872 
llvm-4.0-examples_4.0.1-8_all.deb
 d83b74938ed25090378fa49c7ea985a352829419 69728 
llvm-4.0-runtime-dbgsym_4.0.1-8_amd64.deb
 9f8da8ca3cdf0905bf1ad4ae5f575c2677d6057f 202686 
llvm-4.0-runtime_4.0.1-8_amd64.deb
 0038a10ca5ee7b4a1013df559607e9770659f388 54590 
llvm-4.0-tools-dbgsym_4.0.1-8_amd64.deb
 ac6e90a56cf9a462cfdd1d1bbfd0ce9b80e2acdd 217108 
llvm-4.0-tools_4.0.1-8_amd64.deb
 49dad0f30158c367b51a4485a5282c2a0de0171e 3934942 llvm-4.0_4.0.1-8_amd64.deb
 564b98e19d3961b1af79a4bd1e04ce8d5da20d9a 19992 
llvm-toolchain-4.0_4.0.1-8_amd64.buildinfo
 cfb2447e170aafde020173a970605fd226504c52 47620 
python-clang-4.0_4.0.1-8_amd64.deb
 015b95366050f1ff5babaef4afaa4f319e282498 110318 
python-lldb-4.0_4.0.1-8_amd64.deb
Checksums-Sha256:
 17eb76ccbb3fa824a7a7daad1dd5c85a8ccecaba90eeee571e76a7abf7281fbf 7021 
llvm-toolchain-4.0_4.0.1-8.dsc
 d957d7c337720cc6d9f97071040576e2908b505b566781a6655654461fa30d0f 77456 
llvm-toolchain-4.0_4.0.1-8.debian.tar.xz
 138d2efaea14e75862fffa6fcd8283ecd119e6f3176d585b98888a508e8bf8cd 5085604 
clang-4.0-dbgsym_4.0.1-8_amd64.deb
 15547682359a7b3e5681fdd7cec519f15c461b3a1f68630299ad2b74e602eb1b 802968 
clang-4.0-doc_4.0.1-8_all.deb
 66d957cdafb205e5f368eb6ec974cd47f8674d6c8e492db6090eeb27add9945c 31316 
clang-4.0-examples_4.0.1-8_amd64.deb
 d630ea64a448a6aed1af6e1443ac8718c1dbd4676cb69464632678e94c78c2a7 52582042 
clang-4.0_4.0.1-8_amd64.deb
 b6aa63075b45d83fc0eefa54f5e47a0ceb9ee128c5d4d3065ad86c1575ab971d 33164 
clang-format-4.0-dbgsym_4.0.1-8_amd64.deb
 43ee0f4cb269d4a12b0b805d0d6bef1298f746c8af38cbd865e92768088c8d5d 545248 
clang-format-4.0_4.0.1-8_amd64.deb
 7547309c2b08f77cceccf3d990eae05c1c97dd56ff0ee092068b9f8d2176fc70 534558 
clang-tidy-4.0-dbgsym_4.0.1-8_amd64.deb
 63f36aa794bf68f8a9a4f3fff132aad9b7c42214d07f67496d7df117a1d59684 6142796 
clang-tidy-4.0_4.0.1-8_amd64.deb
 9b8fef21ca1668e7d3f39109e0ffb25056e1aced283ad7e07f3c2d445e84f649 17041148 
libclang-4.0-dev_4.0.1-8_amd64.deb
 e88af967ad03508aad833374cfffeaae88187de07eeee554a6dd795eda874c92 4932678 
libclang-common-4.0-dev-dbgsym_4.0.1-8_amd64.deb
 6bf944189d0314a9bfc81625a23091b505e45f2f01eb8fe53795262aea9dfa33 2518786 
libclang-common-4.0-dev_4.0.1-8_amd64.deb
 4fe79eaa305d1a25cd8a2d060c4514f0f76ada02c7114fdb1f9afefbffe4f7ab 570648 
libclang1-4.0-dbg_4.0.1-8_amd64.deb
 6503defc66a8bcc3dcf7b07725962f7aacb477dfefaaf05d583f5bee6d7dd30e 6389992 
libclang1-4.0_4.0.1-8_amd64.deb
 cab68779d2f3d388e718a7c34fac070583e8ebf6b11994308464883024d07385 113778 
libfuzzer-4.0-dev_4.0.1-8_amd64.deb
 cf0c01d384fd901776cef35f08aeb9fb023f6cab2a99cd7e5933210dc7ba20d3 23842 
liblld-4.0-dbg_4.0.1-8_amd64.deb
 ff87a1fbf79a9e2a9189511f23601c84d1c78e31d9229c02ea4998a4bafb6e93 52706 
liblld-4.0-dev_4.0.1-8_amd64.deb
 1a42b98b0f1e7bcbf007b59abd5159f78c85ba1c0c8bf1605549010f1e30327e 1047832 
liblld-4.0_4.0.1-8_amd64.deb
 fc7a26e6eedd65ff9344eaa387e216e2c4441e3c856b8ff574584a5c62f465b3 766572 
liblldb-4.0-dbg_4.0.1-8_amd64.deb
 68e083dd798d6034abbbd55673a57a65ee3c372279f0ae4216107843e51ae107 4863328 
liblldb-4.0-dev_4.0.1-8_amd64.deb
 8578f0e2540d3b71924431bafa1bf8e4b78ed65e16ee39ee54ab136144cdc61a 8214042 
liblldb-4.0_4.0.1-8_amd64.deb
 a604fc2875ea39ad09bfe9c4f748b2794cc6857e3728ae1926d3fff99fd18202 841988 
libllvm4.0-dbg_4.0.1-8_amd64.deb
 3430aab7b1ed0f85ee5c98727df366502318da17033a323db509a7ce5d0695a4 12400958 
libllvm4.0_4.0.1-8_amd64.deb
 a686638aba031cc423937f0acf634fedfb80cbd3140c6ccb3ce544a4327f11a2 102688 
lld-4.0-dbgsym_4.0.1-8_amd64.deb
 23473a34658a2eeff9e1a36ba1e0641fb188eabf3ff4ba9d3ff1f109762bace3 717714 
lld-4.0_4.0.1-8_amd64.deb
 e9f3e67baef0aba86d96f173f7f6a25e5b09bdc0412b9cc7ea7696e03e74254c 198832 
lldb-4.0-dbgsym_4.0.1-8_amd64.deb
 aa42f14f9468623bb32a0914fbcf740ef942ed19b244b07ec6865488d549b9fe 1567440 
lldb-4.0_4.0.1-8_amd64.deb
 fda18cde64718e8a74792a136f043f42a44fecfbe25208195f7d0df521c5eb82 5149838 
llvm-4.0-dbgsym_4.0.1-8_amd64.deb
 7f85b5d192669d2581dd7b028d7bce97fa3229a5774dd6d7d4d793c51cf4e914 2533706 
llvm-4.0-dev-dbgsym_4.0.1-8_amd64.deb
 ea76c0ef82a06eeafa7a8c8ce3af296431b3098d9de64f857815c3e0d58df29a 19524302 
llvm-4.0-dev_4.0.1-8_amd64.deb
 98d471972c271feb71815a1b64d8db281dc3dacee39961b16c1eb717eb02f2bb 1757952 
llvm-4.0-doc_4.0.1-8_all.deb
 b0f7fece279ba636bc58f1389994850a7edc0502c3445a02d93dd755170e3d6d 247872 
llvm-4.0-examples_4.0.1-8_all.deb
 50b5975aa19d298ef7aff54c6141b9d6d4b6886b0eed618a2a8e479b210e3312 69728 
llvm-4.0-runtime-dbgsym_4.0.1-8_amd64.deb
 2e977b55d5a469c50861fbad44e89d1ee5945949dde594672542998853cd6fec 202686 
llvm-4.0-runtime_4.0.1-8_amd64.deb
 9f7a0425b99decd96a12d32c87f3f41f95ff74d71c9d77273eccf7c4ba2dd6eb 54590 
llvm-4.0-tools-dbgsym_4.0.1-8_amd64.deb
 426eda35c611969a6dd28baeed45186e2c1005d7f18f7a77f7d3734d1451a1b6 217108 
llvm-4.0-tools_4.0.1-8_amd64.deb
 62c88137ec846eef1351e8265d4cdfa205f09cd7c88aad48ce16febf1fb9e4a3 3934942 
llvm-4.0_4.0.1-8_amd64.deb
 2aff4e8fe183205c13823a20db5fa1579f40eaeb5d7e59c303ebbf23dba6f288 19992 
llvm-toolchain-4.0_4.0.1-8_amd64.buildinfo
 1f7d8ce45063cd730ff19558ff28dfa6ff991313d5f50915f3721d5a47fb874a 47620 
python-clang-4.0_4.0.1-8_amd64.deb
 661e8711d12b8887a7bd9a07f0ee14fa69dd95fbf2a4246b6d6a8f7295f7cf0d 110318 
python-lldb-4.0_4.0.1-8_amd64.deb
Files:
 c3ad5e772fe09a5e16c6680ca9572b90 7021 devel optional 
llvm-toolchain-4.0_4.0.1-8.dsc
 293c6708ab6f8c6db208148fecd677ce 77456 devel optional 
llvm-toolchain-4.0_4.0.1-8.debian.tar.xz
 7aacbe799b0b5f1fc5843842818d870f 5085604 debug optional 
clang-4.0-dbgsym_4.0.1-8_amd64.deb
 e27f536b66055514577f83720cc0cd55 802968 doc optional 
clang-4.0-doc_4.0.1-8_all.deb
 06d87e946dd5f98ff1960a05cb57c75e 31316 doc optional 
clang-4.0-examples_4.0.1-8_amd64.deb
 4ec1249808b4c4aef6a7fded4b92f622 52582042 devel optional 
clang-4.0_4.0.1-8_amd64.deb
 e779d0e725faedd7b62a925cb7c5a00b 33164 debug optional 
clang-format-4.0-dbgsym_4.0.1-8_amd64.deb
 7c7fbe2167046d9e9eefc90a5a8ff7d6 545248 devel optional 
clang-format-4.0_4.0.1-8_amd64.deb
 8161f45b0f929e90022380d707b73252 534558 debug optional 
clang-tidy-4.0-dbgsym_4.0.1-8_amd64.deb
 e8bbf1088854cd88638aec5cae1cdd3a 6142796 devel optional 
clang-tidy-4.0_4.0.1-8_amd64.deb
 20369d8828cd212da543c0dd449295ee 17041148 libdevel optional 
libclang-4.0-dev_4.0.1-8_amd64.deb
 ccc74e2085274d9d018f008735cfb7ba 4932678 debug optional 
libclang-common-4.0-dev-dbgsym_4.0.1-8_amd64.deb
 faa13cf3d97c1fe4ebc1691eb7e98578 2518786 libdevel optional 
libclang-common-4.0-dev_4.0.1-8_amd64.deb
 a0b29b5952cf814493b7ebc686f4d3b3 570648 debug extra 
libclang1-4.0-dbg_4.0.1-8_amd64.deb
 f03b7065438dfd8f4b0ce6df2543fb7b 6389992 devel optional 
libclang1-4.0_4.0.1-8_amd64.deb
 1509f23867ebb48f5e599c246053558a 113778 libdevel optional 
libfuzzer-4.0-dev_4.0.1-8_amd64.deb
 e393c47f26e5d5fb35d601ccf7f9c8d1 23842 debug extra 
liblld-4.0-dbg_4.0.1-8_amd64.deb
 b65eed2a7610377bfa3d51129021e6e9 52706 libdevel optional 
liblld-4.0-dev_4.0.1-8_amd64.deb
 827dfb2d4dc17f8c7b8f682443a0f051 1047832 libs optional 
liblld-4.0_4.0.1-8_amd64.deb
 7935bf7cea64a7582373d848663881a2 766572 debug extra 
liblldb-4.0-dbg_4.0.1-8_amd64.deb
 15920e74d20850da5fa60c97c8ddbfdc 4863328 libdevel optional 
liblldb-4.0-dev_4.0.1-8_amd64.deb
 15373a01a05a7817ef1c33772af04823 8214042 libs optional 
liblldb-4.0_4.0.1-8_amd64.deb
 3ff2b6f351a179ac6b12abfb7a6e479f 841988 debug extra 
libllvm4.0-dbg_4.0.1-8_amd64.deb
 395392a4a267128430e16978abf86e92 12400958 libs optional 
libllvm4.0_4.0.1-8_amd64.deb
 4b00ee324abdd19b145acc1000a0c2e9 102688 debug optional 
lld-4.0-dbgsym_4.0.1-8_amd64.deb
 b13b93a591d56c5d8b6c5b3f38cbc93e 717714 devel optional 
lld-4.0_4.0.1-8_amd64.deb
 d636f4ea90997ff0518c046460c9c0b2 198832 debug optional 
lldb-4.0-dbgsym_4.0.1-8_amd64.deb
 c83655c932c5399652ba6a1ae0881163 1567440 devel optional 
lldb-4.0_4.0.1-8_amd64.deb
 12585a6aba72ef670cb70f1d11a789af 5149838 debug optional 
llvm-4.0-dbgsym_4.0.1-8_amd64.deb
 23b5c8be7624079f5a3fb250ccda84cb 2533706 debug optional 
llvm-4.0-dev-dbgsym_4.0.1-8_amd64.deb
 638d5a152589259b255b69913a5a00ca 19524302 devel optional 
llvm-4.0-dev_4.0.1-8_amd64.deb
 a77892ae01aa27d1f1eec58d4af40f40 1757952 doc optional 
llvm-4.0-doc_4.0.1-8_all.deb
 493f2c55fde1d59927e2e0ae00508be7 247872 doc optional 
llvm-4.0-examples_4.0.1-8_all.deb
 7c783ff58bfe7a4dbfb577e95742321e 69728 debug optional 
llvm-4.0-runtime-dbgsym_4.0.1-8_amd64.deb
 40e1a0fd5a7f1eb3810a1c59310a9401 202686 devel optional 
llvm-4.0-runtime_4.0.1-8_amd64.deb
 18e0d4a5cee18ad570cc76b2715e20cc 54590 debug optional 
llvm-4.0-tools-dbgsym_4.0.1-8_amd64.deb
 5582489edb35db8a1269756cb657ef75 217108 devel optional 
llvm-4.0-tools_4.0.1-8_amd64.deb
 bce761d720a6fe8d4601fa3172fc1f13 3934942 devel optional 
llvm-4.0_4.0.1-8_amd64.deb
 15e75a12d5017ece87e997e6c8652ccd 19992 devel optional 
llvm-toolchain-4.0_4.0.1-8_amd64.buildinfo
 ebc1c764bc9a4c102cfd5c0e0992211a 47620 python optional 
python-clang-4.0_4.0.1-8_amd64.deb
 87ca36ece096e39a605ee45ea09dca34 110318 python optional 
python-lldb-4.0_4.0.1-8_amd64.deb

-----BEGIN PGP SIGNATURE-----

iQIzBAEBCAAdFiEEtg21mU05vsTRqVzPfmUo2nUvG+EFAlnodhEACgkQfmUo2nUv
G+HYeg/8D114vTc1EL+O5Zo4DjvPf3ZOmej2k6XtHokQxRGb4q9vvX8J6aZesR8T
vwpJax0meJz510x5eqR12/I3r5CpfqaKXxqKA3SlK8z1q724agpVyaRdsi3zXcwv
izlPPhaEpuythTjIa8ikmjur9HGBPd5aOZNVny+HQVXzzqn9aAWT7sE1kULLdlmC
S830hV0Hzt5f+LX8OTukC/DNc4QuSKDAX09hqx5qbWJCty9E4PiOC2d8VkxhPrQr
5PH6P67X1C0tCum/ahzlBqDk5rs0Ojf1tj2SnCbltk9Pj/isJ5HMjPrChkBZRP5z
AJRmsxppXsHQUaN24cRyaeeOj5SdpaAC63pg81InVF+Xu7Aj+avST6WnYlA1JYUC
JfutQhj2x+2QR4g7Ey4/rVHwza44UdE+y9o1Ieg2JcnIfN5p3bODoZV9OPhe+G9J
npVYBbvoVR8DMsl0mzyR+9nBFafz8j7cEPnMoa0vC2aCUOQdwEnQQejq5RN5SfWu
iz/pC7XgHHXMXRBvRmygbf+scFkt4kZnsDmFPir/gskOU+uU6/PlO4d8io/opTaE
/+1R3zEciMrmxU7FySewThuc0Za5vmoqHX6i9yqthFYEqfl5ui/+lzFxDYiRv09y
soO8jWhUuO3S7zQcKTRrHy3gpyKJYh9MgP+uM75bxm/y4HF9w9Y=
=6Vfw
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to