How can I run xg++ from its build location?

2023-08-25 Thread Michael Welsh Duggan via Gcc
I am attempting to debug an issue in gcc (PR 110827, if curious). In order to do this I have built a stage 1 compiler with debugging and without optimization as discussed here: https://gcc.gnu.org/wiki/DebuggingGCC#Building_a_Debuggable_Compiler I would like run the compiler from its build locat

Re: How can I run xg++ from its build location?

2023-08-26 Thread Michael Welsh Duggan via Gcc
David Edelsohn via Gcc writes: > n Fri, Aug 25, 2023 at 4:16 PM Michael Welsh Duggan via Gcc < > gcc@gcc.gnu.org> wrote: > >> I am attempting to debug an issue in gcc (PR 110827, if curious). In >> order to do this I have built a stage 1 compiler with debugging and

Re: [ C Frontend / Preprocessor ] Embed Preprocessor Parameter Order

2025-06-08 Thread Michael Welsh Duggan via Gcc
JeanHeyd Meneide via Gcc writes: [...] > While the following 2 invocation of `#embed` are identical and produce > exactly the same data: > > - > #embed clang::offset(1) limit(3) /* ONE */ > #embed limit(3) clang::offset(1) /* TWO */ > - > > some people questioned whether or not the di