LRA for avr: Clobber with match_dup

2023-07-20 Thread SenthilKumar.Selvaraj--- via Gcc
_JMP)) (use (label_ref (match_dup 1))) (clobber (match_dup 0)) (clobber (const_int 0)) (clobber (reg:CC REG_CC))])] "" [(set_attr "isa" "rjmp,rjmp,jmp")]) Note the (clobber (match_dup 0)). When building $ avr-gcc -mmcu=avr51 gc

Please stop blocking xstyle/stylish

2023-07-21 Thread zxuiji via Gcc
Your site is far too bright and is absolutely painful to the eyes, I have a simple invert style that I expected to work on all sites and I found your site is undertaking the vile act of blocking user styles. I expect that sort of rotten design from microsoft & apple (which ironically don't), not fr

[C++] [Coroutines] Does GCC want to support `-fno-coroutines`?

2023-07-27 Thread chuanqi.xcq via Gcc
Hi, We're discussing to implement `-fno-coroutines` in clang so that we can disable the coroutine feature with C++ standard higher than 20. A full discussion can be found here: https://reviews.llvm.org/D156247. A major motivation for us to do this is to keep consistency with GCC. Howeve

Re: LRA for avr: Handling hard regs set directly at expand

2023-07-27 Thread SenthilKumar.Selvaraj--- via Gcc
On Thu, 2023-07-27 at 15:11 +0200, Georg-Johann Lay wrote: > EXTERNAL EMAIL: Do not click links or open attachments unless you know the > content is safe > > Am 17.07.23 um 13:33 schrieb SenthilKumar.Selvaraj--- via Gcc: > > Hi, > > > >The avr target has a b

Re: LRA for avr: Handling hard regs set directly at expand

2023-08-02 Thread SenthilKumar.Selvaraj--- via Gcc
gt; > (clobber (reg:QI 0 r0)) > > (clobber (reg:QI 22 r22 [52])) > > ]) "pr53505.c":21:22 132 {cpymem_qi} > > (nil)) > > > > LRA generates insn 59 that clobbers r30 set in insn 14, causing an execution >

The gcc version used for compiling qt4.

2023-08-04 Thread amber.coles--- via Gcc
Did you ever solve this problem? I'm getting the exact same error.

Re: _Nullable and _Nonnull in GCC's analyzer (was: [PATCH v5] libio: Add nonnull attribute for most FILE * arguments in stdio.h)

2023-08-08 Thread enh via Gcc
(bionic maintainer here, mostly by accident...) yeah, we tried the GCC attributes once before with _disastrous_ results (because GCC saw it as an excuse to delete explicit null checks, it broke all kinds of things). the clang attributes are "better" in that they don't confu

LRA for avr: Arithmetic on stack pointer

2023-08-09 Thread SenthilKumar.Selvaraj--- via Gcc
r target pushes args into the stack, calls the function, and then adjusts the SP back to where it was before the arg pushing occurred. So for code like extern int foo(int, ...); int bar(void) { long double l = 1.2345E6; foo(0, l); return 0; } and $ avr-gcc -mmcu=avr51 -Os ../2003

Re: LRA for avr: help with FP and elimination

