Bug#652160: libstdc++6-4.6-dbg: ldconfig complains about /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.16-gdb.py
Package: libstdc++6-4.6-dbg Version: 4.6.2-7 Severity: normal Hi. Since some time ldconfig always complains about: ldconfig: /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.16-gdb.py is not an ELF file - it has the wrong magic bytes at the start. Any idea? Cheers, Chris. -- System Information: Debian Release: wheezy/sid APT prefers unstable APT policy: (500, 'unstable') Architecture: amd64 (x86_64) Kernel: Linux 3.1.5-heisenberg (SMP w/2 CPU cores; PREEMPT) Locale: LANG=en_DE.UTF-8, LC_CTYPE=en_DE.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages libstdc++6-4.6-dbg depends on: ii gcc-4.6-base 4.6.2-7 ii libc6 2.13-23 ii libgcc1 1:4.6.2-7 ii libgcc1-dbg 1:4.6.2-7 ii libstdc++64.6.2-7 Versions of packages libstdc++6-4.6-dbg recommends: ii libstdc++6-4.6-dev 4.6.2-7 libstdc++6-4.6-dbg suggests no packages. -- no debconf information -- To UNSUBSCRIBE, email to debian-gcc-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/20111215101021.27907.23195.report...@heisenberg.scientia.net
Bug#652205: assembler errors when trying to build flint on armhf
package: gcc-4.6 severity: important version: 1.011-2 flint FTBFS on armhf with the following errors gcc -fPIC -std=c99 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Wformat-security -Werror=format-security -Wall -funroll-loops -I/usr/include -I/usr/include/NTL -c ZmodF.c -o ZmodF.o ZmodF.c: In function 'ZmodF_divby3': ZmodF.c:556:18: warning: unused variable 'rem' [-Wunused-variable] /tmp/ccqrATB5.s: Assembler messages: /tmp/ccqrATB5.s:4619: Error: selected processor does not support Thumb mode `rsc ip,ip,ip' make[1]: *** [ZmodF.o] Error 1 make[1]: Leaving directory `/build/buildd-flint_1.011-2-armhf-_anfYZ/flint-1.011' make: *** [debian/stamp-makefile-build] Error 2 To try and find the issue I first tried to disable optimisation, doing so changed the register names but left us with a very similar error. root@debian:/flint-1.011# gcc -fPIC -std=c99 -g -O0 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Wformat-security -Werror=format-security -Wall -funroll-loops -I/usr/include -I/usr/include/NTL -c ZmodF.c -o ZmodF.o ZmodF.c: In function 'ZmodF_divby3': ZmodF.c:556:18: warning: unused variable 'rem' [-Wunused-variable] /tmp/cc3zqlRw.s: Assembler messages: /tmp/cc3zqlRw.s:1594: Error: selected processor does not support Thumb mode `rsc r4,r1,#0' when that failed I built a .s file with the following command. gcc -S -fPIC -std=c99 -g -O0 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Wformat-security -Werror=format-security -Wall -funroll-loops -I/usr/include -I/usr/include/NTL ZmodF.c and tried to build it with as which resulted in root@debian:/flint-1.011# as ZmodF.s ZmodF.s: Assembler messages: ZmodF.s:1594: Error: selected processor does not support Thumb mode `rsc r4,r1,#0' root@debian:/flint-1.011# looking at ZmodF.s I see @ 242 "ZmodF.c" 1 rsbsr2, r4, r0 rsc r4, r1, #0 @ 0 "" 2 looking at line 242 in ZmodF.c I see sub_ddmmss(Z, b[ss-1], 0, b[ss-1], 0, underflow); adding -marm to the cflags made the package build and when looking at the source file I didn't see any evidence of inline assembler so presumablly this is a c compiler and/or binutils bug. I'm filing against the c compiler in the first instance., please reassign to binutils if you think this is a problem in the linker. If the bug in the toolchain cannot be dealt with in a timely manner I will file a bug report against flint that makes the package build with -marm on armhf. -- To UNSUBSCRIBE, email to debian-gcc-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/4ee9fbc4.5080...@postgrad.manchester.ac.uk
Bug#652205: assembler errors when trying to build flint on armhf
reassign 652205 flint thanks inline assembler needs fixes for thumb mode. On 12/15/2011 02:53 PM, peter green wrote: > package: gcc-4.6 > severity: important > version: 1.011-2 > > flint FTBFS on armhf with the following errors > > gcc -fPIC -std=c99 -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat > -Wformat-security -Werror=format-security -Wall -funroll-loops -I/usr/include > -I/usr/include/NTL -c ZmodF.c -o ZmodF.o > ZmodF.c: In function 'ZmodF_divby3': > ZmodF.c:556:18: warning: unused variable 'rem' [-Wunused-variable] > /tmp/ccqrATB5.s: Assembler messages: > /tmp/ccqrATB5.s:4619: Error: selected processor does not support Thumb mode > `rsc > ip,ip,ip' > make[1]: *** [ZmodF.o] Error 1 > make[1]: Leaving directory > `/build/buildd-flint_1.011-2-armhf-_anfYZ/flint-1.011' > make: *** [debian/stamp-makefile-build] Error 2 > > To try and find the issue I first tried to disable optimisation, doing so > changed the register names but left us with a very similar error. > > root@debian:/flint-1.011# gcc -fPIC -std=c99 -g -O0 -fstack-protector > --param=ssp-buffer-size=4 -Wformat -Wformat-security -Werror=format-security > -Wall -funroll-loops -I/usr/include -I/usr/include/NTL -c ZmodF.c -o ZmodF.o > ZmodF.c: In function 'ZmodF_divby3': > ZmodF.c:556:18: warning: unused variable 'rem' [-Wunused-variable] > /tmp/cc3zqlRw.s: Assembler messages: > /tmp/cc3zqlRw.s:1594: Error: selected processor does not support Thumb mode > `rsc > r4,r1,#0' > > when that failed I built a .s file with the following command. > > gcc -S -fPIC -std=c99 -g -O0 -fstack-protector --param=ssp-buffer-size=4 > -Wformat -Wformat-security -Werror=format-security -Wall -funroll-loops > -I/usr/include -I/usr/include/NTL ZmodF.c > > and tried to build it with as which resulted in > > root@debian:/flint-1.011# as ZmodF.s > ZmodF.s: Assembler messages: > ZmodF.s:1594: Error: selected processor does not support Thumb mode `rsc > r4,r1,#0' > root@debian:/flint-1.011# > > looking at ZmodF.s I see > > @ 242 "ZmodF.c" 1 > rsbsr2, r4, r0 > rscr4, r1, #0 > @ 0 "" 2 > > looking at line 242 in ZmodF.c I see > > sub_ddmmss(Z, b[ss-1], 0, b[ss-1], 0, underflow); > > adding -marm to the cflags made the package build and when looking at the > source > file I didn't see any evidence of inline assembler so presumablly this is a c > compiler and/or binutils bug. I'm filing against the c compiler in the first > instance., please reassign to binutils if you think this is a problem in the > linker. If the bug in the toolchain cannot be dealt with in a timely manner I > will file a bug report against flint that makes the package build with -marm > on > armhf. > > > -- To UNSUBSCRIBE, email to debian-gcc-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/4eea0413.5080...@debian.org
Bug#652160: libstdc++6-4.6-dbg: ldconfig complains about /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.16-gdb.py
reassign 652160 eglibc thanks On 12/15/2011 11:10 AM, Christoph Anton Mitterer wrote: > Package: libstdc++6-4.6-dbg > Version: 4.6.2-7 > Severity: normal > > > Hi. > > Since some time ldconfig always complains about: > ldconfig: /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.16-gdb.py is not an ELF > file - it has the wrong magic bytes at the start. > > Any idea? ldconfig shouldn't warn about these. -- To UNSUBSCRIBE, email to debian-gcc-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/4eea0494.90...@debian.org
Processed: Re: Bug#652205: assembler errors when trying to build flint on armhf
Processing commands for cont...@bugs.debian.org: > reassign 652205 flint Bug #652205 [gcc-4.6] assembler errors when trying to build flint on armhf Bug reassigned from package 'gcc-4.6' to 'flint'. Bug No longer marked as found in versions 1.011-2. > thanks Stopping processing here. Please contact me if you need assistance. -- 652205: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=652205 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems -- To UNSUBSCRIBE, email to debian-gcc-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/handler.s.c.132395940116800.transcr...@bugs.debian.org
Processed: Re: Bug#652160: libstdc++6-4.6-dbg: ldconfig complains about /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.16-gdb.py
Processing commands for cont...@bugs.debian.org: > reassign 652160 eglibc Bug #652160 [libstdc++6-4.6-dbg] libstdc++6-4.6-dbg: ldconfig complains about /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.16-gdb.py Bug reassigned from package 'libstdc++6-4.6-dbg' to 'eglibc'. Bug No longer marked as found in versions gcc-4.6/4.6.2-7. > thanks Stopping processing here. Please contact me if you need assistance. -- 652160: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=652160 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems -- To UNSUBSCRIBE, email to debian-gcc-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/handler.s.c.132395946417621.transcr...@bugs.debian.org
[bts-link] source package gcc-defaults
# # bts-link upstream status pull for source package gcc-defaults # see http://lists.debian.org/debian-devel-announce/2006/05/msg1.html # user bts-link-upstr...@lists.alioth.debian.org # remote status report for #644722 (http://bugs.debian.org/644722) # Bug title: g++: internal compiler error while building ace on armel # * http://gcc.gnu.org/PR48660 # * remote status changed: (?) -> ASSIGNED usertags 644722 + status-ASSIGNED # remote status report for #644722 (http://bugs.debian.org/644722) # Bug title: g++: internal compiler error while building ace on armel # * http://gcc.gnu.org/PR48660 # * remote status changed: (?) -> ASSIGNED usertags 644722 + status-ASSIGNED thanks -- To UNSUBSCRIBE, email to debian-gcc-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/20111215164005.14544.81987.btsl...@busoni.debian.org
Processing of cloog-ppl_0.15.11-4_amd64.changes
cloog-ppl_0.15.11-4_amd64.changes uploaded successfully to localhost along with the files: cloog-ppl_0.15.11-4.dsc cloog-ppl_0.15.11-4.debian.tar.gz libcloog-ppl-dev_0.15.11-4_amd64.deb libcloog-ppl0_0.15.11-4_amd64.deb cloog-ppl_0.15.11-4_amd64.deb Greetings, Your Debian queue daemon (running on host franck.debian.org) -- To UNSUBSCRIBE, email to debian-gcc-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/e1rbg8r-0003cu...@franck.debian.org
cloog-ppl_0.15.11-4_amd64.changes ACCEPTED into unstable
Accepted: cloog-ppl_0.15.11-4.debian.tar.gz to main/c/cloog-ppl/cloog-ppl_0.15.11-4.debian.tar.gz cloog-ppl_0.15.11-4.dsc to main/c/cloog-ppl/cloog-ppl_0.15.11-4.dsc cloog-ppl_0.15.11-4_amd64.deb to main/c/cloog-ppl/cloog-ppl_0.15.11-4_amd64.deb libcloog-ppl-dev_0.15.11-4_amd64.deb to main/c/cloog-ppl/libcloog-ppl-dev_0.15.11-4_amd64.deb libcloog-ppl0_0.15.11-4_amd64.deb to main/c/cloog-ppl/libcloog-ppl0_0.15.11-4_amd64.deb Override entries for your package: cloog-ppl_0.15.11-4.dsc - source libs cloog-ppl_0.15.11-4_amd64.deb - optional devel libcloog-ppl-dev_0.15.11-4_amd64.deb - optional libdevel libcloog-ppl0_0.15.11-4_amd64.deb - optional libs Announcing to debian-devel-chan...@lists.debian.org Thank you for your contribution to Debian. -- To UNSUBSCRIBE, email to debian-gcc-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/e1rbgkn-0004ob...@franck.debian.org
Processing of cloog_0.17.0-1_amd64.changes
cloog_0.17.0-1_amd64.changes uploaded successfully to localhost along with the files: cloog_0.17.0-1.dsc cloog_0.17.0.orig.tar.gz cloog_0.17.0-1.diff.gz libcloog-isl-dev_0.17.0-1_amd64.deb libcloog-isl3_0.17.0-1_amd64.deb cloog-isl_0.17.0-1_amd64.deb Greetings, Your Debian queue daemon (running on host franck.debian.org) -- To UNSUBSCRIBE, email to debian-gcc-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/e1rbgn3-0004hh...@franck.debian.org
Processing of isl_0.08-1_amd64.changes
isl_0.08-1_amd64.changes uploaded successfully to localhost along with the files: isl_0.08-1.dsc isl_0.08.orig.tar.bz2 isl_0.08-1.debian.tar.gz libisl-dev_0.08-1_amd64.deb libisl-dbg_0.08-1_amd64.deb libisl8_0.08-1_amd64.deb Greetings, Your Debian queue daemon (running on host franck.debian.org) -- To UNSUBSCRIBE, email to debian-gcc-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/e1rbgn4-0004jp...@franck.debian.org
cloog_0.17.0-1_amd64.changes is NEW
(new) cloog-isl_0.17.0-1_amd64.deb optional libs Chunky Loop Generator (runtime library) CLooG is a software which generates loops for scanning Z-polyhedra. . This package contains the cloog-isl binary. cloog_0.17.0-1.diff.gz to main/c/cloog/cloog_0.17.0-1.diff.gz cloog_0.17.0-1.dsc to main/c/cloog/cloog_0.17.0-1.dsc cloog_0.17.0.orig.tar.gz to main/c/cloog/cloog_0.17.0.orig.tar.gz libcloog-isl-dev_0.17.0-1_amd64.deb to main/c/cloog/libcloog-isl-dev_0.17.0-1_amd64.deb (new) libcloog-isl3_0.17.0-1_amd64.deb optional libs Chunky Loop Generator (runtime library) CLooG is a software which generates loops for scanning Z-polyhedra. . This package contains the runtime library. Changes: cloog (0.17.0-1) unstable; urgency=low . * New upstream version. Override entries for your package: cloog_0.17.0-1.dsc - source libs libcloog-isl-dev_0.17.0-1_amd64.deb - optional libdevel Announcing to debian-devel-chan...@lists.debian.org Your package contains new components which requires manual editing of the override file. It is ok otherwise, so please be patient. New packages are usually added to the override file about once a week. You may have gotten the distribution wrong. You'll get warnings above if files already exist in other distributions. -- To UNSUBSCRIBE, email to debian-gcc-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/e1rbgzh-00079a...@franck.debian.org
isl_0.08-1_amd64.changes is NEW
isl_0.08-1.debian.tar.gz to main/i/isl/isl_0.08-1.debian.tar.gz isl_0.08-1.dsc to main/i/isl/isl_0.08-1.dsc isl_0.08.orig.tar.bz2 to main/i/isl/isl_0.08.orig.tar.bz2 (new) libisl-dbg_0.08-1_amd64.deb extra debug manipulating sets and relations of integer points bounded by linear constraints isl is a library for manipulating sets and relations of integer points bounded by linear constraints. Supported operations on sets include intersection, union, set difference, emptiness check, convex hull, (integer) affine hull, integer projection, and computing the lexicographic minimum using parametric integer programming. It also includes an ILP solver based on generalized basis reduction. . This package contains debug files. libisl-dev_0.08-1_amd64.deb to main/i/isl/libisl-dev_0.08-1_amd64.deb (new) libisl8_0.08-1_amd64.deb optional libs manipulating sets and relations of integer points bounded by linear constraints isl is a library for manipulating sets and relations of integer points bounded by linear constraints. Supported operations on sets include intersection, union, set difference, emptiness check, convex hull, (integer) affine hull, integer projection, and computing the lexicographic minimum using parametric integer programming. It also includes an ILP solver based on generalized basis reduction. . This package contains the runtime library. Changes: isl (0.08-1) unstable; urgency=low . * New upstream version. * Install into multiarch locations. * Build a -dbg package. Override entries for your package: isl_0.08-1.dsc - source libs libisl-dev_0.08-1_amd64.deb - optional libdevel Announcing to debian-devel-chan...@lists.debian.org Your package contains new components which requires manual editing of the override file. It is ok otherwise, so please be patient. New packages are usually added to the override file about once a week. You may have gotten the distribution wrong. You'll get warnings above if files already exist in other distributions. -- To UNSUBSCRIBE, email to debian-gcc-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/e1rbgzs-0007mh...@franck.debian.org
Bug#651607: gcc-4.4: cross-compiler build broken, cannot find its headers
Hi, nevermind (close if you want), gcc-4.6 builds a cross-compiler just fine, and since m68k was switched there anyway (looking good so far) I’m building that now instead. gn8, //mirabilos -- “Having a smoking section in a restaurant is like having a peeing section in a swimming pool.” -- Edward Burr -- To UNSUBSCRIBE, email to debian-gcc-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/pine.bsm.4.64l.1112152308580@herc.mirbsd.org