Contributing to GCC

2023-11-21 Thread Hamish Baxter via Gcc
Dear GCC community. I am a current Computer Science student who enjoys C programming with an interest in learning compilers, and am looking to contribute to an open source project. I am not sure exactly where to start or how it works: perhaps testing / technical documentation / bug fixes? Is it

Re: Contributing to GCC

2023-11-21 Thread Tobias Burnus
Hi Tom, On 21.11.23 11:32, Hamish Baxter via Gcc wrote: I am a current Computer Science student who enjoys C programming with an interest in learning compilers, and am looking to contribute to an open source project. I am not sure exactly where to start or how it works: perhaps testing / techni

Re: function parameters

2023-11-21 Thread Jonathan Wakely via Gcc
On Tue, 21 Nov 2023 at 02:31, André Albergaria Coelho via Gcc wrote: > > Hello Hello, This mailing list is for discussing the development of GCC itself, not for help with basic C programming. Please use the gcc-h...@gcc.gnu.org list for this kind of thing, or a general C programming forum. Than

Re: Contributing to GCC

2023-11-21 Thread Jonathan Wakely via Gcc
On Tue, 21 Nov 2023 at 10:58, Tobias Burnus wrote: > > Hi Tom, > > On 21.11.23 11:32, Hamish Baxter via Gcc wrote: > > I am a current Computer Science student who enjoys C programming with an > > interest in learning compilers, and am looking to contribute to an > > open source project. > > > > I

Re: [PATCH 3/4] libbacktrace: work with aslr on windows

2023-11-21 Thread Björn Schäpers
I'll guess it is not needed here, but otherwise defines the macros max and min, they then conflict e.g. with C++'s std::max/std::min. So I consider it best practice to always define it, before including . Am 20.11.2023 um 21:07 schrieb Eli Zaretskii: Date: Mon, 20 Nov 2023 20:57:38 +0100 Cc:

Re: [PATCH 3/4] libbacktrace: work with aslr on windows

2023-11-21 Thread LIU Hao via Gcc
在 2023/11/22 03:35, Björn Schäpers 写道: I'll guess it is not needed here, but otherwise defines the macros max and min, they then conflict e.g. with C++'s std::max/std::min. So I consider it best practice to always define it, before including . The mingw-w64 header does not define them for C++