diff options
author | Khem Raj <raj.khem@gmail.com> | 2025-03-24 09:33:39 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-03-27 11:19:04 +0000 |
commit | 03f23119383e80c988e1cc9b5a0a8c8722137d58 (patch) | |
tree | 36136f6c3f3606976f1a7d9763a992514266a1f5 /meta/recipes-extended/gperf | |
parent | 26fe9d59486e911c5075ed07a56d3805f6412a15 (diff) | |
download | poky-03f23119383e80c988e1cc9b5a0a8c8722137d58.tar.gz |
gperf: Pin to C17 std
gperf needs to be ported to work with C23 standard
especially around getopt function signatures
(From OE-Core rev: 27c869a671632d4cfeb26585b23b37d3a06066be)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/gperf')
-rw-r--r-- | meta/recipes-extended/gperf/gperf_3.1.bb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/recipes-extended/gperf/gperf_3.1.bb b/meta/recipes-extended/gperf/gperf_3.1.bb index c57ade9fe3..9175bc13e6 100644 --- a/meta/recipes-extended/gperf/gperf_3.1.bb +++ b/meta/recipes-extended/gperf/gperf_3.1.bb | |||
@@ -18,4 +18,6 @@ inherit autotools | |||
18 | # it where to look explicitly (mirroring the behaviour of upstream's Makefile.devel). | 18 | # it where to look explicitly (mirroring the behaviour of upstream's Makefile.devel). |
19 | EXTRA_AUTORECONF += " -I ${S} --exclude=aclocal" | 19 | EXTRA_AUTORECONF += " -I ${S} --exclude=aclocal" |
20 | 20 | ||
21 | CFLAGS += "-std=gnu17" | ||
22 | |||
21 | BBCLASSEXTEND = "native nativesdk" | 23 | BBCLASSEXTEND = "native nativesdk" |