How to get started with contribution

2021-11-20 Thread parth rastogi via Gcc
Respected Sir/Ma'am,
I am Parth Rastogi, a computer science undergrad. I have just entered my
second year at Manipal University Jaipur. I am new to open source
contributions but I am well aware of C++, C, Python, and Javascript. I
would love to contribute to your organization but could you please tell me
how to get started.
Hoping to hear from you soon.
Regards
Parth Rastogi


Re: Getting started with open-source contributions

2021-11-20 Thread Jonathan Wakely via Gcc
On Tue, 16 Nov 2021 at 15:35, RAMAN SHEKHAWAT (RA2011003010289) via
Gcc  wrote:
>
> Respected Sir/Ma'am,
> I am Raman Shekhawat, a computer science undergraduate who has just entered
> his second year of college at SRM University. I am new to open-source
> contributions, but I am well versed with technologies like HTML5 and CSS,
> and also with programming languages like C++ and JavaScript. I would love
> to contribute to your organization but would require guidance from you on
> how to get started. Looking forward to hearing from you soon.

Thanks for your interest in GCC!

A good place to start is by reading the project's mailing list (the
one you've contacted!) and if you did that, you would find this
question has already been asked and answered several times this month.
You could start by reading those previous threads, so we don't need to
keep repeating ourselves.

See these threads (and others):

https://gcc.gnu.org/pipermail/gcc/2021-November/237719.html
https://gcc.gnu.org/pipermail/gcc/2021-November/237745.html
https://gcc.gnu.org/pipermail/gcc/2021-November/237754.html


Re: Seeking help for getting started with the contributions

2021-11-20 Thread Jonathan Wakely via Gcc
On Thu, 18 Nov 2021 at 15:43, Vaibhav Malik via Gcc  wrote:
>
> Hey!
>
> I am an electrical engineering student. I came across GNU a few months back
> and I want to contribute to improving the existing open-source projects and
> be part of the community. My skills include :
> C/C++
> HTML/CSS/JavaScript
> MATLAB
> Docker
> Kubernetes
> Git Bash
> GitHub
>
> I would really appreciate it if someone could help me set up and guide me
> about what should I learn in order to get started.
>
> Could someone help me out?

Thanks for your interest in GCC!

A good place to start is by reading the project's mailing list (the
one you've contacted!) and if you did that, you would find this
question has already been asked and answered several times this month.
You could start by reading those previous threads, so we don't need to
keep repeating ourselves.

See these threads (and others):

https://gcc.gnu.org/pipermail/gcc/2021-November/237719.html
https://gcc.gnu.org/pipermail/gcc/2021-November/237745.html
https://gcc.gnu.org/pipermail/gcc/2021-November/237754.html


Re: How to get started with contribution

2021-11-20 Thread Jonathan Wakely via Gcc
On Sat, 20 Nov 2021 at 10:06, parth rastogi via Gcc  wrote:
>
> Respected Sir/Ma'am,
> I am Parth Rastogi, a computer science undergrad. I have just entered my
> second year at Manipal University Jaipur. I am new to open source
> contributions but I am well aware of C++, C, Python, and Javascript. I
> would love to contribute to your organization but could you please tell me
> how to get started.
> Hoping to hear from you soon.
> Regards
> Parth Rastogi

Thanks for your interest in GCC!

A good place to start is by reading the project's mailing list (the
one you've contacted!) and if you did that, you would find this
question has already been asked and answered several times this month.
You could start by reading those previous threads, so we don't need to
keep repeating ourselves.

See these threads (and others):

https://gcc.gnu.org/pipermail/gcc/2021-November/237719.html
https://gcc.gnu.org/pipermail/gcc/2021-November/237745.html
https://gcc.gnu.org/pipermail/gcc/2021-November/237754.html


Re: How to get started with contribution

2021-11-20 Thread parth rastogi via Gcc
Thank you, I will do that.

