* [Buildroot] [PATCH 1/1] package/rwmem: bumb to latest version
@ 2023-10-05 14:42 Tomi Valkeinen
2023-10-05 20:00 ` Yann E. MORIN
0 siblings, 1 reply; 2+ messages in thread
From: Tomi Valkeinen @ 2023-10-05 14:42 UTC (permalink / raw)
To: buildroot; +Cc: Tomi Valkeinen, Laurent Pinchart
Bumb rwmem to the latest version. The main reason to bumb is to get a
fix for a compilation issue present when compiling with gcc-13 (need to
include <cstdint>).
As the project has moved to C++20, we need to adjust the Config.in
accordingly.
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>
---
package/rwmem/Config.in | 6 +++---
package/rwmem/rwmem.hash | 2 +-
package/rwmem/rwmem.mk | 2 +-
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/package/rwmem/Config.in b/package/rwmem/Config.in
index cd9a7f78f1..690b034070 100644
--- a/package/rwmem/Config.in
+++ b/package/rwmem/Config.in
@@ -1,6 +1,6 @@
config BR2_PACKAGE_RWMEM
bool "rwmem"
- depends on BR2_TOOLCHAIN_GCC_AT_LEAST_5
+ depends on BR2_TOOLCHAIN_GCC_AT_LEAST_10 # C++20
depends on BR2_INSTALL_LIBSTDCPP
depends on BR2_USE_WCHAR # fmt
select BR2_PACKAGE_FMT
@@ -10,6 +10,6 @@ config BR2_PACKAGE_RWMEM
https://github.com/tomba/rwmem
-comment "rwmem needs a toolchain w/ C++, wchar, gcc >= 5"
+comment "rwmem needs a toolchain w/ C++, wchar, gcc >= 10"
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || \
- !BR2_TOOLCHAIN_GCC_AT_LEAST_5
+ !BR2_TOOLCHAIN_GCC_AT_LEAST_10
diff --git a/package/rwmem/rwmem.hash b/package/rwmem/rwmem.hash
index 9becbc5b21..da74002cb4 100644
--- a/package/rwmem/rwmem.hash
+++ b/package/rwmem/rwmem.hash
@@ -1,2 +1,2 @@
-sha256 55d28f029c0cd5c21d3e1c89371e2905d5217f571ef5389ed0fce163804d1c4a rwmem-c8291705c82bb0686be9adf6a427a2b72114719a.tar.gz
+sha256 e6cb76b77869aef9ec4a2c31d0d80af0182a5f9c9c3ae06225c8fb2f8266379f rwmem-c89bc9ad9a8f2359f358c510db57b7678eb156d1.tar.gz
sha256 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643 LICENSE
diff --git a/package/rwmem/rwmem.mk b/package/rwmem/rwmem.mk
index 24c4e92efc..d6ef05193b 100644
--- a/package/rwmem/rwmem.mk
+++ b/package/rwmem/rwmem.mk
@@ -4,7 +4,7 @@
#
################################################################################
-RWMEM_VERSION = c8291705c82bb0686be9adf6a427a2b72114719a
+RWMEM_VERSION = c89bc9ad9a8f2359f358c510db57b7678eb156d1
RWMEM_SITE = $(call github,tomba,rwmem,$(RWMEM_VERSION))
RWMEM_LICENSE = GPL-2.0
RWMEM_LICENSE_FILES = LICENSE
--
2.34.1
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [Buildroot] [PATCH 1/1] package/rwmem: bumb to latest version
2023-10-05 14:42 [Buildroot] [PATCH 1/1] package/rwmem: bumb to latest version Tomi Valkeinen
@ 2023-10-05 20:00 ` Yann E. MORIN
0 siblings, 0 replies; 2+ messages in thread
From: Yann E. MORIN @ 2023-10-05 20:00 UTC (permalink / raw)
To: Tomi Valkeinen; +Cc: Laurent Pinchart, buildroot
Tomi, All,
On 2023-10-05 17:42 +0300, Tomi Valkeinen spake thusly:
> Bumb rwmem to the latest version. The main reason to bumb is to get a
> fix for a compilation issue present when compiling with gcc-13 (need to
> include <cstdint>).
>
> As the project has moved to C++20, we need to adjust the Config.in
> accordingly.
>
> Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>
Applied to master, thanks.
Regards,
Yann E. MORIN.
> ---
> package/rwmem/Config.in | 6 +++---
> package/rwmem/rwmem.hash | 2 +-
> package/rwmem/rwmem.mk | 2 +-
> 3 files changed, 5 insertions(+), 5 deletions(-)
>
> diff --git a/package/rwmem/Config.in b/package/rwmem/Config.in
> index cd9a7f78f1..690b034070 100644
> --- a/package/rwmem/Config.in
> +++ b/package/rwmem/Config.in
> @@ -1,6 +1,6 @@
> config BR2_PACKAGE_RWMEM
> bool "rwmem"
> - depends on BR2_TOOLCHAIN_GCC_AT_LEAST_5
> + depends on BR2_TOOLCHAIN_GCC_AT_LEAST_10 # C++20
> depends on BR2_INSTALL_LIBSTDCPP
> depends on BR2_USE_WCHAR # fmt
> select BR2_PACKAGE_FMT
> @@ -10,6 +10,6 @@ config BR2_PACKAGE_RWMEM
>
> https://github.com/tomba/rwmem
>
> -comment "rwmem needs a toolchain w/ C++, wchar, gcc >= 5"
> +comment "rwmem needs a toolchain w/ C++, wchar, gcc >= 10"
> depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || \
> - !BR2_TOOLCHAIN_GCC_AT_LEAST_5
> + !BR2_TOOLCHAIN_GCC_AT_LEAST_10
> diff --git a/package/rwmem/rwmem.hash b/package/rwmem/rwmem.hash
> index 9becbc5b21..da74002cb4 100644
> --- a/package/rwmem/rwmem.hash
> +++ b/package/rwmem/rwmem.hash
> @@ -1,2 +1,2 @@
> -sha256 55d28f029c0cd5c21d3e1c89371e2905d5217f571ef5389ed0fce163804d1c4a rwmem-c8291705c82bb0686be9adf6a427a2b72114719a.tar.gz
> +sha256 e6cb76b77869aef9ec4a2c31d0d80af0182a5f9c9c3ae06225c8fb2f8266379f rwmem-c89bc9ad9a8f2359f358c510db57b7678eb156d1.tar.gz
> sha256 8177f97513213526df2cf6184d8ff986c675afb514d4e68a404010521b880643 LICENSE
> diff --git a/package/rwmem/rwmem.mk b/package/rwmem/rwmem.mk
> index 24c4e92efc..d6ef05193b 100644
> --- a/package/rwmem/rwmem.mk
> +++ b/package/rwmem/rwmem.mk
> @@ -4,7 +4,7 @@
> #
> ################################################################################
>
> -RWMEM_VERSION = c8291705c82bb0686be9adf6a427a2b72114719a
> +RWMEM_VERSION = c89bc9ad9a8f2359f358c510db57b7678eb156d1
> RWMEM_SITE = $(call github,tomba,rwmem,$(RWMEM_VERSION))
> RWMEM_LICENSE = GPL-2.0
> RWMEM_LICENSE_FILES = LICENSE
> --
> 2.34.1
>
> _______________________________________________
> buildroot mailing list
> buildroot@buildroot.org
> https://lists.buildroot.org/mailman/listinfo/buildroot
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 561 099 427 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2023-10-05 20:00 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-10-05 14:42 [Buildroot] [PATCH 1/1] package/rwmem: bumb to latest version Tomi Valkeinen
2023-10-05 20:00 ` Yann E. MORIN
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox