Package: clang-6.0; Maintainer for clang-6.0 is LLVM Packaging Team <pkg-llvm-team@lists.alioth.debian.org>; Source for clang-6.0 is src:llvm-toolchain-6.0 (PTS, buildd, popcon).
Reported by: Peter Palfrader <weasel@debian.org>
Date: Fri, 13 Jul 2018 15:03:02 UTC
Severity: important
Found in version llvm-toolchain-6.0/1:6.0.1-2
Fixed in versions llvm-toolchain-6.0/1:6.0.1-4, llvm-toolchain-7/1:7~+rc1-1~exp2, llvm-toolchain-snapshot/1:8~svn340819-1, llvm-toolchain-7/1:7~+rc2-1~exp3
Done: Sylvestre Ledru <sylvestre@debian.org>
Bug is archived. No further changes may be made.
View this report as an mbox folder, status mbox, maintainer mbox
Report forwarded
to debian-bugs-dist@lists.debian.org, LLVM Packaging Team <pkg-llvm-team@lists.alioth.debian.org>:
Bug#903709; Package clang-6.0.
(Fri, 13 Jul 2018 15:03:04 GMT) (full text, mbox, link).
Acknowledgement sent
to Peter Palfrader <weasel@debian.org>:
New Bug report received and forwarded. Copy sent to LLVM Packaging Team <pkg-llvm-team@lists.alioth.debian.org>.
(Fri, 13 Jul 2018 15:03:04 GMT) (full text, mbox, link).
Message #5 received at submit@bugs.debian.org (full text, mbox, reply):
Package: clang-6.0
Version: 1:6.0.1-2
Severity: normal
Clang fails to compile the following snippet on (at least) amd64 and i386
while gcc builds it:
#include <stdatomic.h>
void increment(atomic_size_t *arg) {
atomic_fetch_add(arg, 1);
}
Maybe something is fishy with the include paths, but it's not clear to me.
| [sid-amd64-sbuild] weasel@build-x86-07:~$ clang -v -c x.c
| clang version 6.0.1-2 (tags/RELEASE_601/final)
| Target: x86_64-pc-linux-gnu
| Thread model: posix
| InstalledDir: /usr/bin
| Found candidate GCC installation: /usr/bin/../lib/gcc/x86_64-linux-gnu/7
| Found candidate GCC installation: /usr/bin/../lib/gcc/x86_64-linux-gnu/7.3.0
| Found candidate GCC installation: /usr/bin/../lib/gcc/x86_64-linux-gnu/8
| Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/7
| Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/7.3.0
| Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/8
| Selected GCC installation: /usr/bin/../lib/gcc/x86_64-linux-gnu/7.3.0
| Candidate multilib: .;@m64
| Selected multilib: .;@m64
| "/usr/lib/llvm-6.0/bin/clang" -cc1 -triple x86_64-pc-linux-gnu -emit-obj -mrelax-all -disable-free -disable-llvm-verifier -discard-value-names -main-file-name x.c -mrelocation-model static -mthread-model posix -mdisable-fp-elim -fmath-errno -masm-verbose -mconstructor-aliases -munwind-tables -fuse-init-array -target-cpu x86-64 -dwarf-column-info -debugger-tuning=gdb -v -coverage-notes-file /home/weasel/x.gcno -resource-dir /usr/lib/llvm-6.0/lib/clang/6.0.1 -internal-isystem /usr/local/include -internal-isystem /usr/lib/llvm-6.0/lib/clang/6.0.1/include -internal-externc-isystem /usr/bin/../lib/gcc/x86_64-linux-gnu/7.3.0/include -internal-externc-isystem /usr/include/x86_64-linux-gnu -internal-externc-isystem /include -internal-externc-isystem /usr/include -fdebug-compilation-dir /home/weasel -ferror-limit 19 -fmessage-length 141 -fobjc-runtime=gcc -fdiagnostics-show-option -fcolor-diagnostics -o x.o -x c x.c
| clang -cc1 version 6.0.1 based upon LLVM 6.0.1 default target x86_64-pc-linux-gnu
| ignoring nonexistent directory "/include"
| #include "..." search starts here:
| #include <...> search starts here:
| /usr/local/include
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include
| /usr/bin/../lib/gcc/x86_64-linux-gnu/7.3.0/include
| /usr/include/x86_64-linux-gnu
| /usr/include
| End of search list.
| x.c:3:3: error: address argument to atomic operation must be a pointer to integer or pointer ('atomic_size_t *'
| (aka '_Atomic(unsigned long) *') invalid)
| atomic_fetch_add(arg, 1);
| ^~~~~~~~~~~~~~~~~~~~~~~~
| /usr/bin/../lib/gcc/x86_64-linux-gnu/7.3.0/include/stdatomic.h:192:36: note: expanded from macro 'atomic_fetch_add'
| #define atomic_fetch_add(PTR, VAL) __atomic_fetch_add ((PTR), (VAL), \
| ^ ~~~~~
| 1 error generated.
| [sid-amd64-sbuild] weasel@build-x86-07:~$ echo $?
| 1
Note that it builds with -nostdinc (albeit with warnings):
| [sid-amd64-sbuild] weasel@build-x86-07:~$ clang -v -nostdinc -I/usr/lib/llvm-6.0/lib/clang/6.0.1/include -c x.c
| clang version 6.0.1-2 (tags/RELEASE_601/final)
| Target: x86_64-pc-linux-gnu
| Thread model: posix
| InstalledDir: /usr/bin
| Found candidate GCC installation: /usr/bin/../lib/gcc/x86_64-linux-gnu/7
| Found candidate GCC installation: /usr/bin/../lib/gcc/x86_64-linux-gnu/7.3.0
| Found candidate GCC installation: /usr/bin/../lib/gcc/x86_64-linux-gnu/8
| Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/7
| Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/7.3.0
| Found candidate GCC installation: /usr/lib/gcc/x86_64-linux-gnu/8
| Selected GCC installation: /usr/bin/../lib/gcc/x86_64-linux-gnu/7.3.0
| Candidate multilib: .;@m64
| Selected multilib: .;@m64
| "/usr/lib/llvm-6.0/bin/clang" -cc1 -triple x86_64-pc-linux-gnu -emit-obj -mrelax-all -disable-free -disable-llvm-verifier -discard-value-names -main-file-name x.c -mrelocation-model static -mthread-model posix -mdisable-fp-elim -fmath-errno -masm-verbose -mconstructor-aliases -munwind-tables -fuse-init-array -target-cpu x86-64 -dwarf-column-info -debugger-tuning=gdb -v -coverage-notes-file /home/weasel/x.gcno -nostdsysteminc -nobuiltininc -resource-dir /usr/lib/llvm-6.0/lib/clang/6.0.1 -I /usr/lib/llvm-6.0/lib/clang/6.0.1/include -fdebug-compilation-dir /home/weasel -ferror-limit 19 -fmessage-length 141 -fobjc-runtime=gcc -fdiagnostics-show-option -fcolor-diagnostics -o x.o -x c x.c
| clang -cc1 version 6.0.1 based upon LLVM 6.0.1 default target x86_64-pc-linux-gnu
| #include "..." search starts here:
| #include <...> search starts here:
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include
| End of search list.
| In file included from x.c:1:
| In file included from /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdatomic.h:35:
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:186:10: warning: '__int_least32_t' macro redefined [-Wmacro-redefined]
| # define __int_least32_t int32_t
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:112:10: note: previous definition is here
| # define __int_least32_t int64_t
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:187:10: warning: '__uint_least32_t' macro redefined [-Wmacro-redefined]
| # define __uint_least32_t uint32_t
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:113:10: note: previous definition is here
| # define __uint_least32_t uint64_t
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:188:10: warning: '__int_least16_t' macro redefined [-Wmacro-redefined]
| # define __int_least16_t int32_t
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:114:10: note: previous definition is here
| # define __int_least16_t int64_t
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:189:10: warning: '__uint_least16_t' macro redefined [-Wmacro-redefined]
| # define __uint_least16_t uint32_t
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:115:10: note: previous definition is here
| # define __uint_least16_t uint64_t
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:190:10: warning: '__int_least8_t' macro redefined [-Wmacro-redefined]
| # define __int_least8_t int32_t
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:116:10: note: previous definition is here
| # define __int_least8_t int64_t
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:191:10: warning: '__uint_least8_t' macro redefined [-Wmacro-redefined]
| # define __uint_least8_t uint32_t
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:117:10: note: previous definition is here
| # define __uint_least8_t uint64_t
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:219:10: warning: '__int_least16_t' macro redefined [-Wmacro-redefined]
| # define __int_least16_t int16_t
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:188:10: note: previous definition is here
| # define __int_least16_t int32_t
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:220:10: warning: '__uint_least16_t' macro redefined [-Wmacro-redefined]
| # define __uint_least16_t uint16_t
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:189:10: note: previous definition is here
| # define __uint_least16_t uint32_t
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:221:10: warning: '__int_least8_t' macro redefined [-Wmacro-redefined]
| # define __int_least8_t int16_t
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:190:10: note: previous definition is here
| # define __int_least8_t int32_t
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:222:10: warning: '__uint_least8_t' macro redefined [-Wmacro-redefined]
| # define __uint_least8_t uint16_t
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:191:10: note: previous definition is here
| # define __uint_least8_t uint32_t
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:238:10: warning: '__int_least8_t' macro redefined [-Wmacro-redefined]
| # define __int_least8_t int8_t
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:221:10: note: previous definition is here
| # define __int_least8_t int16_t
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:239:10: warning: '__uint_least8_t' macro redefined [-Wmacro-redefined]
| # define __uint_least8_t uint8_t
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:222:10: note: previous definition is here
| # define __uint_least8_t uint16_t
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:376:11: warning: '__int32_c_suffix' macro redefined [-Wmacro-redefined]
| # define __int32_c_suffix __INT32_C_SUFFIX__
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:301:11: note: previous definition is here
| # define __int32_c_suffix __INT64_C_SUFFIX__
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:377:11: warning: '__int16_c_suffix' macro redefined [-Wmacro-redefined]
| # define __int16_c_suffix __INT32_C_SUFFIX__
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:302:11: note: previous definition is here
| # define __int16_c_suffix __INT64_C_SUFFIX__
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:378:11: warning: '__int8_c_suffix' macro redefined [-Wmacro-redefined]
| # define __int8_c_suffix __INT32_C_SUFFIX__
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:303:12: note: previous definition is here
| # define __int8_c_suffix __INT64_C_SUFFIX__
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:414:11: warning: '__int16_c_suffix' macro redefined [-Wmacro-redefined]
| # define __int16_c_suffix __INT16_C_SUFFIX__
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:377:11: note: previous definition is here
| # define __int16_c_suffix __INT32_C_SUFFIX__
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:415:11: warning: '__int8_c_suffix' macro redefined [-Wmacro-redefined]
| # define __int8_c_suffix __INT16_C_SUFFIX__
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:378:11: note: previous definition is here
| # define __int8_c_suffix __INT32_C_SUFFIX__
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:435:11: warning: '__int8_c_suffix' macro redefined [-Wmacro-redefined]
| # define __int8_c_suffix __INT8_C_SUFFIX__
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:415:11: note: previous definition is here
| # define __int8_c_suffix __INT16_C_SUFFIX__
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:569:10: warning: '__INT_LEAST32_MIN' macro redefined [-Wmacro-redefined]
| # define __INT_LEAST32_MIN INT32_MIN
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:478:10: note: previous definition is here
| # define __INT_LEAST32_MIN INT64_MIN
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:570:10: warning: '__INT_LEAST32_MAX' macro redefined [-Wmacro-redefined]
| # define __INT_LEAST32_MAX INT32_MAX
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:479:10: note: previous definition is here
| # define __INT_LEAST32_MAX INT64_MAX
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:571:10: warning: '__UINT_LEAST32_MAX' macro redefined [-Wmacro-redefined]
| # define __UINT_LEAST32_MAX UINT32_MAX
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:480:10: note: previous definition is here
| # define __UINT_LEAST32_MAX UINT64_MAX
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:572:10: warning: '__INT_LEAST16_MIN' macro redefined [-Wmacro-redefined]
| # define __INT_LEAST16_MIN INT32_MIN
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:481:10: note: previous definition is here
| # define __INT_LEAST16_MIN INT64_MIN
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:573:10: warning: '__INT_LEAST16_MAX' macro redefined [-Wmacro-redefined]
| # define __INT_LEAST16_MAX INT32_MAX
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:482:10: note: previous definition is here
| # define __INT_LEAST16_MAX INT64_MAX
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:574:10: warning: '__UINT_LEAST16_MAX' macro redefined [-Wmacro-redefined]
| # define __UINT_LEAST16_MAX UINT32_MAX
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:483:10: note: previous definition is here
| # define __UINT_LEAST16_MAX UINT64_MAX
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:575:10: warning: '__INT_LEAST8_MIN' macro redefined [-Wmacro-redefined]
| # define __INT_LEAST8_MIN INT32_MIN
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:484:10: note: previous definition is here
| # define __INT_LEAST8_MIN INT64_MIN
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:576:10: warning: '__INT_LEAST8_MAX' macro redefined [-Wmacro-redefined]
| # define __INT_LEAST8_MAX INT32_MAX
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:485:10: note: previous definition is here
| # define __INT_LEAST8_MAX INT64_MAX
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:577:10: warning: '__UINT_LEAST8_MAX' macro redefined [-Wmacro-redefined]
| # define __UINT_LEAST8_MAX UINT32_MAX
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:486:10: note: previous definition is here
| # define __UINT_LEAST8_MAX UINT64_MAX
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:613:10: warning: '__INT_LEAST16_MIN' macro redefined [-Wmacro-redefined]
| # define __INT_LEAST16_MIN INT16_MIN
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:572:10: note: previous definition is here
| # define __INT_LEAST16_MIN INT32_MIN
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:614:10: warning: '__INT_LEAST16_MAX' macro redefined [-Wmacro-redefined]
| # define __INT_LEAST16_MAX INT16_MAX
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:573:10: note: previous definition is here
| # define __INT_LEAST16_MAX INT32_MAX
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:615:10: warning: '__UINT_LEAST16_MAX' macro redefined [-Wmacro-redefined]
| # define __UINT_LEAST16_MAX UINT16_MAX
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:574:10: note: previous definition is here
| # define __UINT_LEAST16_MAX UINT32_MAX
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:616:10: warning: '__INT_LEAST8_MIN' macro redefined [-Wmacro-redefined]
| # define __INT_LEAST8_MIN INT16_MIN
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:575:10: note: previous definition is here
| # define __INT_LEAST8_MIN INT32_MIN
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:617:10: warning: '__INT_LEAST8_MAX' macro redefined [-Wmacro-redefined]
| # define __INT_LEAST8_MAX INT16_MAX
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:576:10: note: previous definition is here
| # define __INT_LEAST8_MAX INT32_MAX
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:618:10: warning: '__UINT_LEAST8_MAX' macro redefined [-Wmacro-redefined]
| # define __UINT_LEAST8_MAX UINT16_MAX
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:577:10: note: previous definition is here
| # define __UINT_LEAST8_MAX UINT32_MAX
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:635:10: warning: '__INT_LEAST8_MIN' macro redefined [-Wmacro-redefined]
| # define __INT_LEAST8_MIN INT8_MIN
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:616:10: note: previous definition is here
| # define __INT_LEAST8_MIN INT16_MIN
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:636:10: warning: '__INT_LEAST8_MAX' macro redefined [-Wmacro-redefined]
| # define __INT_LEAST8_MAX INT8_MAX
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:617:10: note: previous definition is here
| # define __INT_LEAST8_MAX INT16_MAX
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:637:10: warning: '__UINT_LEAST8_MAX' macro redefined [-Wmacro-redefined]
| # define __UINT_LEAST8_MAX UINT8_MAX
| ^
| /usr/lib/llvm-6.0/lib/clang/6.0.1/include/stdint.h:618:10: note: previous definition is here
| # define __UINT_LEAST8_MAX UINT16_MAX
| ^
| 36 warnings generated.
| [sid-amd64-sbuild] weasel@build-x86-07:~$ echo $?
| 0
cf. tor#26779: atomic_init() and friends failing on clang
https://bugs.torproject.org/26779
--
| .''`. ** Debian **
Peter Palfrader | : :' : The universal
https://www.palfrader.org/ | `. `' Operating System
| `- https://www.debian.org/
Information forwarded
to debian-bugs-dist@lists.debian.org, LLVM Packaging Team <pkg-llvm-team@lists.alioth.debian.org>:
Bug#903709; Package clang-6.0.
(Thu, 09 Aug 2018 06:27:03 GMT) (full text, mbox, link).
Acknowledgement sent
to Peter Palfrader <weasel@debian.org>:
Extra info received and forwarded to list. Copy sent to LLVM Packaging Team <pkg-llvm-team@lists.alioth.debian.org>.
(Thu, 09 Aug 2018 06:27:03 GMT) (full text, mbox, link).
Message #10 received at 903709@bugs.debian.org (full text, mbox, reply):
severity 903709 important
thanks
On Fri, 13 Jul 2018, Peter Palfrader wrote:
> Package: clang-6.0
> Version: 1:6.0.1-2
> Severity: normal
>
> Clang fails to compile the following snippet on (at least) amd64 and i386
> while gcc builds it:
>
> #include <stdatomic.h>
> void increment(atomic_size_t *arg) {
> atomic_fetch_add(arg, 1);
> }
>
> Maybe something is fishy with the include paths, but it's not clear to me.
Ping?
This breaks building perfectly fine software.
--
| .''`. ** Debian **
Peter Palfrader | : :' : The universal
https://www.palfrader.org/ | `. `' Operating System
| `- https://www.debian.org/
Severity set to 'important' from 'normal'
Request was from Peter Palfrader <weasel@debian.org>
to control@bugs.debian.org.
(Thu, 09 Aug 2018 06:27:04 GMT) (full text, mbox, link).
Information forwarded
to debian-bugs-dist@lists.debian.org, LLVM Packaging Team <pkg-llvm-team@lists.alioth.debian.org>:
Bug#903709; Package clang-6.0.
(Wed, 15 Aug 2018 13:21:03 GMT) (full text, mbox, link).
Acknowledgement sent
to Kurt Roeckx <kurt@roeckx.be>:
Extra info received and forwarded to list. Copy sent to LLVM Packaging Team <pkg-llvm-team@lists.alioth.debian.org>.
(Wed, 15 Aug 2018 13:21:03 GMT) (full text, mbox, link).
Message #17 received at 903709@bugs.debian.org (full text, mbox, reply):
Hi,
There seem to be many reports like this, going back years. But I
don't see the problem with clang-5.0, but I do with clang-6.0.
I've read somewhere that this might be some regression between
6.0.0 and 6.0.1, but I'm not sure about it.
Anyway, I also get:
include/internal/refcount.h:34:12: error: address argument to atomic operation must be a pointer to integer or pointer ('_Atomic(int) *' invalid)
*ret = atomic_fetch_add_explicit(val, 1, memory_order_relaxed) + 1;
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/usr/bin/../lib/gcc/x86_64-linux-gnu/8/include/stdatomic.h:195:6: note: expanded from macro 'atomic_fetch_add_explicit'
__atomic_fetch_add ((PTR), (VAL), (MO))
^ ~~~~~
The problem is that clang includes gcc's stdatmics.h, and gcc's
header file uses gcc extentions to remove the atomic qualifier and
clang doesn't support that.
From what I understand, including gcc's headers was a workaround
for a bug that is now fixed.
I think the most relevant upstream bug for this is:
https://bugs.llvm.org/show_bug.cgi?id=23556
https://bugs.llvm.org/show_bug.cgi?id=22740
Kurt
Information forwarded
to debian-bugs-dist@lists.debian.org, LLVM Packaging Team <pkg-llvm-team@lists.alioth.debian.org>:
Bug#903709; Package clang-6.0.
(Wed, 15 Aug 2018 13:27:03 GMT) (full text, mbox, link).
Acknowledgement sent
to Sylvestre Ledru <sylvestre@debian.org>:
Extra info received and forwarded to list. Copy sent to LLVM Packaging Team <pkg-llvm-team@lists.alioth.debian.org>.
(Wed, 15 Aug 2018 13:27:03 GMT) (full text, mbox, link).
Message #22 received at 903709@bugs.debian.org (full text, mbox, reply):
[Message part 1 (text/plain, inline)]
Hello
I guess it is because I added force-gcc-header-obj.diff back :/
https://salsa.debian.org/pkg-llvm-team/llvm-toolchain/blob/6.0/debian/patches/force-gcc-header-obj.diff
I will disable it.
Sorry about that
S
On 15/08/2018 15:16, Kurt Roeckx wrote:
> Hi,
>
> There seem to be many reports like this, going back years. But I
> don't see the problem with clang-5.0, but I do with clang-6.0.
> I've read somewhere that this might be some regression between
> 6.0.0 and 6.0.1, but I'm not sure about it.
>
> Anyway, I also get:
> include/internal/refcount.h:34:12: error: address argument to atomic operation must be a pointer to integer or pointer ('_Atomic(int) *' invalid)
> *ret = atomic_fetch_add_explicit(val, 1, memory_order_relaxed) + 1;
> ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> /usr/bin/../lib/gcc/x86_64-linux-gnu/8/include/stdatomic.h:195:6: note: expanded from macro 'atomic_fetch_add_explicit'
> __atomic_fetch_add ((PTR), (VAL), (MO))
> ^ ~~~~~
>
> The problem is that clang includes gcc's stdatmics.h, and gcc's
> header file uses gcc extentions to remove the atomic qualifier and
> clang doesn't support that.
>
> From what I understand, including gcc's headers was a workaround
> for a bug that is now fixed.
>
> I think the most relevant upstream bug for this is:
> https://bugs.llvm.org/show_bug.cgi?id=23556
> https://bugs.llvm.org/show_bug.cgi?id=22740
>
>
> Kurt
>
[Message part 2 (text/html, inline)]
Reply sent
to Sylvestre Ledru <sylvestre@debian.org>:
You have taken responsibility.
(Wed, 15 Aug 2018 15:09:07 GMT) (full text, mbox, link).
Notification sent
to Peter Palfrader <weasel@debian.org>:
Bug acknowledged by developer.
(Wed, 15 Aug 2018 15:09:07 GMT) (full text, mbox, link).
Message #27 received at 903709-close@bugs.debian.org (full text, mbox, reply):
Source: llvm-toolchain-6.0
Source-Version: 1:6.0.1-4
We believe that the bug you reported is fixed in the latest version of
llvm-toolchain-6.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 903709@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Sylvestre Ledru <sylvestre@debian.org> (supplier of updated llvm-toolchain-6.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 ftpmaster@ftp-master.debian.org)
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
Format: 1.8
Date: Wed, 15 Aug 2018 15:25:42 +0200
Source: llvm-toolchain-6.0
Binary: clang-6.0 clang-tools-6.0 clang-format-6.0 clang-tidy-6.0 clang-6.0-doc libclang1-6.0 libclang-6.0-dev libclang-common-6.0-dev libfuzzer-6.0-dev python-clang-6.0 clang-6.0-examples libllvm6.0 llvm-6.0 llvm-6.0-runtime llvm-6.0-dev llvm-6.0-tools llvm-6.0-doc llvm-6.0-examples lld-6.0 liblld-6.0 liblld-6.0-dev lldb-6.0 liblldb-6.0 python-lldb-6.0 liblldb-6.0-dev
Architecture: source
Version: 1:6.0.1-4
Distribution: unstable
Urgency: medium
Maintainer: LLVM Packaging Team <pkg-llvm-team@lists.alioth.debian.org>
Changed-By: Sylvestre Ledru <sylvestre@debian.org>
Description:
clang-6.0 - C, C++ and Objective-C compiler
clang-6.0-doc - C, C++ and Objective-C compiler - Documentation
clang-6.0-examples - Clang examples
clang-format-6.0 - Tool to format C/C++/Obj-C code
clang-tidy-6.0 - clang-based C++ linter tool
clang-tools-6.0 - clang-based tools for C/C++ developments
libclang-6.0-dev - clang library - Development package
libclang-common-6.0-dev - clang library - Common development package
libclang1-6.0 - C interface to the clang library
libfuzzer-6.0-dev - Library for coverage-guided fuzz testing
liblld-6.0 - LLVM-based linker, library
liblld-6.0-dev - LLVM-based linker, header files
liblldb-6.0 - Next generation, high-performance debugger, library
liblldb-6.0-dev - Next generation, high-performance debugger, header files
libllvm6.0 - Modular compiler and toolchain technologies, runtime library
lld-6.0 - LLVM-based linker
lldb-6.0 - Next generation, high-performance debugger
llvm-6.0 - Modular compiler and toolchain technologies
llvm-6.0-dev - Modular compiler and toolchain technologies, libraries and header
llvm-6.0-doc - Modular compiler and toolchain technologies, documentation
llvm-6.0-examples - Modular compiler and toolchain technologies, examples
llvm-6.0-runtime - Modular compiler and toolchain technologies, IR interpreter
llvm-6.0-tools - Modular compiler and toolchain technologies, tools
python-clang-6.0 - Clang Python Bindings
python-lldb-6.0 - Next generation, high-performance debugger, python lib
Closes: 903709
Changes:
llvm-toolchain-6.0 (1:6.0.1-4) unstable; urgency=medium
.
* Disable force-gcc-header-obj.diff as it is introducing
some regressions in the search headers
(Closes: #903709)
* Standards-Version: 4.2.0
Checksums-Sha1:
cac9cf65c60e0efb294157d537469fa1563ad43c 6570 llvm-toolchain-6.0_6.0.1-4.dsc
fb5a0d8adf4e526586994001d9bedca85e8d03c5 84932 llvm-toolchain-6.0_6.0.1-4.debian.tar.xz
bdb629f4579a616c71eced69f239dc441ade89ed 20659 llvm-toolchain-6.0_6.0.1-4_amd64.buildinfo
Checksums-Sha256:
f2ae928389c92f06814d4ade19105ee561b7a80f508de1862498e3aa208b4eb4 6570 llvm-toolchain-6.0_6.0.1-4.dsc
04971bbbc3196f23d25abdb3c4f694ab87e5691b8e69f2be6be636c96b92a11c 84932 llvm-toolchain-6.0_6.0.1-4.debian.tar.xz
bf1ef9bbcc55034c701ce5f3199eec15d1d4da97d168eeac2ac552eef28d4878 20659 llvm-toolchain-6.0_6.0.1-4_amd64.buildinfo
Files:
09794a05e09108a41e0df6f7651c96e6 6570 devel optional llvm-toolchain-6.0_6.0.1-4.dsc
75284370258a0c8aa4814aacdbe52325 84932 devel optional llvm-toolchain-6.0_6.0.1-4.debian.tar.xz
df46615b3773013fb7afa44ca7cc96f9 20659 devel optional llvm-toolchain-6.0_6.0.1-4_amd64.buildinfo
-----BEGIN PGP SIGNATURE-----
iQIzBAEBCAAdFiEEtg21mU05vsTRqVzPfmUo2nUvG+EFAlt0OfAACgkQfmUo2nUv
G+EvZQ//bdD+SBEmguOIFfXsx+8hjen43Q7w7w5H1SfLFJzHxPFUh0dt+CfIY/71
bVfZJLP3iH+ig2NYUnW43sLCG0KKBdLOFbUIFt1VQKx+Z0oNp142kop7qOSks+WV
VzL8KOtp0bJfJ05BjHE+1pbX5zRhdIrANQsdo8N5Eo5dMA9EbrpnzY2mwmWoNDP3
n7YTLtefJMCJOP3SaZ5U5b8KL+mTI69ezEzD/yuUVdQx3UDS5b1S9UX+TFvxmAYz
x4hHxcvl+hjZFjUPiUGBpnmQIve3GRjCTEqETcWnMkzpIgcKpov0LMwgVyvlqlnA
YLsY7jDQsPg/RBcksysPAIKq6uW09P61zKTBI9o7mXbMpSMc39ZvzHWq+5xboaMd
jxoEab89hiIxybDn8Em8KYCa/qouvzeOoA11DeKcLJU+0m9y8cdAW5Mu5mMVnV/7
TLEFRbrOne4XxFJJPEkzEKkFLVoirQaoY7v8gklC99bKPQ8TTst0pXg6bp9hWh3z
KimsoUpmnHnr1zfKYUB8IXp0VhCRs5cZMpNmboPHFL49SfrMhXNCzWKldn3hKjps
T3FPCjh0HbS4vL8YfQY8TZCswfGzZM0U64czGBIbZgAO5x+gZ54nBON+boP0BUF5
r1qIdf4P4xvzprg95LzZnK1qqYEo/Az7okRVNXZfWfdrNSjjIqQ=
=vxVr
-----END PGP SIGNATURE-----
Reply sent
to Sylvestre Ledru <sylvestre@debian.org>:
You have taken responsibility.
(Fri, 24 Aug 2018 21:03:13 GMT) (full text, mbox, link).
Notification sent
to Peter Palfrader <weasel@debian.org>:
Bug acknowledged by developer.
(Fri, 24 Aug 2018 21:03:13 GMT) (full text, mbox, link).
Message #32 received at 903709-close@bugs.debian.org (full text, mbox, reply):
Source: llvm-toolchain-7
Source-Version: 1:7~+rc1-1~exp2
We believe that the bug you reported is fixed in the latest version of
llvm-toolchain-7, 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 903709@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Sylvestre Ledru <sylvestre@debian.org> (supplier of updated llvm-toolchain-7 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@ftp-master.debian.org)
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
Format: 1.8
Date: Wed, 15 Aug 2018 15:27:57 +0200
Source: llvm-toolchain-7
Binary: clang-7 clang-tools-7 clang-format-7 clang-tidy-7 clang-7-doc libclang1-7 libclang-7-dev libclang-common-7-dev libfuzzer-7-dev python-clang-7 clang-7-examples libllvm7 llvm-7 llvm-7-runtime llvm-7-dev llvm-7-tools llvm-7-doc llvm-7-examples lld-7 liblld-7 liblld-7-dev lldb-7 liblldb-7 python-lldb-7 liblldb-7-dev libomp-7-dev libomp5-7 libomp-7-doc libc++1-7 libc++-7-dev libc++abi1-7 libc++abi-7-dev libc++-7-helpers
Architecture: source amd64 all
Version: 1:7~+rc1-1~exp2
Distribution: experimental
Urgency: medium
Maintainer: LLVM Packaging Team <pkg-llvm-team@lists.alioth.debian.org>
Changed-By: Sylvestre Ledru <sylvestre@debian.org>
Description:
clang-7 - C, C++ and Objective-C compiler
clang-7-doc - C, C++ and Objective-C compiler - Documentation
clang-7-examples - Clang examples
clang-format-7 - Tool to format C/C++/Obj-C code
clang-tidy-7 - clang-based C++ linter tool
clang-tools-7 - clang-based tools for C/C++ developments
libc++-7-dev - LLVM C++ Standard library (development files)
libc++-7-helpers - LLVM C++ Standard library - build helpers
libc++1-7 - LLVM C++ Standard library
libc++abi-7-dev - LLVM low level support for a standard C++ library (development fi
libc++abi1-7 - LLVM low level support for a standard C++ library
libclang-7-dev - clang library - Development package
libclang-common-7-dev - clang library - Common development package
libclang1-7 - C interface to the clang library
libfuzzer-7-dev - Library for coverage-guided fuzz testing
liblld-7 - LLVM-based linker, library
liblld-7-dev - LLVM-based linker, header files
liblldb-7 - Next generation, high-performance debugger, library
liblldb-7-dev - Next generation, high-performance debugger, header files
libllvm7 - Modular compiler and toolchain technologies, runtime library
libomp-7-dev - LLVM OpenMP runtime - dev package
libomp-7-doc - LLVM OpenMP runtime - Documentation
libomp5-7 - LLVM OpenMP runtime
lld-7 - LLVM-based linker
lldb-7 - Next generation, high-performance debugger
llvm-7 - Modular compiler and toolchain technologies
llvm-7-dev - Modular compiler and toolchain technologies, libraries and header
llvm-7-doc - Modular compiler and toolchain technologies, documentation
llvm-7-examples - Modular compiler and toolchain technologies, examples
llvm-7-runtime - Modular compiler and toolchain technologies, IR interpreter
llvm-7-tools - Modular compiler and toolchain technologies, tools
python-clang-7 - Clang Python Bindings
python-lldb-7 - Next generation, high-performance debugger, python lib
Closes: 903709
Changes:
llvm-toolchain-7 (1:7~+rc1-1~exp2) experimental; urgency=medium
.
* Disable force-gcc-header-obj.diff as it is introducing
some regressions in the search headers
(Closes: #903709)
* libc++-7-dev should depend on libc++-7-helpers (and not
libc++-helpers)
* Fix the links in the helper package
.
[ Reshabh Sharma ]
* Fix the path to libc++ header
* libc++.so was in two packages
Checksums-Sha1:
6acec4d59f9fbe59082ffc53a4384e58ee6e54d1 7832 llvm-toolchain-7_7~+rc1-1~exp2.dsc
c4574eac4a5df833b92bfcebaae825bf638f07c9 72092 llvm-toolchain-7_7~+rc1-1~exp2.debian.tar.xz
0ea1df19ade62faec17dedc9ad7fcdd2116da5e0 4304604 clang-7-dbgsym_7~+rc1-1~exp2_amd64.deb
1ad9f8bc6db4783e037245e9ed897d8098bd92ae 956632 clang-7-doc_7~+rc1-1~exp2_all.deb
4d2e5b01fbd9f61a695fd6e680b3012024ed24e9 36116 clang-7-examples_7~+rc1-1~exp2_amd64.deb
40a0705c2a644ef72768fed93819653ec7546738 9689304 clang-7_7~+rc1-1~exp2_amd64.deb
2a0010ae637284d981297e3b76bdae81dc993770 38396 clang-format-7-dbgsym_7~+rc1-1~exp2_amd64.deb
2e57910a2d43355dacb740ba6f15690d25e10719 622368 clang-format-7_7~+rc1-1~exp2_amd64.deb
9b67fbbe1c13a3f70c98121f941c23bc166a9adc 625628 clang-tidy-7-dbgsym_7~+rc1-1~exp2_amd64.deb
f1e3482ed2e1148c497a31a22263e768105e0b69 7313760 clang-tidy-7_7~+rc1-1~exp2_amd64.deb
ac820687f4b13a7abddd94b998675e513593bb8f 3139880 clang-tools-7-dbgsym_7~+rc1-1~exp2_amd64.deb
f7356de8c4cb8b114abc7645e701539c4050f913 68479364 clang-tools-7_7~+rc1-1~exp2_amd64.deb
cff69bfd4a01d9b6568759f4b332a4c22ad95d38 623416 libc++-7-dev_7~+rc1-1~exp2_amd64.deb
a0cb9775dc718d7a0bf614df278ab810487374e8 27684 libc++-7-helpers_7~+rc1-1~exp2_all.deb
83978e188a88590e3b1d465a3347b32bbe7c8cca 201816 libc++1-7_7~+rc1-1~exp2_amd64.deb
21bd386118a3292014d2733752b7b6c654a63766 96756 libc++abi-7-dev_7~+rc1-1~exp2_amd64.deb
7d9ce5d2a29db37077aff5a3794fa4ac4d308d29 81132 libc++abi1-7_7~+rc1-1~exp2_amd64.deb
b7511f30265375a639c20c60e95f880c0042df41 22273736 libclang-7-dev_7~+rc1-1~exp2_amd64.deb
5364c83f89f556a195ed0a1073521bc1a25a8309 13078140 libclang-common-7-dev-dbgsym_7~+rc1-1~exp2_amd64.deb
2d12e574b57918acf589c7ef12c9e91fef52660f 3582340 libclang-common-7-dev_7~+rc1-1~exp2_amd64.deb
acf30948609ea3abc4df121ae66a771678fda807 624128 libclang1-7-dbgsym_7~+rc1-1~exp2_amd64.deb
643fba6afe04eee8bb5635b6f98665ec72ad320b 7382064 libclang1-7_7~+rc1-1~exp2_amd64.deb
bc3a18e43e3cf4c29bda898f3047ab80d087d35a 142992 libfuzzer-7-dev_7~+rc1-1~exp2_amd64.deb
5589b006aebe003a7e3c30a29215d70e9208bafa 57484 liblld-7-dev_7~+rc1-1~exp2_amd64.deb
f191361538bb8b2d7abfaa0c29d5a0b4a52686c5 1287744 liblld-7_7~+rc1-1~exp2_amd64.deb
e67f7698e4423fe8853ef24ab1bcade4c0b0ce44 844860 liblldb-7-dbgsym_7~+rc1-1~exp2_amd64.deb
44831e4eb60e17d34f0e8cb768e61180f1a163db 5289360 liblldb-7-dev_7~+rc1-1~exp2_amd64.deb
f9b8aed76c7d883e9e5cdae5abc3a1fa20792d19 9314628 liblldb-7_7~+rc1-1~exp2_amd64.deb
8376d8eae955c13919cb949ff93ec1d677495f3b 1102640 libllvm7-dbgsym_7~+rc1-1~exp2_amd64.deb
ffeb321430e91976b50d506fe0fd3dad7be2fcc6 15775496 libllvm7_7~+rc1-1~exp2_amd64.deb
3b61a1f6b3e2c5fb8baea4b482947dae69b1797e 4556 libomp-7-dev-dbgsym_7~+rc1-1~exp2_amd64.deb
8d8261c3c3b8ea6f810a7b72328bef15b6e1ba4e 53316 libomp-7-dev_7~+rc1-1~exp2_amd64.deb
6f69f4cacc013b66941990828dab00b70e8cc05c 841232 libomp-7-doc_7~+rc1-1~exp2_all.deb
79acc83a57f603cd1a82b767d342a0e029042ad6 76944 libomp5-7-dbgsym_7~+rc1-1~exp2_amd64.deb
e2fe4baed9b84f1ed1880de84c22b1cbd51eb6ac 350556 libomp5-7_7~+rc1-1~exp2_amd64.deb
0696f4249d0814c5255bf1b928bbd4a1e0b5f2d1 113808 lld-7-dbgsym_7~+rc1-1~exp2_amd64.deb
34fc845be4ac72868c5cbcc6d2b5c23ff38c4676 919516 lld-7_7~+rc1-1~exp2_amd64.deb
137f1838bb2f2905974fdb48dd1b3474ae974268 950096 lldb-7-dbgsym_7~+rc1-1~exp2_amd64.deb
e29cde3491b24f5f2c53b8722821b6a386c3ac01 10506472 lldb-7_7~+rc1-1~exp2_amd64.deb
8bed78c47a7f79c7aa22fb7f3a1924b61fb42468 7447276 llvm-7-dbgsym_7~+rc1-1~exp2_amd64.deb
432c2c4737105a6a90191904d3ebe846fec029c3 3650580 llvm-7-dev-dbgsym_7~+rc1-1~exp2_amd64.deb
c43315039bac8097f1746a43398cefe8d99e54e8 24953096 llvm-7-dev_7~+rc1-1~exp2_amd64.deb
5fb4d9022aafcfa51ce0b9f44444b4f717b8c1b6 2022676 llvm-7-doc_7~+rc1-1~exp2_all.deb
b2922f9a4b5007d3ae35bc6c0bf1457bb3494ec7 251716 llvm-7-examples_7~+rc1-1~exp2_all.deb
e9f96259ec90d0d68f1a4dc2856bee547d344aef 80456 llvm-7-runtime-dbgsym_7~+rc1-1~exp2_amd64.deb
4f1df18f5153f7be5405017632cf60b48ec71d2c 200884 llvm-7-runtime_7~+rc1-1~exp2_amd64.deb
b17320ee99552f860da0fe2fd478c2fa92d03221 66192 llvm-7-tools-dbgsym_7~+rc1-1~exp2_amd64.deb
0e02ed02268243eefc01d5cc66b85ca20a7ed705 243368 llvm-7-tools_7~+rc1-1~exp2_amd64.deb
b43b0d6adb9c3575f235ea6d0feb5d144773eb3e 5133796 llvm-7_7~+rc1-1~exp2_amd64.deb
86117f65361e193d4cc2229d3d0f81410d0e6b54 24159 llvm-toolchain-7_7~+rc1-1~exp2_amd64.buildinfo
f85460f718da4bb407d52d6c5c11668df9ef4421 52020 python-clang-7_7~+rc1-1~exp2_amd64.deb
da00d082cda00d6339beb27f249d95810194557f 116352 python-lldb-7_7~+rc1-1~exp2_amd64.deb
Checksums-Sha256:
e4d3a1f696fff0e6bea9806a2b73fffe76698e1dfbea33d187f08bc12c8528ae 7832 llvm-toolchain-7_7~+rc1-1~exp2.dsc
cb91415dde7eb7812b5dbf568071aed31595efd5490a400e78ddeafb4b06f6c7 72092 llvm-toolchain-7_7~+rc1-1~exp2.debian.tar.xz
5c7556cd624ad56f4b42af043f2dd1b173069ce51b97ec019edf1ceac990450a 4304604 clang-7-dbgsym_7~+rc1-1~exp2_amd64.deb
4586c4600cc306e952aaa185787fec7ba93cd82073a0a54cc3cba338229ac044 956632 clang-7-doc_7~+rc1-1~exp2_all.deb
cfb0325e04c3e28d587a9347eff381163f42a1e8dbcdecb8d845af84b3440a8d 36116 clang-7-examples_7~+rc1-1~exp2_amd64.deb
ab7adc530826e15ae9830d7086417bf3f2f63c3140533fae98c2c790fbe64b4e 9689304 clang-7_7~+rc1-1~exp2_amd64.deb
5923b0c5d4c61f6eb0bdde9d8274708898974856085645f521092e7d81284f39 38396 clang-format-7-dbgsym_7~+rc1-1~exp2_amd64.deb
9ec2811d9a6f174bbfc3b664bbbabc075f98c4af9535622224bae1ecd5fb08a4 622368 clang-format-7_7~+rc1-1~exp2_amd64.deb
86d3b5e2f3b080eecb9d2559217ad4ff88cca0d8a223d06d36c4a2c942f2fdb1 625628 clang-tidy-7-dbgsym_7~+rc1-1~exp2_amd64.deb
50200859a6d35dd4edc24198b219004af47d4d53fbf9814c8a4a498a94607fb5 7313760 clang-tidy-7_7~+rc1-1~exp2_amd64.deb
a5f3572aa4ddd60ec1e6e6f5b04da4db72a40557e6b0a22cecc64a517489c893 3139880 clang-tools-7-dbgsym_7~+rc1-1~exp2_amd64.deb
b5284bae326aeda7a516af736fd445943f297c5534435c27a99593fd01968568 68479364 clang-tools-7_7~+rc1-1~exp2_amd64.deb
21dcdd3ebf859a546e13d711b5b8a8536ab6a344eb295691a8427eb16ec283c9 623416 libc++-7-dev_7~+rc1-1~exp2_amd64.deb
6aa6141d6864b479d1ff3cba61f3d939d0044d5e8ec15370c4a3889c62744e89 27684 libc++-7-helpers_7~+rc1-1~exp2_all.deb
5ec33104527a333e2bd43738a7643b1e9787ca7feeca6a71ebe8ddb266685450 201816 libc++1-7_7~+rc1-1~exp2_amd64.deb
b2e07b3c99d59a258f4378442110b470d21edbaed5b3eadfa6eeec96b59c4abb 96756 libc++abi-7-dev_7~+rc1-1~exp2_amd64.deb
4550a9b8c1c6ffb37c7558f726dd5ad3ebe6378109ad99423d4f3ec7544345db 81132 libc++abi1-7_7~+rc1-1~exp2_amd64.deb
9cd0e304ea4411579e7d685ef0bebc9ce80235ae2002b0dfc36ff6ed30628ca7 22273736 libclang-7-dev_7~+rc1-1~exp2_amd64.deb
44d20fbf6ec1f8ffff7fd9ca36c16e64a64cbef0eb8c3d18ffac5878d70ad213 13078140 libclang-common-7-dev-dbgsym_7~+rc1-1~exp2_amd64.deb
a3e58f5698189b9f25d0882f2b4c6822331f7b38aef6e771ae46ff5d04cc8926 3582340 libclang-common-7-dev_7~+rc1-1~exp2_amd64.deb
324e8de5c7780cff6d145af4e49a4b9960436d12bba7140f0df716998dddf843 624128 libclang1-7-dbgsym_7~+rc1-1~exp2_amd64.deb
792c1690fd854c51e44535f83b92604901c09fb7668a3adede9ab18489e8354e 7382064 libclang1-7_7~+rc1-1~exp2_amd64.deb
63b3fbfec1da4bb945f94c4f057c7fa6314fd0b07de6ca5b8d4d90e930210f5f 142992 libfuzzer-7-dev_7~+rc1-1~exp2_amd64.deb
2f094c0cd0b8f5b9a025d0f9329a20aab76f43f1adfc03fd1ddee70ec51fafeb 57484 liblld-7-dev_7~+rc1-1~exp2_amd64.deb
77b8fc6db395d468824abef1e1cbcb8c9a53467932e5ccf3ed9b8a8377ad8315 1287744 liblld-7_7~+rc1-1~exp2_amd64.deb
af72144df9ac22a536ed8126b585bdc1c533bba9c314d89e66bc8c958d2ab44b 844860 liblldb-7-dbgsym_7~+rc1-1~exp2_amd64.deb
8e322fd5cb2293c36b7c751496eeb622060f541e91b1d6b0e50297b964ef604f 5289360 liblldb-7-dev_7~+rc1-1~exp2_amd64.deb
61719044e3b6bce9568ae6f27a16d7e93b7145169bfece73e59273a8189f835f 9314628 liblldb-7_7~+rc1-1~exp2_amd64.deb
c537cf698c4148c9a6f83d8b8c21a16313e9059875b6b643cfca8c32e9b661b0 1102640 libllvm7-dbgsym_7~+rc1-1~exp2_amd64.deb
d9aad5d2880f763bbacc33bdee46c3d491706edbf059c83a25af3720888d9346 15775496 libllvm7_7~+rc1-1~exp2_amd64.deb
c4d716ce358a0e7987fc43a64f786741e20afd9c6f232c863fca7d02bca35dec 4556 libomp-7-dev-dbgsym_7~+rc1-1~exp2_amd64.deb
c0a35503678dd4445733b3cdf0597dd18e925944c256f722c4082e2d98bb8ae1 53316 libomp-7-dev_7~+rc1-1~exp2_amd64.deb
d451a7f165abed12f8b74490b9e6f79f68f24ffedea207ce8b1388c03b151ac8 841232 libomp-7-doc_7~+rc1-1~exp2_all.deb
95ee45a5e0fccb7343c5e665b3606eff9bb2fdc4f15180399b2332368add646b 76944 libomp5-7-dbgsym_7~+rc1-1~exp2_amd64.deb
63f6545fd623654eba063c6362a8a0fd2611d0dfd4c74ff0aedebeaa7c337216 350556 libomp5-7_7~+rc1-1~exp2_amd64.deb
b9932b0ca53ec41b845717af904747491968ea538448bf0a92efc7e2a6efa3e4 113808 lld-7-dbgsym_7~+rc1-1~exp2_amd64.deb
14eba5b7f52302394296aba217a80812953f46ef952f30b886882414b87153eb 919516 lld-7_7~+rc1-1~exp2_amd64.deb
a3abacf0d320ad2a0bab8567b238f2fd8d857fd4ae0dd0ad2135de7aad131355 950096 lldb-7-dbgsym_7~+rc1-1~exp2_amd64.deb
c7624952ee959f281e48d040f7dd8835d17897c285476ed0833934bc0d3b47ec 10506472 lldb-7_7~+rc1-1~exp2_amd64.deb
7667356bf312d813343bf1fed4d8178b2c3359107e6332c1b80c621aaabe67d1 7447276 llvm-7-dbgsym_7~+rc1-1~exp2_amd64.deb
1f4dba9ce3dd6b266d7854ac17f895585fb809547c0643abff641b2a7f62e1ab 3650580 llvm-7-dev-dbgsym_7~+rc1-1~exp2_amd64.deb
4e47adb0d7340e15c818a55a6a0c89da0d949b789beddf587b8fed3c7553720c 24953096 llvm-7-dev_7~+rc1-1~exp2_amd64.deb
1e61ea27b753752b39a2fe99e8409cd02815cea83fec4bb996add1f997e94c5f 2022676 llvm-7-doc_7~+rc1-1~exp2_all.deb
9d4f4bc72c194aa481f96b1f13cd6c74a0d28e9141c6a5163561fbe6ec794fea 251716 llvm-7-examples_7~+rc1-1~exp2_all.deb
d8f48471b651a98ac8b8c37d83b3a8d134dd806c282cadeabe5f7c416d04c40b 80456 llvm-7-runtime-dbgsym_7~+rc1-1~exp2_amd64.deb
1604f0eb6acb504746c80e87a0bab99ac5075a4e51d8204275ecd9e35bfbfdc2 200884 llvm-7-runtime_7~+rc1-1~exp2_amd64.deb
adec31419169b4f3c2e3e84eb26cfa629823e3fa56c141ecfc51fbb6715ff93e 66192 llvm-7-tools-dbgsym_7~+rc1-1~exp2_amd64.deb
e0c4b4f8935bc0756d276c9cdb823d9606eb0c43240f11850284d03744607a3b 243368 llvm-7-tools_7~+rc1-1~exp2_amd64.deb
f5da816d935902701e06a88de5d41a6f9f3944fdb3ce955addb2872c98fc9557 5133796 llvm-7_7~+rc1-1~exp2_amd64.deb
92f4cf9816cdc077a7dde86bc47480978d17bd995472c5133968a61a6790ce47 24159 llvm-toolchain-7_7~+rc1-1~exp2_amd64.buildinfo
6d98535651c35d35c34a66200578f380e52d28c2559a4403dec091cb20f1750c 52020 python-clang-7_7~+rc1-1~exp2_amd64.deb
28ea233d1090ca77901f8a1bc64b116393bb3203c6107a1e23b311af1da7da53 116352 python-lldb-7_7~+rc1-1~exp2_amd64.deb
Files:
ed7263ca4ac652465cb5ed8e37c04fe8 7832 devel optional llvm-toolchain-7_7~+rc1-1~exp2.dsc
cc80da56a3acbfeed5a145f348e027e8 72092 devel optional llvm-toolchain-7_7~+rc1-1~exp2.debian.tar.xz
f7eee277a2a80c10e1c7a1ec58b60918 4304604 debug optional clang-7-dbgsym_7~+rc1-1~exp2_amd64.deb
29e8d225993a5dbcdaec3c5908b2b9f6 956632 doc optional clang-7-doc_7~+rc1-1~exp2_all.deb
3b19ea1fa2c21a9d0f8885531b513bc6 36116 doc optional clang-7-examples_7~+rc1-1~exp2_amd64.deb
4c6c6a316a7dba1016d3aceac40934b5 9689304 devel optional clang-7_7~+rc1-1~exp2_amd64.deb
b2acef3c76f28b3ad3f7ce63d09b3c38 38396 debug optional clang-format-7-dbgsym_7~+rc1-1~exp2_amd64.deb
a1c76a9222aa3229d4113de37e122a7b 622368 devel optional clang-format-7_7~+rc1-1~exp2_amd64.deb
88f3b6ceddc25bd2d81c14d01cf0f56e 625628 debug optional clang-tidy-7-dbgsym_7~+rc1-1~exp2_amd64.deb
073082e4a7260a674ccaf7d0ae918f1d 7313760 devel optional clang-tidy-7_7~+rc1-1~exp2_amd64.deb
6fa67e402a4037e59a873a4cdcca2876 3139880 debug optional clang-tools-7-dbgsym_7~+rc1-1~exp2_amd64.deb
17b83974ccbdeea4794784686a100ad7 68479364 devel optional clang-tools-7_7~+rc1-1~exp2_amd64.deb
508f1670893a466f09500cc1416e65aa 623416 libdevel optional libc++-7-dev_7~+rc1-1~exp2_amd64.deb
e496f663a17823b358d28aa4dce5c215 27684 devel optional libc++-7-helpers_7~+rc1-1~exp2_all.deb
a1f968c4d9b20a676f3dff500c4c16d4 201816 libs optional libc++1-7_7~+rc1-1~exp2_amd64.deb
ebe15414522a18fae426913bd00c02fa 96756 libdevel optional libc++abi-7-dev_7~+rc1-1~exp2_amd64.deb
b38d66fc3c34903073880617c8acc380 81132 libs optional libc++abi1-7_7~+rc1-1~exp2_amd64.deb
ff90a5d42e0c267c310d5b9d0e41d1fe 22273736 libdevel optional libclang-7-dev_7~+rc1-1~exp2_amd64.deb
23383a17fce8f79a8fbfc63907c124e4 13078140 debug optional libclang-common-7-dev-dbgsym_7~+rc1-1~exp2_amd64.deb
341cd6605afc3476bd15082299fb7bfe 3582340 libdevel optional libclang-common-7-dev_7~+rc1-1~exp2_amd64.deb
29466a2a7110fbe34e53d11ca1edf67b 624128 debug optional libclang1-7-dbgsym_7~+rc1-1~exp2_amd64.deb
22f12bec4ec7e9edfc3534a24b210b95 7382064 libs optional libclang1-7_7~+rc1-1~exp2_amd64.deb
216f9faea8c94f14bef52e91878d7749 142992 libdevel optional libfuzzer-7-dev_7~+rc1-1~exp2_amd64.deb
446e4dbf66741a3e00a3deb32381815e 57484 libdevel optional liblld-7-dev_7~+rc1-1~exp2_amd64.deb
ceac65a088dc29b0142ff5047c2dc4d2 1287744 libs optional liblld-7_7~+rc1-1~exp2_amd64.deb
bf785fef0c84e3693ac45aeab60f0a57 844860 debug optional liblldb-7-dbgsym_7~+rc1-1~exp2_amd64.deb
e1c9e7833fdf1be538509f98ae900627 5289360 libdevel optional liblldb-7-dev_7~+rc1-1~exp2_amd64.deb
c734767aaacb4fe2a916c9815faae8d5 9314628 libs optional liblldb-7_7~+rc1-1~exp2_amd64.deb
b82f94f998a5781c23028911c457a915 1102640 debug optional libllvm7-dbgsym_7~+rc1-1~exp2_amd64.deb
910352e17dbc02340133ffa818fa66f3 15775496 libs optional libllvm7_7~+rc1-1~exp2_amd64.deb
d0083e786877d324c7eabbf56323c739 4556 debug optional libomp-7-dev-dbgsym_7~+rc1-1~exp2_amd64.deb
34eba0e1f975e6c240c04a37ec725b4f 53316 libdevel optional libomp-7-dev_7~+rc1-1~exp2_amd64.deb
8ca41978cb3b47b1583568d7627dcd0c 841232 doc optional libomp-7-doc_7~+rc1-1~exp2_all.deb
8d4e8b1b8b5144e62de0ef6aa8cd038e 76944 debug optional libomp5-7-dbgsym_7~+rc1-1~exp2_amd64.deb
e355109c90d984ed17efa390dbfac0ff 350556 devel optional libomp5-7_7~+rc1-1~exp2_amd64.deb
09dac7bfae4771f0bd5dc835fcbc1820 113808 debug optional lld-7-dbgsym_7~+rc1-1~exp2_amd64.deb
cee17fece621f6adc4300015d56a5bfe 919516 devel optional lld-7_7~+rc1-1~exp2_amd64.deb
5c9f9acd851362750d492ff6bc8d7045 950096 debug optional lldb-7-dbgsym_7~+rc1-1~exp2_amd64.deb
73d1127c2e328f6dd2bf02b64e2a4188 10506472 devel optional lldb-7_7~+rc1-1~exp2_amd64.deb
472eeeccff1e57352ea87af1a0644d80 7447276 debug optional llvm-7-dbgsym_7~+rc1-1~exp2_amd64.deb
bc1807e177ee8ed2451bda67b8ad242b 3650580 debug optional llvm-7-dev-dbgsym_7~+rc1-1~exp2_amd64.deb
05c961c5f7e27f9c895fa0c0b00a6dbb 24953096 devel optional llvm-7-dev_7~+rc1-1~exp2_amd64.deb
6ddbb57e66b20e5a68c2eb02f26a0a60 2022676 doc optional llvm-7-doc_7~+rc1-1~exp2_all.deb
69d43b1274ed5e72714aea805506a11e 251716 doc optional llvm-7-examples_7~+rc1-1~exp2_all.deb
4ddb1f02746e08faa0820c2a2e561df1 80456 debug optional llvm-7-runtime-dbgsym_7~+rc1-1~exp2_amd64.deb
c46e3584c0e773132eb1a4e87afa70ca 200884 devel optional llvm-7-runtime_7~+rc1-1~exp2_amd64.deb
01bf898f6f08be0d564914d83ccb4cd2 66192 debug optional llvm-7-tools-dbgsym_7~+rc1-1~exp2_amd64.deb
830b8ae9b08bfda85c6b907e80d011c8 243368 devel optional llvm-7-tools_7~+rc1-1~exp2_amd64.deb
d11c54aadf306e12deb82389dc7e91e1 5133796 devel optional llvm-7_7~+rc1-1~exp2_amd64.deb
e79cee7b1c8d9cee9d953413309dc11e 24159 devel optional llvm-toolchain-7_7~+rc1-1~exp2_amd64.buildinfo
38d8baf605b913661b0f4b04604e84a5 52020 python optional python-clang-7_7~+rc1-1~exp2_amd64.deb
fed6de4fa30ad151206903537eca6a15 116352 python optional python-lldb-7_7~+rc1-1~exp2_amd64.deb
-----BEGIN PGP SIGNATURE-----
iQIzBAEBCAAdFiEEtg21mU05vsTRqVzPfmUo2nUvG+EFAlt1KVsACgkQfmUo2nUv
G+HbvxAAiiYdhB9ma5JUlSyayVZQLzs2PaAb38BuOFnB7k9lFAfP87WqsbROQvxc
MjGlqs4+3TjaZuoaHc4g6qaQEfVxK+nrNmmXHWUq3bGgCaj/9l1hxZjyAq+X2xGm
fWtpx55Wee7f21eTq3jaZBzLh1yC1BKBrrBTlP2vjiikH8LMbRuTrIuxq+59Z/il
ZR/ZvCnNwEsZ4LGJIxImnBBdiHg7hZuuSStGgB91W3M6rr+b6X5I7mu76ir92zxi
ogJSDjKCmAOlTuWcQJc0GMOWVVxrBbpBVdks1TXFSRqlHdDsqB62YppgrE3br6e7
56HLRxUXMELwZ6tE+p2Y7T+/OKmYCPurryiKmwI0IWKdOf9/jcFV1oLrGaKec7Jp
RNQt4tKsZuAEaet1o8THousmLUxzS7oAwLpnqGV1hN5gjgE6crK2umdHhFTuwzHx
/Lm9TUkeKrFXrUhGz83QiY3rV6zDLBJFtKQH8ZqFsbQNp7ACnSlrcyek8iGxd8TT
5iUn4htHIWqqyFffvG3tjutbfItdREP/0K/3e7jpo0CA7TawHljtEOv9vbbZCDC1
rmXBJmsj9+e46OB/gt3faeIKhGJF2MppsdAP1FngTpXTNN/+1UzSBfj0j692wPiI
3kW40sz0FwyewftWvppCMG0nuft6MoHCY4KsX5PhQbl24Vd5awE=
=q63v
-----END PGP SIGNATURE-----
Reply sent
to Sylvestre Ledru <sylvestre@debian.org>:
You have taken responsibility.
(Thu, 30 Aug 2018 14:15:03 GMT) (full text, mbox, link).
Notification sent
to Peter Palfrader <weasel@debian.org>:
Bug acknowledged by developer.
(Thu, 30 Aug 2018 14:15:03 GMT) (full text, mbox, link).
Message #37 received at 903709-close@bugs.debian.org (full text, mbox, reply):
Source: llvm-toolchain-snapshot
Source-Version: 1:8~svn340819-1
We believe that the bug you reported is fixed in the latest version of
llvm-toolchain-snapshot, 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 903709@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Sylvestre Ledru <sylvestre@debian.org> (supplier of updated llvm-toolchain-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@ftp-master.debian.org)
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
Format: 1.8
Date: Tue, 28 Aug 2018 16:28:24 +0200
Source: llvm-toolchain-snapshot
Binary: clang-8 clang-tools-8 clang-format-8 clang-tidy-8 clang-8-doc libclang1-8 libclang-8-dev libclang-common-8-dev libfuzzer-8-dev python-clang-8 clang-8-examples libllvm8 llvm-8 llvm-8-runtime llvm-8-dev llvm-8-tools llvm-8-doc llvm-8-examples lld-8 liblld-8 liblld-8-dev lldb-8 liblldb-8 python-lldb-8 liblldb-8-dev libomp-8-dev libomp5-8 libomp-8-doc libc++1-8 libc++-8-dev libc++abi1-8 libc++abi-8-dev libc++-8-helpers
Architecture: source amd64 all
Version: 1:8~svn340819-1
Distribution: unstable
Urgency: medium
Maintainer: LLVM Packaging Team <pkg-llvm-team@lists.alioth.debian.org>
Changed-By: Sylvestre Ledru <sylvestre@debian.org>
Description:
clang-8 - C, C++ and Objective-C compiler
clang-8-doc - C, C++ and Objective-C compiler - Documentation
clang-8-examples - Clang examples
clang-format-8 - Tool to format C/C++/Obj-C code
clang-tidy-8 - clang-based C++ linter tool
clang-tools-8 - clang-based tools for C/C++ developments
libc++-8-dev - LLVM C++ Standard library (development files)
libc++-8-helpers - LLVM C++ Standard library - build helpers
libc++1-8 - LLVM C++ Standard library
libc++abi-8-dev - LLVM low level support for a standard C++ library (development fi
libc++abi1-8 - LLVM low level support for a standard C++ library
libclang-8-dev - clang library - Development package
libclang-common-8-dev - clang library - Common development package
libclang1-8 - C interface to the clang library
libfuzzer-8-dev - Library for coverage-guided fuzz testing
liblld-8 - LLVM-based linker, library
liblld-8-dev - LLVM-based linker, header files
liblldb-8 - Next generation, high-performance debugger, library
liblldb-8-dev - Next generation, high-performance debugger, header files
libllvm8 - Modular compiler and toolchain technologies, runtime library
libomp-8-dev - LLVM OpenMP runtime - dev package
libomp-8-doc - LLVM OpenMP runtime - Documentation
libomp5-8 - LLVM OpenMP runtime
lld-8 - LLVM-based linker
lldb-8 - Next generation, high-performance debugger
llvm-8 - Modular compiler and toolchain technologies
llvm-8-dev - Modular compiler and toolchain technologies, libraries and header
llvm-8-doc - Modular compiler and toolchain technologies, documentation
llvm-8-examples - Modular compiler and toolchain technologies, examples
llvm-8-runtime - Modular compiler and toolchain technologies, IR interpreter
llvm-8-tools - Modular compiler and toolchain technologies, tools
python-clang-8 - Clang Python Bindings
python-lldb-8 - Next generation, high-performance debugger, python lib
Closes: 813672 903709
Changes:
llvm-toolchain-snapshot (1:8~svn340819-1) unstable; urgency=medium
.
* New snapshot release
* Force sphinx to be >> 1.2.3
* also ignore libc++experimental.a on dh_strip (fails on stretch)
* Make libc++-8-dev & libc++abi-8-dev coinstallable
* Remove libtool flex, bison, dejagnu, tcl, expect,
and perl from the build deps (testing)
* Disable force-gcc-header-obj.diff as it is introducing
some regressions in the search headers
(Closes: #903709)
* branching to version 8
- New symbols in libclang:
clang_Cursor_getObjCPropertyGetterName
clang_Cursor_getObjCPropertySetterName
clang_Type_getModifiedType
clang_Type_getNullability
clang_Type_getNumObjCProtocolRefs
clang_Type_getNumObjCTypeArgs
clang_Type_getObjCObjectBaseType
clang_Type_getObjCProtocolDecl
clang_Type_getObjCTypeArg
* python-recommonmark is a new build dep for the sphinx doc
* dh_strip should be verbose
* On Stretch (binutils 2.28), do not run strip on libFuzzer.a, libc++.a
& libc++abi.a because it segfaults
* Fixed "weak-library-dev-dependency libc++-7-dev on libc++-7-helpers"
* Fixed "libomp5-7: shlibs-declares-dependency-on-other-package
libomp5-7) (>= 1:7~svn298832-1~)"
* Also use the local cmake binary if available (for trusty)
and take in account the PRE_PROCESS_CONF option
* Try to fix a FTBFS on jessie with openmp
.
[ Gianfranco Costamagna ]
* Add liblldb-8-dev to python-lldb runtime dependencies, needed to import it
* Enable lld on arm64, mips64el
* Enable lldb on mips64el
* Enable lld on ppc64el
.
[ John Paul Adrian Glaubitz ]
* Don't build with ld.gold on powerpcspe
* Disable polly on powerpcspe
* Add upstream patch to make rustc build on powerpc
.
[ Reshabh Sharma ]
* Integrate opemp as part of the llvm-toolchain packages (Closes: #813672)
As part of this work, the transition libiomp packages have been removed.
Checksums-Sha1:
b140b9ded52f4d4019d91868269b703be107dce9 8324 llvm-toolchain-snapshot_8~svn340819-1.dsc
32216f390d916310b288eec7b2f6906bb2e4dd1c 995436 llvm-toolchain-snapshot_8~svn340819.orig-clang-tools-extra.tar.bz2
59ba285ad893cecf86770758d3ad2a2a15036090 13948490 llvm-toolchain-snapshot_8~svn340819.orig-clang.tar.bz2
938545e29fcd01045c36cf0082768bb609cd5509 2351846 llvm-toolchain-snapshot_8~svn340819.orig-compiler-rt.tar.bz2
59de63ae98b4bc123948ff7df8642beaf9f3b475 1787292 llvm-toolchain-snapshot_8~svn340819.orig-libcxx.tar.bz2
8d09056fd85491d4788af2a4c621ca20639196ef 544338 llvm-toolchain-snapshot_8~svn340819.orig-libcxxabi.tar.bz2
30d261aef9f4fdfdf811ddc3e30da88e37b44cfd 1019161 llvm-toolchain-snapshot_8~svn340819.orig-lld.tar.bz2
292da3bf54b53444e06e4a8cdb38c8fd6874715f 11389765 llvm-toolchain-snapshot_8~svn340819.orig-lldb.tar.bz2
4f103e7a38cc0cab38ec634ba745bb2317a33de3 993139 llvm-toolchain-snapshot_8~svn340819.orig-openmp.tar.bz2
341074e50a8809265f5911d53a3b05f0779a3b6c 3355548 llvm-toolchain-snapshot_8~svn340819.orig-polly.tar.bz2
fadcfe5bb6e637b7c886e80909b9f97174179d5a 33847839 llvm-toolchain-snapshot_8~svn340819.orig.tar.bz2
250a45c7bdeefeb95e8602e32fc3afa5160ac2ed 73696 llvm-toolchain-snapshot_8~svn340819-1.debian.tar.xz
ae7739d6a754ec48bab488132f039e577fee136b 4310144 clang-8-dbgsym_8~svn340819-1_amd64.deb
8fe52940f867ac56efba3eedd9fe0cc00c7ca9d7 902528 clang-8-doc_8~svn340819-1_all.deb
e7df792ac3a3e7301f389334c2da317ad2768a42 36704 clang-8-examples_8~svn340819-1_amd64.deb
edb48fa824960a1f43cf975abbe2b0092c8caefc 9766976 clang-8_8~svn340819-1_amd64.deb
df1da080906cf07c5cdc78d316b38bfe992a829c 38452 clang-format-8-dbgsym_8~svn340819-1_amd64.deb
b2b5809a7a07cda041bb5a3b6f47e6a37d88fc65 623800 clang-format-8_8~svn340819-1_amd64.deb
1ebc3a3d6e5e56afe7b0bfce55b759c7ab0ebbfa 629288 clang-tidy-8-dbgsym_8~svn340819-1_amd64.deb
3a5b039256c45cd22b0df3c7ed0cf13ffa373dd8 7363212 clang-tidy-8_8~svn340819-1_amd64.deb
08b4fbd53db266d27f266de1e57c838be6812ae0 3151764 clang-tools-8-dbgsym_8~svn340819-1_amd64.deb
c4db1ada48c0cb0dc3cf263b407bc5f078c257c7 68935640 clang-tools-8_8~svn340819-1_amd64.deb
343528e6d3e235cc633caf05c225f3ba558fdaf5 1472796 libc++-8-dev_8~svn340819-1_amd64.deb
a6a2c0bf55087e83498d29922ee9a57134e1f31b 28276 libc++-8-helpers_8~svn340819-1_all.deb
bba49653798b9c8f8941ef406ec850ca8215e87e 213776 libc++1-8_8~svn340819-1_amd64.deb
f1af517538119406c0245e116a1d9a6726e47512 283100 libc++abi-8-dev_8~svn340819-1_amd64.deb
b121934dc1b13e0196d75fc2ab4bc445a82c939d 81288 libc++abi1-8_8~svn340819-1_amd64.deb
23e14aceaa191a7f9c30cc444a0540a1ec9e063c 22506768 libclang-8-dev_8~svn340819-1_amd64.deb
d0dcc34c0f127aaddecffbdd0116cf01c9bc7593 12620576 libclang-common-8-dev-dbgsym_8~svn340819-1_amd64.deb
619b68bca4c0641449678579aae7794a18300f76 3424568 libclang-common-8-dev_8~svn340819-1_amd64.deb
7d38b9d00e9eebc205d62017224d9fa29769cd32 628708 libclang1-8-dbgsym_8~svn340819-1_amd64.deb
efc65bc732d51b9837733c1637282290af46bff4 7432912 libclang1-8_8~svn340819-1_amd64.deb
0008b697e14bac9675fcd338dee9e8fcdcd56e14 990348 libfuzzer-8-dev_8~svn340819-1_amd64.deb
92d270bab7e02c6f0ff53dfe0309271e8df7bedb 58080 liblld-8-dev_8~svn340819-1_amd64.deb
6b63de70b8364aa46a442e362c9df6a25860d52e 1305800 liblld-8_8~svn340819-1_amd64.deb
b05c91907be2f96ff6650e14d5b8dd2566b63531 848892 liblldb-8-dbgsym_8~svn340819-1_amd64.deb
322295496eb8a0b32d22cb092c7da72894631105 5306660 liblldb-8-dev_8~svn340819-1_amd64.deb
979fb763f51f8d8375a8b0b0da8830f9a8e69fde 9348308 liblldb-8_8~svn340819-1_amd64.deb
7a5f04e8a0c06ac09b3219a7c5f1cbbc96c19505 1112148 libllvm8-dbgsym_8~svn340819-1_amd64.deb
f5b7f0404ea78e866215d308c7e416d2f039c576 15952504 libllvm8_8~svn340819-1_amd64.deb
2dc5a30aaf03bd0aaa2cc4819d6ddaded03ef904 4636 libomp-8-dev-dbgsym_8~svn340819-1_amd64.deb
c2927d3906ab238d06964076a240351a3592ccd2 54384 libomp-8-dev_8~svn340819-1_amd64.deb
3d3801c6e4da22acadcd00a954f465d61a5c962e 839640 libomp-8-doc_8~svn340819-1_all.deb
985a8695efbaac3a9936e26d324bddcce6751447 77036 libomp5-8-dbgsym_8~svn340819-1_amd64.deb
1dd905898b8150bf0aa1d0092329938999ec21e4 351400 libomp5-8_8~svn340819-1_amd64.deb
3b5e594b7245018df554562fb88c510734221b2c 114884 lld-8-dbgsym_8~svn340819-1_amd64.deb
5309cb7882f2ccb005dc6a852d2a06c90643b5c4 932876 lld-8_8~svn340819-1_amd64.deb
ead747dbe904774e51096d65e92572a50a29f969 959140 lldb-8-dbgsym_8~svn340819-1_amd64.deb
109eacd7d063c9942be031b2e587eeac36273fe3 10604404 lldb-8_8~svn340819-1_amd64.deb
9b81f3cc535ef9a0da63cd1f74c6573cfb810999 7458560 llvm-8-dbgsym_8~svn340819-1_amd64.deb
411231e1219b399d373a6e020acf145cbc590f56 3652384 llvm-8-dev-dbgsym_8~svn340819-1_amd64.deb
dedebb5f6c58b2ec257fafc2db1dba08bf361be7 25237984 llvm-8-dev_8~svn340819-1_amd64.deb
d340c148a383681f963b4fae679169ebcb2bb394 2117396 llvm-8-doc_8~svn340819-1_all.deb
2084c95ab6a80c43be8111a259665880966a4e39 252324 llvm-8-examples_8~svn340819-1_all.deb
f4727c20aac9b713158120e9827586be247b9984 80944 llvm-8-runtime-dbgsym_8~svn340819-1_amd64.deb
0746202a701a2d14abb1375d9d6e6ad9185aa4f9 201728 llvm-8-runtime_8~svn340819-1_amd64.deb
784fe4f980786065e4ec3c5d10d21160e46080ea 66476 llvm-8-tools-dbgsym_8~svn340819-1_amd64.deb
ec1be67eb907dc3327f5dac23f58844511cd9d4f 245136 llvm-8-tools_8~svn340819-1_amd64.deb
9bf7f489b5ec0fd3f9bc1bf667859b3bfddcbde7 5151416 llvm-8_8~svn340819-1_amd64.deb
0e1746b0dabb5f62c8a3778e85dd2ac876e0c32b 24255 llvm-toolchain-snapshot_8~svn340819-1_amd64.buildinfo
772312e67501026e1f990ec67724e3f65dff825f 52596 python-clang-8_8~svn340819-1_amd64.deb
99a2e4fe191c6f393d716f9798c847354cab46d9 116964 python-lldb-8_8~svn340819-1_amd64.deb
Checksums-Sha256:
a532d8d76ab8c5d8283e10f227f891004ebfa28509ae0effa90db329fb3c15b1 8324 llvm-toolchain-snapshot_8~svn340819-1.dsc
b2fa7d356cda316384126d2aef9731380600acd52c75fcc13c55516b342bb7d3 995436 llvm-toolchain-snapshot_8~svn340819.orig-clang-tools-extra.tar.bz2
23d07e48b20f482720a321c0e9eec32b096b87fe358a01cdbb95eab576f4e224 13948490 llvm-toolchain-snapshot_8~svn340819.orig-clang.tar.bz2
d3bdb8820b9cf9a87b7ef09d8e9cb74a9d62c9eed716e422427144c56c26beb6 2351846 llvm-toolchain-snapshot_8~svn340819.orig-compiler-rt.tar.bz2
be031f73c20e094c449933d892d3b88a9d0c740e6c24ab59fc257dcdb42eba59 1787292 llvm-toolchain-snapshot_8~svn340819.orig-libcxx.tar.bz2
459c442e52f5df162ccf95027b2b0564b1106c5a8873cc4da63abd6d6f7391c9 544338 llvm-toolchain-snapshot_8~svn340819.orig-libcxxabi.tar.bz2
85b2d2f49cc789df1c49275f31333303dd646bea8b131af1e3828fd60fab752d 1019161 llvm-toolchain-snapshot_8~svn340819.orig-lld.tar.bz2
2712b1a1fd84de8f6a8fc6c14ca43fbc076890abdbe93e593b30f1fd6615b0c5 11389765 llvm-toolchain-snapshot_8~svn340819.orig-lldb.tar.bz2
047e336c9baf2ffef01c4bea8ee2ce03361589baf3cc6a59910bda785457ed3a 993139 llvm-toolchain-snapshot_8~svn340819.orig-openmp.tar.bz2
be6031b22163740eabb145bcfc91eb57bf4f8f56cbe5b6c56046320120fbd298 3355548 llvm-toolchain-snapshot_8~svn340819.orig-polly.tar.bz2
1d98939ffa6c3c3ef7ff24d6965c60f656e78ac366656b5adf274286f21cba71 33847839 llvm-toolchain-snapshot_8~svn340819.orig.tar.bz2
65e7295780346495f88fc4ffe3c3f21f7d16b542e8039364ee691eb133ecf128 73696 llvm-toolchain-snapshot_8~svn340819-1.debian.tar.xz
6167945222af6d05366d1f0d796208090b3e0e63170b1751de51766afeddd0a5 4310144 clang-8-dbgsym_8~svn340819-1_amd64.deb
dd7f2693e544f7c1dd937e67ad67db27c60baee58ddaee2ab4415aa1b0f1efbc 902528 clang-8-doc_8~svn340819-1_all.deb
aec212cff9e6932969c83b16085b8667f4c4518d3b2f0f1e5edabf9152dd5e91 36704 clang-8-examples_8~svn340819-1_amd64.deb
ef387187b66f90840833ef6cfe55784abbe6c1794d0025f9abf00c6002bb9684 9766976 clang-8_8~svn340819-1_amd64.deb
4b54bdf094c6590b661a017c79dfd2d040459f6587298b98b97a5dad6583cf5a 38452 clang-format-8-dbgsym_8~svn340819-1_amd64.deb
e4e01df638e47f8659abce5b1f2d0074705b5daadeb3f8fba62e222e1a63b14c 623800 clang-format-8_8~svn340819-1_amd64.deb
5315e6be2827b824cc4db32acb648ae92b4797806a65f22a97e267c3cd535be3 629288 clang-tidy-8-dbgsym_8~svn340819-1_amd64.deb
39ffa742b36aeb81233e3403022c66d9c5fbfb476819da86a9ca15c3c8339fbe 7363212 clang-tidy-8_8~svn340819-1_amd64.deb
023316963e1dd62892dcc7108cca7e9f69e768ed7afc8f2011a34354a352d8ec 3151764 clang-tools-8-dbgsym_8~svn340819-1_amd64.deb
c38e1186da9734d2b6600c915ad2baa9ebd479fccc4acae5aab0a95080e011bd 68935640 clang-tools-8_8~svn340819-1_amd64.deb
ba18446a3439fcd7c88515f11cf3b8f3c164677809d32c1d0ca6e6459d9baeb5 1472796 libc++-8-dev_8~svn340819-1_amd64.deb
864337bb7f350c13c4acae32148acb0d2b0396daf9963c5bc4a8de8ef252e644 28276 libc++-8-helpers_8~svn340819-1_all.deb
31051b33733edf5d6274fb6b1f0b551fc29ac26064b02c4205b0dd423c380953 213776 libc++1-8_8~svn340819-1_amd64.deb
a72d75eecd9e55c95710bc3b6f87938a5734174449fa74100f70c52c48a2063c 283100 libc++abi-8-dev_8~svn340819-1_amd64.deb
dae51cbfa20040d9e5c8b336aa38951ef91d3cb219d6b873173a093b0f96d8ff 81288 libc++abi1-8_8~svn340819-1_amd64.deb
e579a152e709743b7aaf53770bd3f571c9a8d35053000b73baf7fcb95c1edb47 22506768 libclang-8-dev_8~svn340819-1_amd64.deb
8100b35a79c3aa2eee99d33aaa5bb145681989460e618c8fe9a3c0bdba9d2023 12620576 libclang-common-8-dev-dbgsym_8~svn340819-1_amd64.deb
2136860526f6c57c571e4e33c6695d81cffb8d84320d7fd49648334bb7d834a0 3424568 libclang-common-8-dev_8~svn340819-1_amd64.deb
4a869b51b3cd7bcc3883af58d40e5221b5fff4ef0c8ec35cc25ed908ed32d48b 628708 libclang1-8-dbgsym_8~svn340819-1_amd64.deb
082c637121d241fde1013985f8177d5bc89ee6683143505e1cbb7aa253e53f21 7432912 libclang1-8_8~svn340819-1_amd64.deb
d8e2e31d1d7fc22ac11abba6a39af327a89401d326664eb0e89a81573d6eae13 990348 libfuzzer-8-dev_8~svn340819-1_amd64.deb
f311a7024c3a6b5857a84156dde21e60fa15de46065d5acae0af959677318844 58080 liblld-8-dev_8~svn340819-1_amd64.deb
3215e87a9087badda12278e3e1229b1477b71553e9bcccefea93c09c344df0e6 1305800 liblld-8_8~svn340819-1_amd64.deb
15ef1149251855fcba0dce69a25e44ef9042d6a1c01685b09145a74d0cb6fb74 848892 liblldb-8-dbgsym_8~svn340819-1_amd64.deb
0013b86f1c8eb4bd45addff27d9cbf172a714f5ff563edda03270145a6a03e93 5306660 liblldb-8-dev_8~svn340819-1_amd64.deb
b96107f98725bca46d9d10c5cfc81394225b7c4da5290a57e7c49c6a2d09da46 9348308 liblldb-8_8~svn340819-1_amd64.deb
efdca68cb4fe6aa63c5ec6d946d92413b6e089945c4ffa521dff6453918447aa 1112148 libllvm8-dbgsym_8~svn340819-1_amd64.deb
51f29cd791e253702e595f24066216626dee9af8751f20a436c3b4aa3bad2779 15952504 libllvm8_8~svn340819-1_amd64.deb
067fde227b7f3ea1aebf2e2b37d7f93525858eb0adfbd0c78c9bb42e90a9e629 4636 libomp-8-dev-dbgsym_8~svn340819-1_amd64.deb
fe0ac53b4055fd75e4b700d650a41d55b810b367cb07da1fed595ead8ddf23b4 54384 libomp-8-dev_8~svn340819-1_amd64.deb
dac6d342ef6d0b741c9d554fa5c3035143a523b9f0b1a203fd96b10c402da56c 839640 libomp-8-doc_8~svn340819-1_all.deb
1d7bb5a7fc8e01379fbc3deac80ef137ae05cdc598431f56c9e191142730109c 77036 libomp5-8-dbgsym_8~svn340819-1_amd64.deb
e1025e5246fcf83610867f8149ea61d78cf996db6a0ff730cac574c3f22017ba 351400 libomp5-8_8~svn340819-1_amd64.deb
bb5334657776a6e352666b192fdc756bbda7c4915dfcb6ec1e0180f64e850c5a 114884 lld-8-dbgsym_8~svn340819-1_amd64.deb
5af0e0ced085ee19ae0c79b464291606eb9d8f71203eecfed71b1bc16df8fe84 932876 lld-8_8~svn340819-1_amd64.deb
85dc3d24c9632bea26f2a6cf3c929aac8d408176dbcfdf7067acd2637d60a68b 959140 lldb-8-dbgsym_8~svn340819-1_amd64.deb
b4998749dc6c36b0a6ecf938a323a7390e5b28c0d686d07fe6083245743911d7 10604404 lldb-8_8~svn340819-1_amd64.deb
e851b65031eb5b9aa967bb685ac2493c4b2bf2cbc492fd806c1758f6d18f5576 7458560 llvm-8-dbgsym_8~svn340819-1_amd64.deb
babbab0428cdce1c13d33d19a8e4ee8b197e05d272e3b704f23ab76b27880eca 3652384 llvm-8-dev-dbgsym_8~svn340819-1_amd64.deb
8efd2257ee01a99558c16e588ab54e495183a2bd5ba7bb77529a271d8dfbe16c 25237984 llvm-8-dev_8~svn340819-1_amd64.deb
36a98f4950bc1511530c42da344d59bfb617818af4ca8ed4e8465da76c662b32 2117396 llvm-8-doc_8~svn340819-1_all.deb
4abfcdae23b563a875b406cd4ca6123bc96795db41563a31cc15373d838b2bfd 252324 llvm-8-examples_8~svn340819-1_all.deb
684b80ee9745e0b1ca7559528e0316b23f6efbfb4222216124eba9efebf94c1d 80944 llvm-8-runtime-dbgsym_8~svn340819-1_amd64.deb
ffb64c2983ee736566256912001a560c0adb16406a6a1bb3e93539e328b53b59 201728 llvm-8-runtime_8~svn340819-1_amd64.deb
4ca4c205dce8bcce575a8344915680fc5dd39f81b4763bf29f0398ebf571a635 66476 llvm-8-tools-dbgsym_8~svn340819-1_amd64.deb
d92a27911ad5033ed4bf640cdacc01f2fe9a9b9ce5e8f4e5834fd4f0e0c62586 245136 llvm-8-tools_8~svn340819-1_amd64.deb
bff20ae97d1c16ff8ed607c2d5bcea5a14d012771615a59a97eb2fcff26f4661 5151416 llvm-8_8~svn340819-1_amd64.deb
ea20d310c1bd75ac17cadd13d4068ada4fd1208743459a6fdc971f87ca3a0c92 24255 llvm-toolchain-snapshot_8~svn340819-1_amd64.buildinfo
c60767cac5c28d0e79e462fff48147b647c279d12e265fda90e41415b2918525 52596 python-clang-8_8~svn340819-1_amd64.deb
79e233c5842dfde5200993fed4395ae0ccd7e010e3d61baaaf46e5c8c18d053a 116964 python-lldb-8_8~svn340819-1_amd64.deb
Files:
f0e815b8d04f164a2dd85a4a01d945ad 8324 devel optional llvm-toolchain-snapshot_8~svn340819-1.dsc
1a545ae21b1cc0988bb5e9ab63262f56 995436 devel optional llvm-toolchain-snapshot_8~svn340819.orig-clang-tools-extra.tar.bz2
bd6c611ec5aeaa2a6aa888d30dd0e416 13948490 devel optional llvm-toolchain-snapshot_8~svn340819.orig-clang.tar.bz2
47028a311130a2a85cb75995797c2f0e 2351846 devel optional llvm-toolchain-snapshot_8~svn340819.orig-compiler-rt.tar.bz2
e8170f5319fac1904400297889937859 1787292 devel optional llvm-toolchain-snapshot_8~svn340819.orig-libcxx.tar.bz2
0a95041d63b64521397c9897b1d5b4bb 544338 devel optional llvm-toolchain-snapshot_8~svn340819.orig-libcxxabi.tar.bz2
b740458fd00defb754deb7593e79fc0e 1019161 devel optional llvm-toolchain-snapshot_8~svn340819.orig-lld.tar.bz2
cccef136cd2c024df8f5c8def7ca3969 11389765 devel optional llvm-toolchain-snapshot_8~svn340819.orig-lldb.tar.bz2
e2858295dafb26d39ef7e2f8c98410b6 993139 devel optional llvm-toolchain-snapshot_8~svn340819.orig-openmp.tar.bz2
baf751d69910bfc6798598e319973800 3355548 devel optional llvm-toolchain-snapshot_8~svn340819.orig-polly.tar.bz2
b66a1e2c7cb999a191b309ba1176b59b 33847839 devel optional llvm-toolchain-snapshot_8~svn340819.orig.tar.bz2
6f56ff838a6551ba9e6253639059fd84 73696 devel optional llvm-toolchain-snapshot_8~svn340819-1.debian.tar.xz
475be55665ddfd2488da73c415d4df13 4310144 debug optional clang-8-dbgsym_8~svn340819-1_amd64.deb
3872f0870a31825dd14963ada2a496cb 902528 doc optional clang-8-doc_8~svn340819-1_all.deb
88a72bd2834d848a35bb8fad65ffe0d6 36704 doc optional clang-8-examples_8~svn340819-1_amd64.deb
6edcffb4b658ed7b1023580f0197204a 9766976 devel optional clang-8_8~svn340819-1_amd64.deb
c9a5d55f7fde0dd5f91308400633b7b0 38452 debug optional clang-format-8-dbgsym_8~svn340819-1_amd64.deb
5c7762ee484fade3c5565022ecb00c4b 623800 devel optional clang-format-8_8~svn340819-1_amd64.deb
c003e5e7fd407319e48f96a3f10a5c8f 629288 debug optional clang-tidy-8-dbgsym_8~svn340819-1_amd64.deb
22e53e2b5eed46e847df5cdb09b82c20 7363212 devel optional clang-tidy-8_8~svn340819-1_amd64.deb
b15df067b5606ade3c395063a19a0c1c 3151764 debug optional clang-tools-8-dbgsym_8~svn340819-1_amd64.deb
fedc2b3f381659ef610fd3d672419132 68935640 devel optional clang-tools-8_8~svn340819-1_amd64.deb
431d3eb47a9754bb43ac7ccc7accb3e9 1472796 libdevel optional libc++-8-dev_8~svn340819-1_amd64.deb
24fba89f4295e0d5a83fe737ec90804b 28276 devel optional libc++-8-helpers_8~svn340819-1_all.deb
00e840662a0c2feb0766699f546ba5e3 213776 libs optional libc++1-8_8~svn340819-1_amd64.deb
a38e51be6a2e39daa9c995a05f3d2303 283100 libdevel optional libc++abi-8-dev_8~svn340819-1_amd64.deb
e4fe3d8e4080632e5343876249a3bce2 81288 libs optional libc++abi1-8_8~svn340819-1_amd64.deb
e2f0e477e6f92f79bb525d15b8c420b3 22506768 libdevel optional libclang-8-dev_8~svn340819-1_amd64.deb
6ebca815b9c59a26e8c08f8a263b26e7 12620576 debug optional libclang-common-8-dev-dbgsym_8~svn340819-1_amd64.deb
33a679beadcc054fb7e8d9e3fc9c05e8 3424568 libdevel optional libclang-common-8-dev_8~svn340819-1_amd64.deb
853d728d02d4ef08193ea633d9c478a3 628708 debug optional libclang1-8-dbgsym_8~svn340819-1_amd64.deb
c785e2b7a505aafb645364ea05478bd9 7432912 libs optional libclang1-8_8~svn340819-1_amd64.deb
a2a4900d3559b9095c18757ac44481f9 990348 libdevel optional libfuzzer-8-dev_8~svn340819-1_amd64.deb
17d51817403fab6a65412575c46d5040 58080 libdevel optional liblld-8-dev_8~svn340819-1_amd64.deb
46b628266df4c6af50e96f26fe7486d5 1305800 libs optional liblld-8_8~svn340819-1_amd64.deb
63515171f3c144ead889c92b14a79549 848892 debug optional liblldb-8-dbgsym_8~svn340819-1_amd64.deb
293e65db2922c347e762574656f0d99e 5306660 libdevel optional liblldb-8-dev_8~svn340819-1_amd64.deb
07863dcf5105d1c44e905a73e42df3f9 9348308 libs optional liblldb-8_8~svn340819-1_amd64.deb
44950a5a6e0e44046b4f40c086d5beaf 1112148 debug optional libllvm8-dbgsym_8~svn340819-1_amd64.deb
632f4939a9b991f5d94869f1817b9d85 15952504 libs optional libllvm8_8~svn340819-1_amd64.deb
e2f47d2f8a458caff99949d31a34fba6 4636 debug optional libomp-8-dev-dbgsym_8~svn340819-1_amd64.deb
9eb14519785068c7bf720cd03e026d33 54384 libdevel optional libomp-8-dev_8~svn340819-1_amd64.deb
bac6e1e668c026d98e4aae3fb2c9befc 839640 doc optional libomp-8-doc_8~svn340819-1_all.deb
3364771cc6d1ff35aebf6cc120f06f3b 77036 debug optional libomp5-8-dbgsym_8~svn340819-1_amd64.deb
1b76f79aa2590a79662f96b30ce784b3 351400 devel optional libomp5-8_8~svn340819-1_amd64.deb
fe1b75ead150db2cdce3787548e8ab16 114884 debug optional lld-8-dbgsym_8~svn340819-1_amd64.deb
b80cb25c3081fa43336647394e4175d0 932876 devel optional lld-8_8~svn340819-1_amd64.deb
065f0624c830a804c425bae4d30c9bce 959140 debug optional lldb-8-dbgsym_8~svn340819-1_amd64.deb
9b8bdf440e92ac2b425313f217e9ef23 10604404 devel optional lldb-8_8~svn340819-1_amd64.deb
af05fa7fb4b77dac48bce1618393d6e9 7458560 debug optional llvm-8-dbgsym_8~svn340819-1_amd64.deb
8955cb84132d8e8b316d6fd9ca4b6893 3652384 debug optional llvm-8-dev-dbgsym_8~svn340819-1_amd64.deb
2656506238a9c5b049f4ee700592536f 25237984 devel optional llvm-8-dev_8~svn340819-1_amd64.deb
1f3420960251752b75743a32c119cc8b 2117396 doc optional llvm-8-doc_8~svn340819-1_all.deb
3e948a8ddf6820b3dc960bc8c3437cf6 252324 doc optional llvm-8-examples_8~svn340819-1_all.deb
5a0c68666f261919c69309433c7bcd12 80944 debug optional llvm-8-runtime-dbgsym_8~svn340819-1_amd64.deb
9bda20d9b40073868db869f6f71648a4 201728 devel optional llvm-8-runtime_8~svn340819-1_amd64.deb
265f5ebe8e8801bcb2177b36c0a5135c 66476 debug optional llvm-8-tools-dbgsym_8~svn340819-1_amd64.deb
732b2343a769dd8c41d281abdc5144d1 245136 devel optional llvm-8-tools_8~svn340819-1_amd64.deb
8f4ba100a1ef380b18c5a0f83e318cc6 5151416 devel optional llvm-8_8~svn340819-1_amd64.deb
d03b06100387d151c3927cc2634bde2a 24255 devel optional llvm-toolchain-snapshot_8~svn340819-1_amd64.buildinfo
02e282cbf629e03acc97bd2d2221a7b5 52596 python optional python-clang-8_8~svn340819-1_amd64.deb
517895cca6081afa99107ee4e2c26734 116964 python optional python-lldb-8_8~svn340819-1_amd64.deb
-----BEGIN PGP SIGNATURE-----
iQIzBAEBCAAdFiEEtg21mU05vsTRqVzPfmUo2nUvG+EFAluFgGEACgkQfmUo2nUv
G+GbUQ//dYRp0uL8pRF3V3Q6Uul9xMJ9QNAMCq8jv89XtfE6XH45Tx+ul1YwIpAg
T1cZA9sg1jwNvMM/XAOmX/Q7IvuLN4mqF5ybkOpp1ahA4F3kmJzlrV4Ev6m4oAQH
l4CnLHtLYlGuztoU4btbCmVxBnAH++eLMkvL/nrIGs5zMwIEVSjyaTfJLZM94KM5
g9mp1oRQfjQZYBBwJZwciE4Lgj7RSzfNB9hz/Cz2MX9kTZHyL2rsM5pXrnlrhf1/
o7FNutmeXO4cIf8MHvd6VWsSvSf4Q+ctJIjXu8Knsl6tga/2OxA4GmvVK0Va53B8
KTMdsEXzE6QZs0h9Kb90LWE2LKkqwm9Czn3cOioanbiJbxuG5nSEZWm7UcoVSqoW
u31zzLOIRXVIZVUFtmCq2SVJYN3xE/a5PyS5ekftuK16cm+6JCdkKN0ezew+13uQ
0Ew0XC+LVvIhwo6KA7bIvnTV3BFSDfDvYPz+zYtonljqZoTkiPoUhkDDwZMYq3IQ
467kcRZ0j3RwI0eHKKUPKXxI5Zvh7BeKXo1R/XtQl0anGufHLFYBjP9h7wSrZpTN
0dHGwMIABbOICqyho+QR4AC3yQubjPyyENIozTGpneFvH+uHTjETgJiLnZTj2TI2
ackgRinaG7CMBLCDAxXO/W2rp6zyFqTvdN89D/vd+EiimCMA6hY=
=2xx/
-----END PGP SIGNATURE-----
Reply sent
to Sylvestre Ledru <sylvestre@debian.org>:
You have taken responsibility.
(Mon, 03 Sep 2018 10:09:05 GMT) (full text, mbox, link).
Notification sent
to Peter Palfrader <weasel@debian.org>:
Bug acknowledged by developer.
(Mon, 03 Sep 2018 10:09:05 GMT) (full text, mbox, link).
Message #42 received at 903709-close@bugs.debian.org (full text, mbox, reply):
Source: llvm-toolchain-7
Source-Version: 1:7~+rc2-1~exp3
We believe that the bug you reported is fixed in the latest version of
llvm-toolchain-7, 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 903709@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Sylvestre Ledru <sylvestre@debian.org> (supplier of updated llvm-toolchain-7 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@ftp-master.debian.org)
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
Format: 1.8
Date: Mon, 03 Sep 2018 09:16:22 +0200
Source: llvm-toolchain-7
Binary: clang-7 clang-tools-7 clang-format-7 clang-tidy-7 clang-7-doc libclang1-7 libclang-7-dev libclang-common-7-dev libfuzzer-7-dev python-clang-7 clang-7-examples libllvm7 llvm-7 llvm-7-runtime llvm-7-dev llvm-7-tools llvm-7-doc llvm-7-examples lld-7 liblld-7 liblld-7-dev lldb-7 liblldb-7 python-lldb-7 liblldb-7-dev libomp-7-dev libomp5-7 libomp-7-doc libc++1-7 libc++-7-dev libc++abi1-7 libc++abi-7-dev
Architecture: source
Version: 1:7~+rc2-1~exp3
Distribution: experimental
Urgency: medium
Maintainer: LLVM Packaging Team <pkg-llvm-team@lists.alioth.debian.org>
Changed-By: Sylvestre Ledru <sylvestre@debian.org>
Description:
clang-7 - C, C++ and Objective-C compiler
clang-7-doc - C, C++ and Objective-C compiler - Documentation
clang-7-examples - Clang examples
clang-format-7 - Tool to format C/C++/Obj-C code
clang-tidy-7 - clang-based C++ linter tool
clang-tools-7 - clang-based tools for C/C++ developments
libc++-7-dev - LLVM C++ Standard library (development files)
libc++1-7 - LLVM C++ Standard library
libc++abi-7-dev - LLVM low level support for a standard C++ library (development fi
libc++abi1-7 - LLVM low level support for a standard C++ library
libclang-7-dev - clang library - Development package
libclang-common-7-dev - clang library - Common development package
libclang1-7 - C interface to the clang library
libfuzzer-7-dev - Library for coverage-guided fuzz testing
liblld-7 - LLVM-based linker, library
liblld-7-dev - LLVM-based linker, header files
liblldb-7 - Next generation, high-performance debugger, library
liblldb-7-dev - Next generation, high-performance debugger, header files
libllvm7 - Modular compiler and toolchain technologies, runtime library
libomp-7-dev - LLVM OpenMP runtime - dev package
libomp-7-doc - LLVM OpenMP runtime - Documentation
libomp5-7 - LLVM OpenMP runtime
lld-7 - LLVM-based linker
lldb-7 - Next generation, high-performance debugger
llvm-7 - Modular compiler and toolchain technologies
llvm-7-dev - Modular compiler and toolchain technologies, libraries and header
llvm-7-doc - Modular compiler and toolchain technologies, documentation
llvm-7-examples - Modular compiler and toolchain technologies, examples
llvm-7-runtime - Modular compiler and toolchain technologies, IR interpreter
llvm-7-tools - Modular compiler and toolchain technologies, tools
python-clang-7 - Clang Python Bindings
python-lldb-7 - Next generation, high-performance debugger, python lib
Closes: 903709
Changes:
llvm-toolchain-7 (1:7~+rc2-1~exp3) experimental; urgency=medium
.
* Remove libtool flex, bison, dejagnu, tcl, expect,
and perl from the build deps (testing)
* Disable force-gcc-header-obj.diff as it is introducing
some regressions in the search headers
(Closes: #903709)
.
[ Gianfranco Costamagna ]
* Fix build on armhf, by removing some installed package
* Fix build on s390x, by disabling OpenMP
* Add liblldb-7-dev to python-lldb runtime dependencies, needed to import it
* Enable lld on arm64, mips64el
* Enable lldb on mips64el
.
[ Reshabh Sharma ]
* Add version for libc++ and OpenMP packages breaks/replaces
* Remove libc++-helpers package
- No real value
- Just two scripts
- Command line arguments aren't that complex
* Fix autopkgtest support
Checksums-Sha1:
2d7b97fe96bc770e13ba6f6dfd9194f7ee5e49ee 7977 llvm-toolchain-7_7~+rc2-1~exp3.dsc
4c49aa1d58870f8378aa7d97da6a3f03cc7d7e86 72664 llvm-toolchain-7_7~+rc2-1~exp3.debian.tar.xz
4e98e9bde982b02d6ea6521812c147b7fda53ca2 23847 llvm-toolchain-7_7~+rc2-1~exp3_amd64.buildinfo
Checksums-Sha256:
5a6d792f9b6ac1afe0f60337f2c65949e897e465050c4f4d8c05fc9255cad8e3 7977 llvm-toolchain-7_7~+rc2-1~exp3.dsc
8641fe0bfdf6185338a38e97cbbcb9908c404d319e591ea080967358e143775b 72664 llvm-toolchain-7_7~+rc2-1~exp3.debian.tar.xz
fbc3de0318b6f8245905f35cd1220440a04ebe3ee1a071a3ac20fafe46ce85ea 23847 llvm-toolchain-7_7~+rc2-1~exp3_amd64.buildinfo
Files:
561a39d9e273d7fbbed2eb70dafd11da 7977 devel optional llvm-toolchain-7_7~+rc2-1~exp3.dsc
56c216bc71215e300f5f204b422a5d16 72664 devel optional llvm-toolchain-7_7~+rc2-1~exp3.debian.tar.xz
6d58d59e3dc950d90ef0de9475419248 23847 devel optional llvm-toolchain-7_7~+rc2-1~exp3_amd64.buildinfo
-----BEGIN PGP SIGNATURE-----
iQIzBAEBCAAdFiEEtg21mU05vsTRqVzPfmUo2nUvG+EFAluM/d8ACgkQfmUo2nUv
G+Evkg//bhI9/tgNia1uXI/0G7nrMeS1+WGT4jo3z5EDSe0KNKy7jLWuoyo+lgFt
ABIfn0MH3QtAD+lvCM040DfsB2SS6c2V2CyjSjlpZDD/vUTS8XhlIH8pZ9CEwp0t
SkffyR77dWFY3XNyUSHPPzPMuPswPXVt9WbDrgsJuRCFvYl7QQlIyHjsWz+3bFpb
0tID69mQbMmGQ9GS5GEQlJK6ooCmdEV/njec0To1UnjeE+v767aImzzk4JpTLYDn
zRCEa/9YyhPsgWOAe5P2jTdWfCbnPOilpxd8Cla2xKnwri8F4ed1u9Dm6WmOdvis
YpWUxLo+EYOR2IsreYRNNc5TG/b1COD78S/xiqk+jr6aEcPoxBXUfHwf9AxBsYXn
NOE0MSy8qIbxY8PoySkGJvYiD05SDTdq5RGV7fGLAi6UHm0vVUxl5xoldjl40Gjt
l4LDX29Mgn80dDmaH5xvzGKFgvAha41dW0J/K7P0zyhKFIqy2F3+tp65OjW4Dmdc
32qn5kGSwIXOgmILLPxGBkIpNnY9Slnv1VHoTD0k2Vcs8gnqfnAc+76Dso7Ge/P/
WsTnEs3KAW3vMsAcpLaZQanClP2/3lLri+srpzLCmPQzPvpjMOHKug288SAq38vJ
s0GncxF0xhQF2ThrXimnG0csZY8iNdzOKE1rnZcmnGTXw1DaTV8=
=FdVx
-----END PGP SIGNATURE-----
Bug archived.
Request was from Debbugs Internal Request <owner@bugs.debian.org>
to internal_control@bugs.debian.org.
(Tue, 02 Oct 2018 07:25:57 GMT) (full text, mbox, link).
Send a report that this bug log contains spam.
Debbugs is free software and licensed under the terms of the GNU Public License version 2. The current version can be obtained from https://bugs.debian.org/debbugs-source/.
Copyright © 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson, 2005-2017 Don Armstrong, and many other contributors.