public inbox for git@vger.kernel.org 
 help / color / mirror / Atom feed
* Build failure with -std=gnu23 (GCC 15 default)
@ 2024-11-16 23:18 Sam James
  2024-11-17  1:31 ` [PATCH 0/2] C23 compatibility brian m. carlson
  0 siblings, 1 reply; 8+ messages in thread
From: Sam James @ 2024-11-16 23:18 UTC (permalink / raw)
  To: git

Hi,

Upcoming GCC 15 defaults to -std=gnu23. git-2.47.0 fails to build as
follows:
```
builtin/index-pack.c:97:8: error: expected ‘{’ before ‘thread_local’
   97 | struct thread_local {
      |        ^~~~~~~~~~~~
builtin/index-pack.c:120:15: error: expected ‘{’ before ‘thread_local’
  120 | static struct thread_local nothread_data;
      |               ^~~~~~~~~~~~
builtin/index-pack.c:151:15: error: expected ‘{’ before ‘thread_local’
  151 | static struct thread_local *thread_data;
      |               ^~~~~~~~~~~~
```

There may be more issues, but at the very least thread_local became a
proper keyword in C23, so that will need renaming.

It should be possible to reproduce these with older GCC (and Clang) with
-std=gnu23 or -std=c23 set manually.

thanks,
sam

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2024-11-18 22:11 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-16 23:18 Build failure with -std=gnu23 (GCC 15 default) Sam James
2024-11-17  1:31 ` [PATCH 0/2] C23 compatibility brian m. carlson
2024-11-17  1:31   ` [PATCH 1/2] index-pack: rename struct thread_local brian m. carlson
2024-11-17  1:31   ` [PATCH 2/2] reflog: rename unreachable brian m. carlson
2024-11-17  2:43   ` [PATCH 0/2] C23 compatibility Sam James
2024-11-18  7:45   ` Patrick Steinhardt
2024-11-18  9:58     ` Jeff King
2024-11-18 22:11     ` brian m. carlson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox