diff options
| author | Martin Jansa <martin.jansa@gmail.com> | 2025-04-22 19:57:39 +0200 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2025-04-23 19:35:01 -0700 |
| commit | c6864667a61dee3ad2417531ae6dca7243de6a1b (patch) | |
| tree | ea8a1d4bc291438cb25f83cd6f62eb22cce2c83c /meta-oe/recipes-devtools/yasm/yasm_git.bb | |
| parent | 08cf358dc331ff546aeb77da6fc115cb7eea0504 (diff) | |
| download | meta-openembedded-c6864667a61dee3ad2417531ae6dca7243de6a1b.tar.gz | |
yasm: fix build with gcc-15
* fixes:
libyasm/bitvect.h:86:32: error: cannot use keyword 'false' as enumeration constant
86 | typedef enum boolean { false = FALSE, true = TRUE } boolean;
| ^~~~~
libyasm/bitvect.h:86:32: note: 'false' is a keyword with '-std=c23' onwards
as suggested in:
https://github.com/yasm/yasm/issues/283#issuecomment-2661108816
Signed-off-by: Martin Jansa <martin.jansa@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-devtools/yasm/yasm_git.bb')
| -rw-r--r-- | meta-oe/recipes-devtools/yasm/yasm_git.bb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta-oe/recipes-devtools/yasm/yasm_git.bb b/meta-oe/recipes-devtools/yasm/yasm_git.bb index e2c1a3c02b..de7eb45c1d 100644 --- a/meta-oe/recipes-devtools/yasm/yasm_git.bb +++ b/meta-oe/recipes-devtools/yasm/yasm_git.bb | |||
| @@ -13,6 +13,7 @@ SRCREV = "121ab150b3577b666c79a79f4a511798d7ad2432" | |||
| 13 | SRC_URI = "git://github.com/yasm/yasm.git;branch=master;protocol=https \ | 13 | SRC_URI = "git://github.com/yasm/yasm.git;branch=master;protocol=https \ |
| 14 | file://0001-yasm-Set-build-date-to-SOURCE_DATE_EPOCH.patch \ | 14 | file://0001-yasm-Set-build-date-to-SOURCE_DATE_EPOCH.patch \ |
| 15 | file://0002-yasm-Use-BUILD_DATE-for-reproducibility.patch \ | 15 | file://0002-yasm-Use-BUILD_DATE-for-reproducibility.patch \ |
| 16 | file://0001-bitvect-fix-build-with-gcc-15.patch \ | ||
| 16 | " | 17 | " |
| 17 | 18 | ||
| 18 | S = "${WORKDIR}/git" | 19 | S = "${WORKDIR}/git" |
