public inbox for overseers@sourceware.org
 help / color / mirror / Atom feed
* User account creation has been restricted
@ 2021-12-21 18:37 Guy
  2021-12-21 19:16 ` Frank Ch. Eigler
  2021-12-21 19:19 ` Christopher Faylor
  0 siblings, 2 replies; 8+ messages in thread
From: Guy @ 2021-12-21 18:37 UTC (permalink / raw)
  To: overseers

I was trying to report a new bug in setup.exe

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

* Re: User account creation has been restricted
  2021-12-21 18:37 User account creation has been restricted Guy
@ 2021-12-21 19:16 ` Frank Ch. Eigler
  2021-12-21 19:19 ` Christopher Faylor
  1 sibling, 0 replies; 8+ messages in thread
From: Frank Ch. Eigler @ 2021-12-21 19:16 UTC (permalink / raw)
  To: Overseers mailing list; +Cc: Guy

Hi -

> I was trying to report a new bug in setup.exe

Account created.

- FChE

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

* Re: User account creation has been restricted
  2021-12-21 18:37 User account creation has been restricted Guy
  2021-12-21 19:16 ` Frank Ch. Eigler
@ 2021-12-21 19:19 ` Christopher Faylor
  1 sibling, 0 replies; 8+ messages in thread
From: Christopher Faylor @ 2021-12-21 19:19 UTC (permalink / raw)
  To: Guy; +Cc: overseers

On Tue, Dec 21, 2021 at 01:37:42PM -0500, Guy wrote:
>I was trying to report a new bug in setup.exe

Please use the cygwin mailing list to report bugs.  Cygwin doesn't use
bugzilla.


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

* User account creation has been restricted
@ 2017-03-05  8:52 Tino Calancha
  0 siblings, 0 replies; 8+ messages in thread
From: Tino Calancha @ 2017-03-05  8:52 UTC (permalink / raw)
  To: overseers


Contact your administrator or the maintainer (overseers@gcc.gnu.org) for 
information about creating an account.

Hi,

i want to create an account in order to fill a bug report.
How can i do it?
Thanks

Tino

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

* User account creation has been restricted
@ 2015-03-01  5:54 Dustin Boyd
  0 siblings, 0 replies; 8+ messages in thread
From: Dustin Boyd @ 2015-03-01  5:54 UTC (permalink / raw)
  To: overseers

I was going to report a bug, or what seems to be a bug, but when I
tried to create an account, I received the following error:

====
User account creation has been restricted.
Contact your administrator or the maintainer (overseers@gcc.gnu.org)
for information about creating an account.
====

It's a small bug with C99 VLAs I just encountered on mingw-w64 that
only sometimes resulting in a warning diagnostic.  If I could test
other targets, I would.

I just downloaded TDM-GCC 4.8.2, and it happens using that compiler as
well as with my own GCC 4.9.1 compiler I built a few months ago, both
of which target mingw-w64.

I'd love to report it to someone who could put it into the issue
tracker at the very least, so if that's an option, I'd be happy to do
that as well.

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

* User account creation has been restricted
@ 2015-01-27  7:20 Vladimir Stackov
  0 siblings, 0 replies; 8+ messages in thread
From: Vladimir Stackov @ 2015-01-27  7:20 UTC (permalink / raw)
  To: overseers

Greetings,

I want to write a bug report about g++ but can't register new account
for this email because I'm receiving following message:

User account creation has been restricted.
Contact your administrator or the maintainer (overseers@gcc.gnu.org)
for information about creating an account.

Could you help me please?

-- 
Kind regards,
Vladimir.

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

* User account creation has been restricted
@ 2014-10-31  7:29 Gonzalez Pedro
  0 siblings, 0 replies; 8+ messages in thread
From: Gonzalez Pedro @ 2014-10-31  7:29 UTC (permalink / raw)
  To: overseers

[-- Attachment #1: Type: text/plain, Size: 1197 bytes --]

hello,

I wanted to create account to submit bug, but got back this error message:
User account creation has been restricted.
Contact your administrator or the maintainer (overseers@gcc.gnu.org)
for information about creating an account.

Anyway, here are the bug details
Title:
Temporary object stack space is not re-used
Related to:
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=51060
Description:
The only difference between this issue and 51060 is that code is being
compiled without "Os".

$ g++ -c 51060.cpp -Wframe-larger-than=2048 -Werror
51060.cpp: In function ‘void Test()’:
51060.cpp:37:1: error: the frame size of 10240 bytes is larger than
2048 bytes [-Werror=frame-larger-than=]
 }
 ^
cc1plus: all warnings being treated as errors
See attached code sample.

Environment:
$ g++ --version
g++ (GCC) 4.8.3 20140911 (Red Hat 4.8.3-7)
Copyright (C) 2013 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
$ uname -s -r -v -p -i -o
Linux 3.16.6-200.fc20.x86_64 #1 SMP Wed Oct 15 13:06:51 UTC 2014
x86_64 x86_64 GNU/Linux

[-- Attachment #2: 51060.cpp --]
[-- Type: text/x-c++src, Size: 662 bytes --]

//
// Shows a problem of not re-using stack space:
// Compile as: g++ -c 51060.cpp -Wframe-larger-than=2048 -Werror
// Result: warning: the frame size of 10240 bytes is larger than 2048 bytes [-Wframe-larger-than=]
//
#include <iostream>

struct StackObject
{
    StackObject()
    {
        // prevent optimization
        buffer[0] = 0;
        std::cerr << buffer;
    }
    char buffer[1024];
};

void Test()
{
#define TEST_SUB() \
    { StackObject(); }
    
#define TEST() \
    TEST_SUB() \
    TEST_SUB() \
    TEST_SUB() \
    TEST_SUB() \
    TEST_SUB() \
    TEST_SUB() \
    TEST_SUB() \
    TEST_SUB() \
    TEST_SUB() \
    TEST_SUB()

    TEST()
}

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

* User account creation has been restricted
@ 2014-10-29 15:16 Eric Shattow
  0 siblings, 0 replies; 8+ messages in thread
From: Eric Shattow @ 2014-10-29 15:16 UTC (permalink / raw)
  To: overseers

Hi,

I would like to file a gcc bug, and need to create a gcc bugzilla
account login using this email address. The error message I get when
creating a new bugzilla account is:

User account creation has been restricted

Please allow me to make a new account or recover the password if I
have forgotten my credentials.

Thanks,

Eric Shattow

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

end of thread, other threads:[~2021-12-21 19:19 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-12-21 18:37 User account creation has been restricted Guy
2021-12-21 19:16 ` Frank Ch. Eigler
2021-12-21 19:19 ` Christopher Faylor
  -- strict thread matches above, loose matches on Subject: below --
2017-03-05  8:52 Tino Calancha
2015-03-01  5:54 Dustin Boyd
2015-01-27  7:20 Vladimir Stackov
2014-10-31  7:29 Gonzalez Pedro
2014-10-29 15:16 Eric Shattow

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).