public inbox for overseers@sourceware.org
 help / color / mirror / Atom feed
* gcc bugzilla
@ 2023-11-30  5:14 Joern Rennecke
  2023-11-30  8:12 ` gcc bugzilla (and patchwork) Mark Wielaard
  0 siblings, 1 reply; 8+ messages in thread
From: Joern Rennecke @ 2023-11-30  5:14 UTC (permalink / raw)
  To: overseers

When I try to go to https://gcc.gnu.org/bugzilla/ (e.g. following the
bug data base link from the gcc .homepage), I get web page with an
error message:

Software error:

Can't connect to the database.
Error: Too many connections
  Is your database installed and up and running?
  Do you have the correct username and password selected in localconfig?

For help, please send mail to the webmaster (root@localhost), giving
this error message and the time and date of the error.

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: gcc bugzilla (and patchwork)
  2023-11-30  5:14 gcc bugzilla Joern Rennecke
@ 2023-11-30  8:12 ` Mark Wielaard
  0 siblings, 0 replies; 8+ messages in thread
From: Mark Wielaard @ 2023-11-30  8:12 UTC (permalink / raw)
  To: Overseers; +Cc: Joern Rennecke, patchwork-admin

Hi,

On Thu, Nov 30, 2023 at 05:14:04AM +0000, Joern Rennecke via Overseers wrote:
> When I try to go to https://gcc.gnu.org/bugzilla/ (e.g. following the
> bug data base link from the gcc .homepage), I get web page with an
> error message:
> 
> Software error:
> 
> Can't connect to the database.
> Error: Too many connections

bugzilla and patchwork seem to have been hit by some agressive bots.
I put blocks for ip ranges belonging to msnbot, bot@semrush.com and
sogouspider on our block.include list.

Things should work again.

We do have to look at the logging/warning reporting of patchwork. It
sent an email for each failing request to the admins, which wasn't fun
and made matters worse by sending thousands of emails from the
overloaded system.

Cheers,

Mark

^ permalink raw reply	[flat|nested] 8+ messages in thread

* GCC Bugzilla
@ 2017-03-30 10:20 Alfred Agrell
  0 siblings, 0 replies; 8+ messages in thread
From: Alfred Agrell @ 2017-03-30 10:20 UTC (permalink / raw)
  To: overseers

Hello, apparently I'm supposed to ask here rather than fill in the 
registration form.

It appears that g++ ignores register assignments in template functions. 
Would you mind creating an account for me so I can report it?

Alternatively, if you'd rather submit it yourself, here's the testcase:

template<int foo>
void bar()
{
     register int baz asm("NOT-A-REGISTER-SHOULD-REPORT-ERROR");
}
template void bar<0>();

^ permalink raw reply	[flat|nested] 8+ messages in thread

* GCC bugzilla
@ 2017-03-12  9:46 joris
  0 siblings, 0 replies; 8+ messages in thread
From: joris @ 2017-03-12  9:46 UTC (permalink / raw)
  To: overseers

Hi,

I wanted to create a user account for GCC bugzilla in order to file a bug.

In case you have a place for such report, a summary is here :


The diagnostic -Wmaybe-uninitialized does not print the offending line 
if the offending code happens inside a function-like macro


GCC 7.0 snapshot 7.0.1 20170305 (experimental)


macros.h:

#define print_int(x) print_it("%d",(x))


code.c:

#include "macros.h"

extern void print_it(const char *fmt, int i);

void test(void)

{

   int unint;

   print_int(uninit);

}

gcc  -c -Wall test.c

In file included from test.c:1:0:
test.c: In function 'test':
macros.h:1:22: warning: 'uninit' is used uninitialized in this function 
[-Wuninitialized]
  #define print_int(x) print_it("%d",(x))
                       ^~~~~~~~
test.c:7:7: note: 'uninit' was declared here
    int uninit;
        ^~~~~~

so the offending line print_int() is not shown.

Regards,

Joris Wu


^ permalink raw reply	[flat|nested] 8+ messages in thread

* GCC bugzilla
@ 2016-10-07 15:37 nicolas bouillot
  0 siblings, 0 replies; 8+ messages in thread
From: nicolas bouillot @ 2016-10-07 15:37 UTC (permalink / raw)
  To: overseers

Hi, I would like to make a feature request. I am not sure GCC bugzilla
is the right place for that, but if it is, I would like to open an
account.

Basically, I would like GCC to have the option to print compilation
error in reversed order, i.e. the first being printed last, etc. When
compiling from the terminal, it would avoid scrolling all day in order
to get the first error.

Nicolas

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: GCC Bugzilla
  2010-10-28 21:38 ` Andrew Pinski
@ 2010-10-29  0:31   ` Paul Koning
  0 siblings, 0 replies; 8+ messages in thread
From: Paul Koning @ 2010-10-29  0:31 UTC (permalink / raw)
  To: Andrew Pinski; +Cc: overseers

Thanks, I'm all set now.

	paul

On Oct 28, 2010, at 5:38 PM, Andrew Pinski wrote:

> You should be able to use your @gcc.gnu.org account to do everything
> on the GCC bugzilla.  That account has the correct privileges.
> 
> The easiest way to do this is do "forgot passport" and use your @gcc
> email address.  This will sent the information to where your
> @gcc.gnu.org is forwarded to.
> if you need to change the forwarding address use:
> ssh account@gcc.gnu.org email newemailaddress
> 
> Thanks,
> Andrew Pinski

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: GCC Bugzilla
  2010-10-28 21:31 GCC Bugzilla Paul Koning
@ 2010-10-28 21:38 ` Andrew Pinski
  2010-10-29  0:31   ` Paul Koning
  0 siblings, 1 reply; 8+ messages in thread
From: Andrew Pinski @ 2010-10-28 21:38 UTC (permalink / raw)
  To: Paul Koning; +Cc: overseers

You should be able to use your @gcc.gnu.org account to do everything
on the GCC bugzilla.  That account has the correct privileges.

The easiest way to do this is do "forgot passport" and use your @gcc
email address.  This will sent the information to where your
@gcc.gnu.org is forwarded to.
if you need to change the forwarding address use:
ssh account@gcc.gnu.org email newemailaddress

Thanks,
Andrew Pinski

^ permalink raw reply	[flat|nested] 8+ messages in thread

* GCC Bugzilla
@ 2010-10-28 21:31 Paul Koning
  2010-10-28 21:38 ` Andrew Pinski
  0 siblings, 1 reply; 8+ messages in thread
From: Paul Koning @ 2010-10-28 21:31 UTC (permalink / raw)
  To: overseers

Hi...

I just created a bugz account because I didn't have one (as far as I can tell).  It's under "ni1d@arrl.net", my alternate email address.

Question... I'm the target maintainer for pdp11, so I looked for bugs there; found three.  I would like to mark them as assigned to me but I don't have that privilege.  Can you enable that?  I don't know what the approval process is for that, if there is one; I searched a bit but did not find it.

Thanks!

	paul

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2023-11-30  8:12 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-11-30  5:14 gcc bugzilla Joern Rennecke
2023-11-30  8:12 ` gcc bugzilla (and patchwork) Mark Wielaard
  -- strict thread matches above, loose matches on Subject: below --
2017-03-30 10:20 GCC Bugzilla Alfred Agrell
2017-03-12  9:46 GCC bugzilla joris
2016-10-07 15:37 nicolas bouillot
2010-10-28 21:31 GCC Bugzilla Paul Koning
2010-10-28 21:38 ` Andrew Pinski
2010-10-29  0:31   ` Paul Koning

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).