diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2025-01-07 11:15:25 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2025-01-07 11:15:25 -0500 |
commit | c6d6720c3026efb74092c021a06f8f2c6d36fb67 (patch) | |
tree | e57d63d36eb0629d4d5fcc092855a6a582a93d1d /build | |
parent | 44dc45316dff757eafbcd1e09f4c52a285ff9738 (diff) | |
download | bfs-c6d6720c3026efb74092c021a06f8f2c6d36fb67.tar.xz |
build: Check for compound literal storage-class support
This lets us use them on GCC >= 13, even before C23.
Diffstat (limited to 'build')
-rw-r--r-- | build/has/compound-literal-storage.c | 6 | ||||
-rw-r--r-- | build/header.mk | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/build/has/compound-literal-storage.c b/build/has/compound-literal-storage.c new file mode 100644 index 0000000..e2281e1 --- /dev/null +++ b/build/has/compound-literal-storage.c @@ -0,0 +1,6 @@ +// Copyright © Tavian Barnes <tavianator@tavianator.com> +// SPDX-License-Identifier: 0BSD + +int main(void) { + return (static int){0}; +} diff --git a/build/header.mk b/build/header.mk index 8b697d6..919a2a2 100644 --- a/build/header.mk +++ b/build/header.mk @@ -19,6 +19,7 @@ HEADERS := \ gen/has/acl-is-trivial-np.h \ gen/has/acl-trivial.h \ gen/has/builtin-riscv-pause.h \ + gen/has/compound-literal-storage.h \ gen/has/confstr.h \ gen/has/extattr-get-file.h \ gen/has/extattr-get-link.h \ |