Processing of gcc-snapshot_20070916-1_hppa.changes
gcc-snapshot_20070916-1_hppa.changes uploaded successfully to localhost along with the files: gcc-snapshot_20070916-1_hppa.deb Greetings, Your Debian queue daemon -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Processing of gcc-snapshot_20070916-1_sparc.changes
gcc-snapshot_20070916-1_sparc.changes uploaded successfully to localhost along with the files: gcc-snapshot_20070916-1_sparc.deb Greetings, Your Debian queue daemon -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
gcc-snapshot_20070916-1_hppa.changes ACCEPTED
Accepted: gcc-snapshot_20070916-1_hppa.deb to pool/main/g/gcc-snapshot/gcc-snapshot_20070916-1_hppa.deb Override entries for your package: gcc-snapshot_20070916-1_hppa.deb - extra devel Thank you for your contribution to Debian. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
gcc-snapshot_20070916-1_sparc.changes ACCEPTED
Accepted: gcc-snapshot_20070916-1_sparc.deb to pool/main/g/gcc-snapshot/gcc-snapshot_20070916-1_sparc.deb Override entries for your package: gcc-snapshot_20070916-1_sparc.deb - extra devel Thank you for your contribution to Debian. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
[Bug fortran/33446] [4.3 regression] ERROR: gfortran.dg/nint_2.f90 -O0 : syntax error in target selector
--- Comment #2 from fxcoudert at gcc dot gnu dot org 2007-09-17 08:40 --- Yep, this was fixed. Sorry. -- fxcoudert at gcc dot gnu dot org changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED Resolution||FIXED http://gcc.gnu.org/bugzilla/show_bug.cgi?id=33446 --- You are receiving this mail because: --- You reported the bug, or are watching the reporter. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#308367: Creat1ve Su1te 3 for PC 0r Mac 269 $ Save_1599,95 from retalI & down1oad lnstant
Vizit mycheapsoft. com ln Internet Xp1orer browser. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#85535: Creat1ve Su1te 3 for PC 0r Mac 269 $ Save_1599,95 from retalI & down1oad lnstant
Vizit mycheapsoft. com ln Internet Xp1orer browser. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#221291: Creat1ve Su1te 3 for PC 0r Mac 269 $ Save_1599,95 from retalI & down1oad lnstant
Vizit mycheapsoft. com ln Internet Xp1orer browser. -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Processed: [bts-link] source package gcc-snapshot
Processing commands for [EMAIL PROTECTED]: > # > # bts-link upstream status pull for source package gcc-snapshot > # see http://lists.debian.org/debian-devel-announce/2006/05/msg1.html > # > user [EMAIL PROTECTED] Setting user to [EMAIL PROTECTED] (was [EMAIL PROTECTED]). > # remote status report for #440378 > # * http://gcc.gnu.org/PR33273 > # * remote status changed: UNCONFIRMED -> RESOLVED > # * remote resolution changed: (?) -> FIXED > # * closed upstream > tags 440378 + fixed-upstream Bug#440378: [hppa] ICE: unrecognizable insn: in extract_insn, at recog.c:1990 Tags were: upstream Tags added: fixed-upstream > usertags 440378 - status-UNCONFIRMED Bug#440378: [hppa] ICE: unrecognizable insn: in extract_insn, at recog.c:1990 Usertags were: status-UNCONFIRMED. Usertags are now: . > usertags 440378 + status-RESOLVED resolution-FIXED Bug#440378: [hppa] ICE: unrecognizable insn: in extract_insn, at recog.c:1990 There were no usertags set. Usertags are now: resolution-FIXED status-RESOLVED. > thanks Stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database) -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
[bts-link] source package gcc-snapshot
# # bts-link upstream status pull for source package gcc-snapshot # see http://lists.debian.org/debian-devel-announce/2006/05/msg1.html # user [EMAIL PROTECTED] # remote status report for #440378 # * http://gcc.gnu.org/PR33273 # * remote status changed: UNCONFIRMED -> RESOLVED # * remote resolution changed: (?) -> FIXED # * closed upstream tags 440378 + fixed-upstream usertags 440378 - status-UNCONFIRMED usertags 440378 + status-RESOLVED resolution-FIXED thanks
Bug#442918: -fvisibility=hidden should not affect symbols declared with extern
Package: gcc Version: 4:4.2.1-6 Severity: normal --- Please enter the report below this line. --- If I use -fvisibility=hidden, I expect symbols declared with "extern" not be affected by it, as per the manpage (gcc-4.2 in gcc-4.2-doc). "extern declarations are not affected by -fvisibility, so a lot of code can be recompiled with -fvisibility=hidden with no modifications" Yet a very simple testcase shows that even symbols marked extern are affected. Tested with gcc-4.2, and gcc-4.1. $ cat dso.c extern int symbol(int x); extern int symbol(int x) { } $ gcc -fPIC -DPIC -fvisibility=hidden -shared dso.c -o dso.so && readelf -a dso.so | grep symbol 49: 04cc 9 FUNCLOCAL HIDDEN 11 symbol If I link an application that uses that symbol, the link will fail, since the symbol is local and hidden. Adding __attribute__((visibility("default"))) works as expected (producing a DEFAULT symbol). Either the manpage, or the behaviour should be changed. Fixing the manpage is for sure the easiest way, but affecting externs symbols by visibility=hidden is nonsense, since those are suppposed to be the API functions that you "export". Its the only (standard) way I can mark a functions as a globally visible API. Also programs using symbols declared as extern expect (and for good reason) to be able to successfully link with a DSO containing that symbol. Alternatives described at http://gcc.gnu.org/wiki/Visibility work of course, but they require code changes. Not at all the "recompile with no modifications" advertised by the manpage. I should have another -fvisibility-hidden-make-extern-behave-the-way-its-supposed-to-be flag if the behaviour for "extern" and -fvisibility=hidden is to stay the same. But if this is to be fixed in the behaviour, then it should be backported to gcc-4.1 too IMHO. --- System information. --- Architecture: amd64 Kernel: Linux 2.6.23-rc6-hrt1-gc87ce658-dirty Debian Release: lenny/sid 500 unstablewww.debian-multimedia.org 500 unstableftp.iasi.roedu.net 500 testing ftp.iasi.roedu.net 500 feisty wine.budgetdedicated.com 500 etchdebian.beryl-project.org 1 experimentalftp.iasi.roedu.net --- Package information. --- Depends (Version) | Installed ===-+-=== cpp (>= 4:4.2.1-6) | 4:4.2.1-6 gcc-4.2(>= 4.2.1-3) | 4.2.1-5 -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Bug#442950: g++-4.2: -Wwrite-strings getting turned on for no aparent reason
Package: g++-4.2 Version: 4.2.1-4 Severity: minor Hi. Sometime in the last month or so, g++ has started spitting out at me a bunch of "warning: deprecated conversion from string constant to ‘char*’" messages. This apparently comes from -Wwrite-strings. However, according to the man/info pages, this option shouldn't be turned on unless explicitly requrested (not even -Wall turns it on). My makefile certainly certainly isn't turning it on, and I don't get this message when compiling in Fedora or OS/X. I've looked the the changelog.Debian and haven't seen anything to explain this. I can turn it off with a CXXFLAGS=-Wno-write-strings, but it's a pain to remeber this each time so I'd really appreciate it if you could fix this. :) Thanks, -- System Information: Debian Release: lenny/sid APT prefers testing APT policy: (990, 'testing'), (110, 'unstable') Architecture: i386 (i686) Kernel: Linux 2.6.21cavy1 Locale: LANG=he_IL.UTF-8, LC_CTYPE=he_IL.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages g++-4.2 depends on: ii gcc-4.2 4.2.1-4The GNU C compiler ii gcc-4.2-base 4.2.1-4The GNU Compiler Collection (base ii libc6 2.6.1-1+b1 GNU C Library: Shared libraries ii libstdc++6-4.2-dev4.2.1-4The GNU Standard C++ Library v3 (d g++-4.2 recommends no packages. -- no debconf information -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]