Package: jellyfish Severity: minor Tags: patch User: pkg-llvm-t...@lists.alioth.debian.org Usertags: clang-ftbfs
Hello, Using the rebuild infrastructure, your package fails to build with clang (instead of gcc). See build logs here: http://clang.debian.net/logs/2014-01-14/jellyfish_1.1.10-1_unstable_clang.log Thanks, Alexander -- System Information: Debian Release: jessie/sid APT prefers unstable APT policy: (500, 'unstable') Architecture: amd64 (x86_64) Kernel: Linux 3.13-1-amd64 (SMP w/1 CPU core) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash
--- jellyfish-1.1.11/jellyfish/invertible_hash_array.hpp 2013-05-29 15:45:57.000000000 -0400 +++ jellyfish-1.1.11-my/jellyfish/invertible_hash_array.hpp 2014-05-24 09:09:09.986534767 -0400 @@ -636,7 +636,7 @@ bool _get_val(const size_t id, size_t &key_id, const word key, word &val, bool full = false, bool carry_bit = false) const { // Buffer for pre-cached information - prefetch_info info_ary[prefetch_buffer::capacity()]; + prefetch_info *info_ary = reinterpret_cast<prefetch_info *>(alloca(sizeof(prefetch_info) * prefetch_buffer::capacity())); prefetch_buffer buffer(info_ary); warm_up_cache(buffer, id, false);