On Sat, Nov 20, 2021 at 4:12 PM Jonathan Wakely 
wrote:

> On Sat, 20 Nov 2021 at 10:06, parth rastogi via Gcc 
> wrote:
> >
> > Respected Sir/Ma'am,
> > I am Parth Rastogi, a computer science undergrad. I have just entered my
> > second year at Manipal University Jaipur. I am new to open source
> > contributions but I am well aware of C++, C, Python, and Javascript. I
> > would love to contribute to your organization but could you please tell
> me
> > how to get started.
> > Hoping to hear from you soon.
> > Regards
> > Parth Rastogi
>
> Thanks for your interest in GCC!
>
> A good place to start is by reading the project's mailing list (the
> one you've contacted!) and if you did that, you would find this
> question has already been asked and answered several times this month.
> You could start by reading those previous threads, so we don't need to
> keep repeating ourselves.
>
> See these threads (and others):
>
> https://gcc.gnu.org/pipermail/gcc/2021-November/237719.html
> https://gcc.gnu.org/pipermail/gcc/2021-November/237745.html
> https://gcc.gnu.org/pipermail/gcc/2021-November/237754.html
>


Ping: ISO C3X proposal: nonnull qualifier

2021-11-20 Thread Alejandro Colomar (man-pages) via Gcc

Ping

On 11/17/21 01:06, Alejandro Colomar (man-pages) wrote:

Hi,

Sorry for Clang people,
when I started this thread,
I wasn't subscribed to your list,
and some messages are not on your list.
You can find the complete thread on the GCC list:


I have a few questions for you.
See below, please.

On 11/16/21 13:34, Alejandro Colomar (man-pages) wrote:

$ cat _Nonnull.c
#include 

int *_Nonnull f(int *_Nullable p)
{
 if (!p)
 exit(1);
 return p;
}


- I get a warning from f().
   Ideally,
   a programmer should not need to cast
   (casts are dangerous),
   to convert a nullable pointer to a _Nonnull pointer.
   For that,
   appropriate checks should be in the preceeding code.
   Otherwise, a diagnostic should be issued.
   To be on the safe side,
   if a compiler has doubts,
   it should diagnose.

   There's some Clang document that talks about something similar.
   I don't know its validity,
   or if it was a draft before _Nonnull qualifiers.
   


That document suggests that I shouldn't get a diagnostic from f().
Why did I get a diagnostic?  (I tried clang 11, 13 & 14(experimental))


Is it talking about a different nonnull attribute/qualifier?
Was it about a proposal prior to the current _Nonnull?
Why is it not in use?  Was it too difficult to implement?


Do you think Clang could be improved to not warn on f()?


Thanks,
Alex



--
Alejandro Colomar
Linux man-pages comaintainer; http://www.kernel.org/doc/man-pages/
http://www.alejandro-colomar.es/


gcc-11-20211120 is now available

2021-11-20 Thread GCC Administrator via Gcc
Snapshot gcc-11-20211120 is now available on
  https://gcc.gnu.org/pub/gcc/snapshots/11-20211120/
and on various mirrors, see http://gcc.gnu.org/mirrors.html for details.

This snapshot has been generated from the GCC 11 git branch
with the following options: git://gcc.gnu.org/git/gcc.git branch 
releases/gcc-11 revision c2079b9a7879ec4da5632f7282fa5732404af8c5

You'll find:

 gcc-11-20211120.tar.xz   Complete GCC

  SHA256=33f5bc8fe6c78339f8c567bb7450406bb09edfb62d6282798b727630437a52ef
  SHA1=95679a56d3a6ab09cf1bd5ff5b93fd94e9a48b8c

Diffs from 11-2023 are available in the diffs/ subdirectory.

When a particular snapshot is ready for public consumption the LATEST-11
link is updated and a message is sent to the gcc list.  Please do not use
a snapshot before it has been announced that way.