Bug#823280: invalid Build-Depends with DEB_BUILD_OPTIONS=nolang=biarch

2016-05-02 Thread Helmut Grohne
Package: gcc-5,gcc-6 Severity: wishlist Tags: patch User: helm...@debian.org Usertags: rebootstrap Hi Matthias, Starting with dpkg 1.18.5, the parsing of Build-Depends has become stricter. This causes dpkg-shlibdeps to error out on gcc's Build-Depends when disabling multilib with

Results for 5.3.1 20160429 (Debian 5.3.1-17) testsuite on mipsel-unknown-linux-gnu

2016-05-02 Thread Matthias Klose
LAST_UPDATED: Fri Apr 29 13:11:44 UTC 2016 (revision 235638) Target: mipsel-linux-gnu gcc version 5.3.1 20160429 (Debian 5.3.1-17) Native configuration is mipsel-unknown-linux-gnu === g++ tests === Running target unix FAIL: g++.dg/cpp0x/lambda/lambda-70218.C -std=c++11

Bug#809509: Support for --with-{cpu,tune}-{32,64} in sparc*-* targets

2016-05-02 Thread Jose E. Marchesi
I just send the patch below to upstream, that adds adds support for the --with-{cpu,tune}-{32,64} configure options to sparc*-* targets. This allows to separately select cpus and tune options for -m32 and -m64 modes in multilib compilers. Tested in sparc64-*-* and sparcv9-*-* targets.

gcc-defaults_1.151_i386.changes ACCEPTED into unstable

2016-05-02 Thread Debian FTP Masters
Accepted: -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Format: 1.8 Date: Mon, 02 May 2016 18:23:12 +0200 Source: gcc-defaults Binary: cpp gcc gcc-multilib g++ g++-multilib gobjc gobjc-multilib gobjc++ gobjc++-multilib gfortran gfortran-multilib gccgo gccgo-multilib libgcj-common libgcj-bc

Processing of gcc-defaults_1.151_i386.changes

2016-05-02 Thread Debian FTP Masters
gcc-defaults_1.151_i386.changes uploaded successfully to localhost along with the files: gcc-defaults_1.151.dsc gcc-defaults_1.151.tar.gz cpp-aarch64-linux-gnu_5.3.1-2_i386.deb cpp-arm-linux-gnueabi_5.3.1-2_i386.deb cpp-arm-linux-gnueabihf_5.3.1-2_i386.deb

Bug#823222: gcc-4.9: reordering of signed int operations triggers overflow

2016-05-02 Thread g1
Package: gcc-4.9 Version: 4.9.2-10 Severity: normal I compiled the program #include #include int main() { int s = 1 << 30; s += (s - 1); printf("%d\n%d\n%d\n", sizeof s, s, INT_MAX); return 0; } with "gcc -W -Wall -ansi -pedantic -O0