https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113056
Richard Biener changed:
What|Removed |Added
Target Milestone|--- |14.0
--
You are receiving this mail b
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113056
--- Comment #10 from Sam James ---
(In reply to Sam James from comment #8)
> for the pkg build (original report): no
> for the quick test I did earlier: yes because I was rushing, oops
/tmp/build $ ~/git/gcc/configure --prefix=/tmp/gcc
--enable
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113056
Thomas Schwinge changed:
What|Removed |Added
Assignee|unassigned at gcc dot gnu.org |tschwinge at gcc dot
gnu.org
Hi!
> --- a/libgrust/configure.ac
> +++ b/libgrust/configure.ac
> -# AM_ENABLE_MULTILIB(, ..)
> +AM_ENABLE_MULTILIB(, ..)
Such a change was applied eventually, and is necessary for target builds
-- but potentially harmful for host builds. OK to push the attached
"libgrust: 'AM_ENABLE_MULTILIB'
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=113056
Thomas Schwinge changed:
What|Removed |Added
Keywords||patch
--- Comment #12 from Thomas Sch
On Fri, 8 Sep 2023, Arthur Cohen wrote:
> + if (c < 0x80)
> + {
> +if (('A' <= c && c <= 'Z') || ('a' <= c && c <= 'z'))
> + return CPP_XID_START | CPP_XID_CONTINUE;
> +if (('0' <= c && c <= '9') || c == '_')
> + return CPP_XID_CONTINUE;
This may be an artifact of how the patch was ma