2023-08-10 Thread SenthilKumar.Selvaraj--- via Gcc
se that reproduces the failure. > > > > $ cat case.c > > typedef int HItype __attribute__ ((mode (HI))); > > HItype > > __mulvhi3 (HItype a, HItype b) > > { > >HItype w; > > > >if (__builtin_mul_overflow (a, b, &w)) > > __b

Re: _Nullable and _Nonnull in GCC's analyzer (was: [PATCH v5] libio: Add nonnull attribute for most FILE * arguments in stdio.h)

2023-08-11 Thread enh via Gcc
On Wed, Aug 9, 2023 at 12:26 AM Martin Uecker wrote: > > Am Dienstag, dem 08.08.2023 um 17:14 -0700 schrieb enh: > > (bionic maintainer here, mostly by accident...) > > > > yeah, we tried the GCC attributes once before with _disastrous_ > > results (because GCC

Оставьте, пожалуйста, отзыв

2023-08-14 Thread COINSTART via Gcc
Здравствуйте, уважаемый клиент! Спасибо, что доверяете нам! А Вы знали что у нас проходит розыгрыш денежного приза!? 💵 Условия очень простые: - Оставьте, пожалуйста, положительный отзыв на BestChange по данной ссылке: https://bestchange.ru/coinstart-exchanger.html - Подтвердите отзыв по ссылке в

Porting to a custom ISA

2023-08-15 Thread MegaIng via Gcc
Hello everyone, I am currently in the process of porting gcc to an ISA I designed with a few others (spec [1]). Using the old ggx/moxie tutorial as a guideline and looking at the source of other backends, as well as the quite decent gccint document, I managed to get basic programs running

Re: Porting to a custom ISA

2023-08-15 Thread MegaIng via Gcc
On Aug 15, 2023, at 7:37 AM, Paul Koning wrote: On Aug 15, 2023, at 7:37 AM, MegaIng via Gcc wrote: ... Also, on another backend I saw comments relating to libgcc (or newlib?) not working that well on systems where int is 16bit. Is that still true, and what is the best workaround? I

Re: Porting to a custom ISA

2023-08-15 Thread MegaIng via Gcc
On 2023-08-15 15:30, Paul Koning wrote: On Aug 15, 2023, at 8:56 AM, MegaIng wrote: Am 2023-08-15 um 14:48 schrieb Paul Koning: On Aug 15, 2023, at 8:06 AM, Richard Biener via Gcc wrote: On Tue, Aug 15, 2023 at 1:38 PM MegaIng via Gcc wrote: ... And a bit more concrete with something

gnu as

2023-08-18 Thread h3140067568--- via Gcc
Hi, I am an open-source enthusiast from China. I really like the cross platform features of AS assembly compilers. I hope the community can independently open source a branch of the backend assembly compiler of GCC compiler in gcc.gnu.org, just like nasm, and continuously improve it through

Re: gnu as

2023-08-19 Thread h3140067568--- via Gcc
Is it similar to the gnu as86 assembly compiler? Actually, I just hope to have a separate branch of the as86 assembly compiler Replied Message | From | Jonathan Wakely | | Date | 08/19/2023 14:29 | | To | h3140067...@163.com | | Cc | gcc | | Subject | Re: gnu as | On Sat, 19 Aug

LRA for avr: Clear mem rtx when resizing stack slots?

2023-09-01 Thread SenthilKumar.Selvaraj--- via Gcc
-150, -200); exit (0); } To reproduce, enable LRA in avr.c by removing TARGET_LRA_P hook, build with make all-host && make install-host, and compile $ avr-gcc -mmcu=avr51 ~/code/personal/gcc/gcc/testsuite/gcc.c-torture/execute/simd-2.c -Os -S -o out.s -fdump-rtl-all-raw The pass

LRA for avr: Maintain live range info for pseudos assigned to FP?

2023-09-07 Thread SenthilKumar.Selvaraj--- via Gcc
Hi, One more execution failure for the avr target, this time from gcc.c-torture/execute/bitfld-3.c. Steps to reproduce Enable LRA in avr.cc by removing TARGET_LRA_P hook, build with $ make all-host && make install-host and then $ avr-gcc gcc/testsuite/gcc.c-torture/execut

how to support GCC ?

