Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/cmake: add support for riscv architecture
@ 2023-04-18 19:19 Sergey Matyukevich
  2023-05-07 13:22 ` Yann E. MORIN
  2023-06-05 20:16 ` Peter Korsgaard
  0 siblings, 2 replies; 3+ messages in thread
From: Sergey Matyukevich @ 2023-04-18 19:19 UTC (permalink / raw)
  To: buildroot; +Cc: Sergey Matyukevich, Thomas Petazzoni

Package binaries can be successfully built for and then executed on
RISC-V platforms including RV32 and RV64 variants. Tested in QEMU.

Signed-off-by: Sergey Matyukevich <geomatsi@gmail.com>
---
 package/cmake/Config.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/cmake/Config.in b/package/cmake/Config.in
index 3c47fdcb49..4ef5612b57 100644
--- a/package/cmake/Config.in
+++ b/package/cmake/Config.in
@@ -6,7 +6,7 @@ config BR2_PACKAGE_CMAKE_ARCH_SUPPORTS
 		BR2_mipsel    || BR2_mips64el    || BR2_powerpc  || \
 		BR2_powerpc64 || BR2_powerpc64le || BR2_sparc    || \
 		BR2_i386      || BR2_x86_64      || BR2_xtensa   || \
-		BR2_s390x
+		BR2_s390x     || BR2_riscv
 
 config BR2_PACKAGE_CMAKE
 	bool
-- 
2.40.0

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

* Re: [Buildroot] [PATCH 1/1] package/cmake: add support for riscv architecture
  2023-04-18 19:19 [Buildroot] [PATCH 1/1] package/cmake: add support for riscv architecture Sergey Matyukevich
@ 2023-05-07 13:22 ` Yann E. MORIN
  2023-06-05 20:16 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Yann E. MORIN @ 2023-05-07 13:22 UTC (permalink / raw)
  To: Sergey Matyukevich; +Cc: Thomas Petazzoni, buildroot

Sergey, All,

On 2023-04-18 22:19 +0300, Sergey Matyukevich spake thusly:
> Package binaries can be successfully built for and then executed on
> RISC-V platforms including RV32 and RV64 variants. Tested in QEMU.

I was wondering why we needed to add something to cmake for riscv
support, since we've been building a lot of riscv for quite some while
now, so this was a bit confusing...

But it turns out that this is just about ctest, the only thing from
cmake that we build for the target.

I've very slightly tweaked the commit title to reflect that.

Applied to master, thanks.

Regards,
Yann E. MORIN.

> Signed-off-by: Sergey Matyukevich <geomatsi@gmail.com>
> ---
>  package/cmake/Config.in | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/package/cmake/Config.in b/package/cmake/Config.in
> index 3c47fdcb49..4ef5612b57 100644
> --- a/package/cmake/Config.in
> +++ b/package/cmake/Config.in
> @@ -6,7 +6,7 @@ config BR2_PACKAGE_CMAKE_ARCH_SUPPORTS
>  		BR2_mipsel    || BR2_mips64el    || BR2_powerpc  || \
>  		BR2_powerpc64 || BR2_powerpc64le || BR2_sparc    || \
>  		BR2_i386      || BR2_x86_64      || BR2_xtensa   || \
> -		BR2_s390x
> +		BR2_s390x     || BR2_riscv
>  
>  config BR2_PACKAGE_CMAKE
>  	bool
> -- 
> 2.40.0
> 
> _______________________________________________
> 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] 3+ messages in thread

* Re: [Buildroot] [PATCH 1/1] package/cmake: add support for riscv architecture
  2023-04-18 19:19 [Buildroot] [PATCH 1/1] package/cmake: add support for riscv architecture Sergey Matyukevich
  2023-05-07 13:22 ` Yann E. MORIN
@ 2023-06-05 20:16 ` Peter Korsgaard
  1 sibling, 0 replies; 3+ messages in thread
From: Peter Korsgaard @ 2023-06-05 20:16 UTC (permalink / raw)
  To: Sergey Matyukevich; +Cc: Thomas Petazzoni, buildroot

>>>>> "Sergey" == Sergey Matyukevich <geomatsi@gmail.com> writes:

 > Package binaries can be successfully built for and then executed on
 > RISC-V platforms including RV32 and RV64 variants. Tested in QEMU.

 > Signed-off-by: Sergey Matyukevich <geomatsi@gmail.com>

Committed to 2023.02.x, thanks.

-- 
Bye, Peter Korsgaard
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

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

end of thread, other threads:[~2023-06-05 20:16 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-04-18 19:19 [Buildroot] [PATCH 1/1] package/cmake: add support for riscv architecture Sergey Matyukevich
2023-05-07 13:22 ` Yann E. MORIN
2023-06-05 20:16 ` Peter Korsgaard

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