2023-09-29 Thread Radisson97--- via Gcc
Hello list, i work for a companie that is heavy user of gcc C-compiler (Intel &arm). We were ask for projects and i would like to support the C-compiler. (not personaly but providing support for a project). Does someone feel competent so we can discuss what is doable ? (e.g. I would hav

B deed

2023-10-01 Thread ozzie696919--- via Gcc
For Sent from my iPhonezoiw o. I. a. matter that that you were your office with o one I’m I’m going in C CD was the

gnu glibc

2023-10-10 Thread h3140067568--- via Gcc
Hi, I am a Linux development enthusiast who sent you an email last time. After compiling glibc, I used make install to display nss_ Test2 cannot link the specified installation path to/usr

Help with clz(0) and optimization

2023-10-31 Thread Enrico via Gcc
I am working on GCC for a target architecture where clz(0) is defined and is 32 (TriCore). The code under test is the following: #include int f(unsigned int a) { unsigned int res = 32 - __builtin_clz(a); if(res > 0) printf("test"); return res; } >From GCC version g

Suboptimal warning formatting with `bool` type in C

2023-11-01 Thread peter0x44 via Gcc
tic to cope with #define? also, it's worth noting, clang has this same "problem" too. Both the compiler emits the suboptimal underlining in the diagnostic, and its stdbool.h uses #define for bool https://clang.llvm.org/doxygen/stdbool_8h_source.html https://gcc.gnu.org/git/?p=gcc.git;a=blob;f=gcc/ginclude/stdbool.h

Re: Suboptimal warning formatting with `bool` type in C

2023-11-01 Thread peter0x44 via Gcc
On 2023-11-01 23:13, Joseph Myers wrote: On Wed, 1 Nov 2023, peter0x44 via Gcc wrote: Why is #define used instead of typedef? I can't imagine how this could possibly break any existing code. That's how stdbool.h is specified up to C17. In C23, bool is a keyword instead. I see

Advice on how to disable floating point instructions

2023-11-04 Thread Enrico via Gcc
will GCC automatically use their software counterpart, from the builtins or libraries, by finding them via their instruction patterns? - I noticed that some opcodes of our architecture can be found in the assembler, but they are not available in the GCC backend. How can I inhibit the usage of

Re: Advice on how to disable floating point instructions

2023-11-05 Thread Enrico via Gcc
Best regards Enrico Il sab 4 nov 2023, 19:08 Andrew Pinski ha scritto: > On Sat, Nov 4, 2023 at 9:41 AM Enrico via Gcc wrote: > > > > Hello, > > > > > > for a custom architecture I am working on, I would like to entirely > disable > > the usage of hardwa

Understanding where a certain RTX comes from

2023-11-13 Thread Enrico via Gcc
Good evening, I need help understanding where some RTX comes from. In my target.md I have the following expansion: (define_expand "smaxsf3" [(parallel [(set (match_dup 3) (unspec:SI [(match_operand:SF 1 "register_operand" "") (match_operand:SF

Re: LRA for avr: Maintain live range info for pseudos assigned to FP?

2023-11-19 Thread SenthilKumar.Selvaraj--- via Gcc
for the avr target, this time from > >gcc.c-torture/execute/bitfld-3.c. > > > >Steps to reproduce > > > >Enable LRA in avr.cc by removing TARGET_LRA_P hook, build with > > > > $ make all-host && make install-host > > > >

Re: contributor guidelines

2023-12-04 Thread waffl3x via Gcc
On Monday, December 4th, 2023 at 5:37 AM, Jonathan Wakely via Gcc wrote: > > > On Mon, 4 Dec 2023 at 12:19, Bruno Haible wrote: > > > Hi, > > > > I was asked to post a patch for a bugzilla PR to gcc-patches@. Two questions > > regarding https:/

Dedicated Servers Promotions and offers-...@gcc.gnu.org

2023-12-11 Thread gowebing via Gcc
Mumara Email Template     Dedicated Server Hosting       Dedicated Servers Promotions and Offers     CPU:i3  RAM:8G Disk:1T Uni

Dedicated Servers Promotions and offers-...@gcc.gnu.org

2023-12-11 Thread gowebing via Gcc
Mumara Email Template     Dedicated Server Hosting       Dedicated Servers Promotions and Offers     CPU:i3  RAM:8G Disk:1T Uni

Dedicated Servers Promotions and offers-...@gcc.gnu.org

2023-12-11 Thread gowebing via Gcc
Mumara Email Template     Dedicated Server Hosting       Dedicated Servers Promotions and Offers     CPU:i3  RAM:8G Disk:1T Uni

'posix_spawnp' error in build

2023-12-25 Thread Prashant via Gcc
Hello, I'm new to the GCC community, who is willing to contribute and expand my knowledge on compilers. I hope this is the right forum I'm asking for help. I'm trying to build the gcc repository. Based on the instructions given on the SummerOfCode - GCC Wiki (gnu.org) <https:

Re: 'posix_spawnp' error in build

2023-12-25 Thread Prashant via Gcc
this important piece of information. Before > the execution of step 3, I'm out of the gcc repo. So 'gcc' and 'objdir' are > in the same level. > > I don't know if that is one of the weird problems caused by this. Easy > > enough to find out. First &q

Re: 'posix_spawnp' error in build

2023-12-26 Thread Prashant via Gcc
c.gnu.org/git/gcc.git > > > > 2) cd gcc & ./contrib/download_prerequisites > > > > 3) mkdir objdir & cd objdir > > > > 4) ../gcc/configure --prefix=/home/path/to/gcc > --enable-languages=c,c++ > > > > > > That is wrong. Build dir as a s

Re: Re: No subject

2024-01-05 Thread Peter0x44 via Gcc
s xp. https://github.com/skeeto/w64devkit/releases/latest Simply download and extract the latest zip here, and start the "w64devkit.exe" contained. It starts a shell with gcc & friends already present in your PATH, and you can begin compiling code in under 5 minutes.

Re: No subject

2024-01-05 Thread Peter0x44 via Gcc
5 Jan 2024 5:00:03 pm LIU Hao : 在 2024/1/5 21:44, Peter0x44 via Gcc 写道: Since you mentioned windows 7 specifically, some of the suggestions aren't really appropriate. I don't believe msys2 supports windows 7 anymore. Nobody mentioned Windows 7... maybe you mistook the que

Stage 4 date

2024-01-07 Thread waffl3x via Gcc
https://gcc.gnu.org/develop.html#timeline The date for stage 4 is listed as the 8th on here, is that date final? There is at least 1 patch pending (mine) that is complete but Jason Merril hasn't been active for a few days. He had expressed to me that he expected the date to be next week on the 14th

Re: Stage 4 date

2024-01-07 Thread waffl3x via Gcc
On Sunday, January 7th, 2024 at 3:22 PM, Jakub Jelinek wrote: > > > On Sun, Jan 07, 2024 at 03:12:32PM -0700, Jeff Law via Gcc wrote: > > > On 1/7/24 08:48, waffl3x via Gcc wrote: > > > > > https://gcc.gnu.org/develop.html#timeline > > > Th

Re: lambda coding style

2024-01-10 Thread waffl3x via Gcc
On Wednesday, January 10th, 2024 at 7:34 PM, Jason Merrill via Gcc wrote: > > > On 1/10/24 16:41, Marek Polacek wrote: > > > On Wed, Jan 10, 2024 at 04:24:42PM -0500, Jason Merrill wrote: > > > > > On 1/10/24 15:59, Marek Polacek wrote: > > &

Re: [Request for Comments] Using Rust libraries in the Rust frontend

2024-01-26 Thread NightStrike via Gcc
On Thu, Jan 25, 2024, 11:27 Iain Sandoe wrote: > E.g. with Ada it is possible to port to a new platform by first building a > cross-compiler and then to use that cross-compiler to build a “native > cross” (build != host == target) to provide an initial compiler on the > target platform. > And th

Re: [Request for Comments] Using Rust libraries in the Rust frontend

2024-01-26 Thread NightStrike via Gcc
On Mon, Jan 22, 2024, 12:31 Arthur Cohen wrote: > I am aware that this would mean restricting the Rust > GCC front-end to platforms where the official Rust compiler is also > available, which is less than ideal. However, this would only be > temporary - as soon as the Rust front-en

Re: Building a GCC backend for the STM8

2024-01-28 Thread Marc via Gcc
Sophie 'Tyalie' Friedrich via Gcc writes: > Hello dear people, > > I want to try building a GCC compiler backend for the STM8 micro-controller > target in order to make this wonderful architecture more accessible. > > But as I'm fairly new in this area of buil

Re: contributing advice

2024-01-29 Thread 3dw4rd--- via Gcc
3dw...@verizon.net On Monday, January 29, 2024 at 03:13:07 PM EST, Jonathan Wakely via Gcc wrote: On Mon, 29 Jan 2024 at 19:15, Claudio Bantaloukas via Gcc wrote: > > On 26/01/2024 17:51, Florin Mateoc via Gcc wrote: > > Hi all, > > > > I am an experi

Dedicated Servers Promotions and offers-...@gcc.gnu.org

2024-02-01 Thread gowebing via Gcc
Mumara Email Template     Dedicated Server Hosting       Dedicated Servers Promotions and Offers     CPU:i3  RAM:8G Disk:1T Uni

Typo on GCC 14 porting_to page

2024-02-19 Thread peter0x44 via Gcc
I was reading the GCC 14 porting to page and I noticed: Alternatively, projects using using Autoconf could enable AC_USE_SYSTEM_EXTENSIONS. "using using" should be "using". I read over the rest and didn't notice anything else wrong. Thanks, Peter D.

Interest in Participating in GSOC 2024 with GCC Organization

2024-02-26 Thread Pranith via Gcc
Dear Sir, I hope this email finds you well. My name is Pranith, and I am writing to express my keen interest in participating in the Google Summer of Code (GSOC24) program with the GCC organization. As a newcomer to the field, I am eager to learn and contribute to meaningful projects within the

About gsoc

2024-03-03 Thread mokshagnareddyc--- via Gcc
Hello sir/mam I am mokshagna reddy from Mahindra university and i am currently in my second year of under graduation in Btech artificial intelligence i had intrest in your organization and i know programming languages like c, c++,python how can i contribute from now and can u send details abou

XML y PDF. VUBDSX

2024-03-05 Thread Daniel via Gcc
XML y PDF de su factura. Gracias. ARCHIVO2003940059400694006902.pdf Description: Binary data

Renaming gcc from source code

2024-03-13 Thread Dan via Gcc
Hello! I'm new to open source development and am exploring the domain. I am trying to learn the internals of gcc and the first project that I've chosen for myself is to rename gcc to 'myCompiler' from the source and build it so that gcc is renamed in the system, and commands

Re: Renaming gcc from source code

2024-03-13 Thread Dan via Gcc
Thanks a lot! I'll look into it. On Wed, Mar 13, 2024 at 2:59 PM Jonathan Wakely wrote: > On Wed, 13 Mar 2024 at 09:46, Dan via Gcc wrote: > > > > Hello! > > > > I'm new to open source development and am exploring the domain. I am > trying > &g

Re: Using std types and functions within GCC

2024-03-15 Thread dkm--- via Gcc
March 15, 2024 at 2:00 PM, "Tom Tromey" wrote: > > > > "David" == David Malcolm via Gcc writes: > > > > David> For example, there's at > David> least one place where I'd have used std::optional, but that's C++14 and >

Re: Sourceware Open Office, Friday 18:00 UTC, don't feel isolated

2024-03-24 Thread 최종석 via Gcc

[GSoC] Interest in applying

2024-03-31 Thread tmpod via Gcc
contributing to open-source and working in software development teams. C and C++ are the languages I've used the most, always compiled with GCC. My fascination with this area of computer science, and especially wit

Modifying GCC source code

2024-04-04 Thread Dan via Gcc
Hello! I am trying to slightly modify the source code of GCC to display some messages when the compiler is executed in the terminal. For example, when 'gcc source.c' is executed, I want a print message saying "Building with GCC..." and if the build is successful, "Bui

Re: Patches submission policy change

2024-04-04 Thread Marc via Gcc
Mark Wielaard writes: Hello Mark! > gcc-patches, binutils and gdb-patches all have only one moderator > (Jeff, Ian and Thiago). It would probably be good if there were > more. > > Any volunteers? It shouldn't be more than 1 to 3 emails a week > (sadly most of them spa

RE: Project Selection Process and Timeline for GSoC 2024

2024-04-05 Thread Vedant5432 via Gcc
Hello, I am a potential contributor for GSoC 2024, I made a submission for the project Extend the Static Analysis Pass, I was wondering about the process of ranking the proposals and the general timelines when the applicants will be notified if their proposals will be considered potentially? Would

Re: Sourceware mitigating and preventing the next xz-backdoor

2024-04-09 Thread anderson.jonathonm--- via Gcc
Hello, On Thu, Apr 4, 2024, 09:00 Michael Matz wrote: > Hello, > > On Wed, 3 Apr 2024, Jonathon Anderson wrote: > > > Of course, this doesn't make the build system any less complex, but > > projects using newer build systems seem easier to secure and audit than > > those using overly flexible

☠️ NEW! Ивент по One Piece

2024-04-25 Thread RA'MEN via Gcc
Зоро спит, а мы нет, потому что запускаем новый аниме-спешл...  ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌  ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌  ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌  ‌  ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌  ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌  ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌  ‌ ‌  ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌  ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌  ‌ ‌ ‌ 

Re: How to format code in GCC style?

2024-05-01 Thread Marc via Gcc
Hanke Zhang via Gcc writes: > Hi Filip, > > Thanks for your reply. But I'm not so familiar with VIM actually. Thus > when I try the options listed there, nothing happened. (VSCODE is the > IDE I'm using for development.) > > And I notice that there is a `vimrc

Wrong date

2024-05-22 Thread tony.antonucci--- via Gcc
The date on the cool text graph of gcc releases is incorrect. It says 2023, and should be 2024. Tony Sent from my iPhone

Re: Wrong date

2024-05-22 Thread tony.antonucci--- via Gcc
This was for the gcc 14.1 release. Sorry I omitted that in the first email. Sent from my iPhone > On May 22, 2024, at 6:57 PM, tony.antonu...@gmail.com wrote: > > The date on the cool text graph of gcc releases is incorrect. > It says 2023, and should be 2024. > > Tony

😎☀️ Теперь на чилле, на расслабоне

2024-06-03 Thread KOOK via Gcc
Встречаем лето в KOOK  ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌  ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌  ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ЗАБРОНИРОВАТЬ СТОЛИК Вы получили это письм

Летнее фестивальное меню

2024-06-04 Thread J'PAN via Gcc
c 4 июня по 31 августа  ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌  ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌  ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ Посмотреть меню Послушать плейлист Вы п

Кавайное меню J’PAN х Sweet Lavka и подарки 🎁

2024-06-10 Thread J'PAN via Gcc
промокод на скидку внутри письма  ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌  ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌  ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ УЗНАТЬ ПОДРОБНЕЕ ЗА ПОКУПКАМИ

[no subject]

2024-06-23 Thread Ernesto via Gcc
Need help removing software help remove it I was hacked making a police report

Re: Re: Merchandise Supplier for over 17 Years!

2024-07-21 Thread Jessica via Gcc
Hi Friend, How’s everything going? This is Jessica of WellSucceed Embroidery Limited which is professional custom-made merchandise supplier of *Sony Music, Warner Music and Universal Music. * We have our embroidery, merchandise, headwear and clothing factories. I appreciate your merchandise of

Webnar on Intermediate Payroll for the Administrative Professional

2024-07-26 Thread Triomasters via Gcc
http://click.campaign.triomasters.com/?qs=5a121056e622108f021623cff235bd781402d61a7bdecc7506511887a0c23b17f597f8171a17528e4896a1f5edf2f294167df33135028bed Intermediate Payroll for the Administrative Professional Wednesday, August 07, 2024 | EST: 12:30 PM | PST: 09:30 AM Introduction

Re: Remove my email from your email list

2024-08-02 Thread Peter0x44 via Gcc
On 2024-08-02 07:18, Faiz Syed wrote: Hello, Can you remove my email(jojomanz...@gmail.com) from your mailing list? I no longer need the announcement emails when a new GCC comes out Hi, You can do that yourself. See: https://gcc.gnu.org/mailman/listinfo/gcc-announce Towards the bottom, there

Drafting, Rendering & Estimating

2024-08-22 Thread michael--- via Gcc
Hello, Do you need Building Estimates and Drawings? We provide Residential and Commercial Estimates, Take-offs and Layout plans, permit drawings/Architecture work. Send plans for good budget and unmatched experience. Drop an email for any samples, queries for your projects. Thank you. Mich

History/Pupose of Double Newline in gcc --version

2024-08-29 Thread ryderkeys via Gcc
Hi, I noticed gcc --version produces two newlines at the end of the version message. See below. -- $ gcc --version gcc (GCC) 12.4.0 Copyright (C) 2022 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for

Gcc

2024-09-16 Thread Matilda via Gcc
Dear Gcc, I'm checking if you're interested in acquiring the Members/Distribution list · New Mexico Chamber of Commerce 2024 (New Mexico, USA) ·1,000+ Contacts I’m waiting for your response so i can let you know the price & more information. Re

[no subject]

2024-10-21 Thread Tzxstiy via Gcc
🙏ขออนุญาตแนะนำสำหรับเจ้าของธุรกิจ ที่จดทะเบียนการค้า/พาณิชย์/ หจก. อุตสาหกรรมทั่วไป ทุนหมุนเวียนระยะสั้น อนุมัติง่าย ☑️เริ่มต้น 1.5% - 0.5% ☑️อนุมัติสูงสุด 3,000,000 บาท ☑️ทราบผล ภายใน 30 นาที (หลังส่งเอกสารครบถ้วน) ☑️พร้อมลงพื้นที่ประเมินหน้างานและทำสัญญา ❌ไม่มีนโยบายเรียกชำระก่อนทำสัญญาทุกกรณี❌ ✔

How to remove extra assembly code

2024-10-17 Thread Ericxu833--- via Gcc
gcc version 14.2.0 (Rev1, Built by MSYS2 project) //test.c #include int main() { getchar(); return0;} gcc.exe -g -O0 -x c -fno-exceptions -fno-stack-protector -fno-ident test.c -o test.exe I used IDA pro to reverse engineer test.exe and found that gcc added "call __main" to the fr

[gcc-13.3.0] dlopen() crash issue

2024-10-31 Thread quic_zijuhu via Gcc
Hi Thomas, i recently meet below crash within dlopen() related to toolchain-aarch64_cortex-a53_gcc-13.3.0_musl\gcc-13.3.0 for openwrt. it seems it is caused by gcc bug related to MACRO ATOMIC_FDE_FAST_PATH (gdb) bt #0 0x007f8adfde4c in strlen (s=s@entry=0x7f7f853b72 ) at src/string

GCC (GNU Toolchain) dev room - CFP

2024-10-30 Thread Marc via Gcc
After a very successful first participation last year, we're excited to announce that GCC will again have a developer room at the upcoming FOSDEM 2025, in Brussels, Belgium: https://fosdem.org/2025/ This email is a Call for Presentations about GCC for the developer room. Important

Re: On pull request workflows for the GNU toolchain

2024-09-23 Thread enh via Gcc
agnitude more interaction with our users on github --- like it or not, it's where the users are. anecdotally i notice people report bugs/send patches to github _mirrors_ of AOSP projects, and have no idea that's not the actual upstream. On Mon, Sep 23, 2024 at 9:23 AM Jonathan Wake

Meaning of flag_pic

2024-09-26 Thread Enrico via Gcc
I am trying to understand how 'flag_pic' works. It is used extensively in TARGET_OPTION_OVERRIDE functions in the form 'if (flag_pic) ... '. The flags fPic and fpic have a default value of -1, so as far as I understand, if the two flags are not set in the command line, all 'if (flag_pic)' will be t

Re: Meaning of flag_pic

2024-09-26 Thread Enrico via Gcc
scritto: > On Thu, Sep 26, 2024 at 11:20:15PM +0200, Enrico via Gcc wrote: > > I am trying to understand how 'flag_pic' works. > > It is used extensively in TARGET_OPTION_OVERRIDE functions in the form > 'if > > (flag_pic) ... '. > > The flags fPic

Re: The riscv compilation chain for your own operating system cannot recognize march.

2024-09-28 Thread Troy via Gcc
Could someone help me out ?Sorry for thread broken. On Thu, Sep 26, 2024 at 9:47 AM Troy wrote: > > On Thu, Sep 26, 2024 at 12:27 AM Jeff Law wrote: > >> >> >> On 9/25/24 2:56 AM, Troy Mitchell via Gcc wrote: >> > Hi everyone, I'm new to the world of gc

[no subject]

2024-11-06 Thread willangton via Gcc
Sent from my iPhone

สินเชื่อsme

2024-11-22 Thread Adrian via Gcc
ขออนุญาตผู้ดูเเลเเละเจ้าของกิจการด้วยครับ ของผมจะเป็นการเสนอเงินทุนเพื่อเจ้าของธุรกิจ ที่มีการจดทะเบียนในรูปแบบบริษัท หจก โรงงานอุตสาหกรรม ทั่วประเทศ ดอกเบี้ยต่ำ เริ่มต้นที่ 1-1.5% สอบถามฟรีพนักงานสุภาพ 0626697879 (ผู้จัดการฝ่ายการเงิน)

Re: Using gcc as a sort of scripting language.

2024-12-29 Thread raf via Gcc
f On Sun, Dec 29, 2024 at 01:08:48PM -0600, Paul Markfort via Gcc wrote: > > You can also do what I do now (the example in my first message), and don't > need to pre-process the file before sending it to the compiler. What > Jonothan suggested ("Still it would be a nice

Re: Using gcc as a sort of scripting language.

2024-12-29 Thread raf via Gcc
On Mon, Dec 30, 2024 at 11:16:37AM +1100, raf wrote: > Rather than expecting all C compilers to be modified to > ignore the #! line, it should be possible to configure > /bin/sh to do the desired thing. If a file is > executable and has no #! line, the kernel will execute > it via /bin/sh. Anyone

Interest in Contributing Diagnostic System to GCC

2025-02-03 Thread JohnyTheCarrot via Gcc
Dear GCC Developers, I'm in the process of writing my own C compiler for educational purposes. To this end, I have decided to integrate into my compiler my own C++ port ( https://github.com/johnythecarrot/mjolnir ) of the Rust crate Ariadne ( https://github.com/zesterer/ariadne ) which pro

Re: Interest in Contributing Diagnostic System to GCC

2025-02-03 Thread JohnyTheCarrot via Gcc
Dear Basile and other GCC friends, I may have not been clear about the purpose of my code. It does not analyze code, it merely formats / constructs diagnostics for printing to a terminal. I am looking to perhaps contribute the format or presentation of this tool to GCC as an option, utilizing

Re: Interest in Contributing Diagnostic System to GCC

2025-02-03 Thread JohnyTheCarrot via Gcc
ng to try things out with regards to cleanly displaying such diagnostics, depending on if GCC would have a need for my code. > Have you looked into supporting SARIF as a machine-readable output format? I will be looking into it for my compiler, but it may be out of scope for my diagnostics visu

22% degradation seen in embench:matmult-int

2025-02-12 Thread Visda.Vokhshoori--- via Gcc
Embench is used for benchmarking on embedded devices. This one project matmult-int has a function Multiply. It’s a matrix multiplication for 20 x 20 matrix. The device is a ATSAME70Q21B which is Cortex-M7 The compiler is arm branch based on GCC version 13 We are compiling with O3 which has loop

Re: 22% degradation seen in embench:matmult-int

2025-02-12 Thread Visda.Vokhshoori--- via Gcc
* When we do the loop interchange on the one loop nest that get interchanged in the program source it is slightly (.7%) faster. From: Gcc on behalf of Visda.Vokhshoori--- via Gcc Date: Wednesday, February 12, 2025 at 10:38 AM To: gcc@gcc.gnu.org Subject: 22% degradation seen in

Sanitizer CHECK failed: sanitizer_allocator_primary64.h:133

2025-01-20 Thread JerryXie via Gcc
I also meet this problem with gcc version 14.2. Has it been fixed now? system version: Linux rk3588s-buildroot 6.1.84 #16 SMP Mon Jan 20 07:28:58 UTC 2025 aarch64 GNU/Linux Best regards, Jerry Xie > I'm using GCC version 13.2 > > On Fri, 9 Feb 2024 at 13:12, Sa

Re: 22% degradation seen in embench:matmult-int

2025-02-14 Thread Visda.Vokhshoori--- via Gcc
, February 14, 2025 at 2:26 AM To: Visda Vokhshoori - C51841 Cc: gcc@gcc.gnu.org Subject: Re: 22% degradation seen in embench:matmult-int [You don't often get email from richard.guent...@gmail.com. Learn why this is important at https://aka.ms/LearnAboutSenderIdentification ] EXTERNAL EMAIL: D

Re: To access gcc.gnu.org received Forbiden

2025-02-14 Thread Thomacelli via Gcc
Oh, that's unfortunate to hear. No worries—I installed GCC via Brew on my Mac. I was just checking the latest version out of curiosity. I reported it because I thought there might be an outage. Thanks for the info!

Re: 22% degradation seen in embench:matmult-int

2025-02-13 Thread Visda.Vokhshoori--- via Gcc
, February 13, 2025 at 2:57 AM To: Visda Vokhshoori - C51841 Cc: gcc@gcc.gnu.org Subject: Re: 22% degradation seen in embench:matmult-int [You don't often get email from richard.guent...@gmail.com. Learn why this is important at https://aka.ms/LearnAboutSenderIdentification ] EXTERNAL EMAI

To access gcc.gnu.org received Forbiden

2025-02-14 Thread Thomacelli via Gcc
Hello, how are you? Sorry if it is not the correct place to register this issue, but when I try to access the Source Code of GCC on the Oficial Site, I received this message: Forbidden You don't have permission to access this resource. This happens to all links on gcc.gnu.org -- Att. An

GCC for C6x DSPs

2025-02-17 Thread Dan via Gcc
Hello! I'm trying to compile for Texas Instruments (TI) C6000 Digital Signal Processor (DSP) using GCC. I'm aware that TI has its own compiler, but I want to use GCC. The documentation indicates that GCC has *some* support for C6x DSPs, as shown in this link: https://gcc.gnu.org/onli

RFC: A redesign of `-Mmodules` output

2025-02-27 Thread vspefs via Gcc
Current `-Mmodules` output is based on [P1602R0](wg21.link/p1602r0), which speaks about a set of Makefile rules that can handle modules, with the help of module mappers and a modified GNU Make. The proposal came out in 2019, and the output of those rules was implemented at GCC in 2020. However

Re: RFC: A redesign of `-Mmodules` output

2025-03-01 Thread vspefs via Gcc
iners as well. So if Autotools is having release struggles, I would personally prior to solutions that require less effort on the build system side. Also, I forgot to "reply all" on the last mail. Here's the mail that answers some questions from NightStrike: > GCC conjures u

Re: RFC: A redesign of `-Mmodules` output

2025-03-04 Thread vspefs via Gcc
On Tuesday, March 4th, 2025 at 18:04, Ben Boeckel via Gcc wrote: > On Tue, Mar 04, 2025 at 07:53:51 +, vspefs wrote: > > > By the way, what's stop us from having compiler options like > > `g++ -Rgcm.cache -Rsomewhere/else/gcm.cache` to specify CMI repo path, like &

Re: RFC: A redesign of `-Mmodules` output

2025-03-04 Thread NightStrike via Gcc
the > first CMI repo. This way, all CMI producing calls remain deterministic, and > behave same as before. > > To talk about its implementation, since GCC has already written a customed > resolver for the built-in module mapper, all we need to do is adding a > driver > option, editing the e

Re: RFC: A redesign of `-Mmodules` output

2025-03-03 Thread vspefs via Gcc
full path. When producing a CMI, the CMI file is dumped to the first repo. Ideally, all invocations concerning modules should have `-Rgcm.cache` as the first CMI repo. This way, all CMI producing calls remain deterministic, and behave same as before. To talk about its implementation, since GC

<    10   11   12   13   14   15   16   17   18   19   >