Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: "Yann E. MORIN" <yann.morin.1998@free.fr>
To: Julien Olivain <ju.o@free.fr>
Cc: buildroot@buildroot.org
Subject: Re: [Buildroot] [PATCH 1/1] package/highway: bump to version 1.1.0
Date: Wed, 21 Feb 2024 19:03:27 +0100	[thread overview]
Message-ID: <ZdY67xA1fbowX6pm@landeda> (raw)
In-Reply-To: <20240219221458.831078-1-ju.o@free.fr>

Julien, All,

On 2024-02-19 23:14 +0100, Julien Olivain spake thusly:
> For release note, see [1].
> 
> This commit removes the package patch, as it is now included in this new
> release.
> 
> LICENSE-BSD3 hash changed, due to reformatting. See [2].
> 
> [1] https://github.com/google/highway/releases/tag/1.1.0
> [2] https://github.com/google/highway/commit/edc35d14c77cb24dc1163989c762d69694e0e955
> 
> Signed-off-by: Julien Olivain <ju.o@free.fr>

Applied to master, thanks.

Regards,
Yann E. MORIN.

> ---
>  ...1-add-required-RISC-V-flags-to-CMake.patch | 42 -------------------
>  package/highway/highway.hash                  |  4 +-
>  package/highway/highway.mk                    |  2 +-
>  3 files changed, 3 insertions(+), 45 deletions(-)
>  delete mode 100644 package/highway/0001-add-required-RISC-V-flags-to-CMake.patch
> 
> diff --git a/package/highway/0001-add-required-RISC-V-flags-to-CMake.patch b/package/highway/0001-add-required-RISC-V-flags-to-CMake.patch
> deleted file mode 100644
> index bfcbfb055cb..00000000000
> --- a/package/highway/0001-add-required-RISC-V-flags-to-CMake.patch
> +++ /dev/null
> @@ -1,42 +0,0 @@
> -From 5d58d233fbcec0c6a39df8186a877329147324b3 Mon Sep 17 00:00:00 2001
> -From: Mathieu Malaterre <mathieu.malaterre@gmail.com>
> -Date: Wed, 13 Sep 2023 08:37:54 +0200
> -Subject: [PATCH] Add an option to opt-out of HWY_RISCV
> -
> -Fixes #1740
> -
> -Upstream: https://github.com/google/highway/commit/5d58d233fbcec0c6a39df8186a877329147324b3
> -Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
> ----
> - CMakeLists.txt | 11 ++++++++---
> - 1 file changed, 8 insertions(+), 3 deletions(-)
> -
> -diff --git a/CMakeLists.txt b/CMakeLists.txt
> -index c2bf57b3f5..be639c945f 100644
> ---- a/CMakeLists.txt
> -+++ b/CMakeLists.txt
> -@@ -61,6 +61,9 @@ set(HWY_CMAKE_ARM7 OFF CACHE BOOL "Set copts for Armv7 with NEON (requires vfpv4
> - # skipped. For GCC 13.1+, you can also build with -fexcess-precision=standard.
> - set(HWY_CMAKE_SSE2 OFF CACHE BOOL "Set SSE2 as baseline for 32-bit x86?")
> - 
> -+# Currently this will compile the entire codebase with `-march=rv64gcv1p0`:
> -+set(HWY_CMAKE_RVV ON CACHE BOOL "Set copts for RISCV with RVV?")
> -+
> - # Unconditionally adding -Werror risks breaking the build when new warnings
> - # arise due to compiler/platform changes. Enable this in CI/tests.
> - set(HWY_WARNINGS_ARE_ERRORS OFF CACHE BOOL "Add -Werror flag?")
> -@@ -260,9 +263,11 @@ else()
> -     # gcc(13) and recent clang both support V, but not yet runtime dispatch, so
> -     # we add the gcv compiler flag, which then requires the CPU (now when using
> -     # either compiler) to support V.
> --    list(APPEND HWY_FLAGS -march=rv64gcv1p0)
> --    if(${CMAKE_CXX_COMPILER_ID} MATCHES "Clang")
> --      list(APPEND HWY_FLAGS -menable-experimental-extensions)
> -+    if(HWY_CMAKE_RVV)
> -+      list(APPEND HWY_FLAGS -march=rv64gcv1p0)
> -+      if(${CMAKE_CXX_COMPILER_ID} MATCHES "Clang")
> -+        list(APPEND HWY_FLAGS -menable-experimental-extensions)
> -+      endif()
> -     endif()
> -   endif()
> - 
> diff --git a/package/highway/highway.hash b/package/highway/highway.hash
> index 3cb497f20a7..270131134ec 100644
> --- a/package/highway/highway.hash
> +++ b/package/highway/highway.hash
> @@ -1,4 +1,4 @@
>  # Locally computed:
> -sha256  5434488108186c170a5e2fca5e3c9b6ef59a1caa4d520b008a9b8be6b8abe6c5  highway-1.0.7.tar.gz
> +sha256  354a8b4539b588e70b98ec70844273e3f2741302c4c377bcc4e81b3d1866f7c9  highway-1.1.0.tar.gz
>  sha256  43070e2d4e532684de521b885f385d0841030efa2b1a20bafb76133a5e1379c1  LICENSE
> -sha256  6dcc159f448e3aca73a15e355d0a6735ca3fd224abe637e0b7437dce2d24f765  LICENSE-BSD3
> +sha256  d25e82e26acd42ca3ccc9993622631163425b869b9e16284226d534cff6470f2  LICENSE-BSD3
> diff --git a/package/highway/highway.mk b/package/highway/highway.mk
> index b45fa8df74d..3eb0d7a4aa2 100644
> --- a/package/highway/highway.mk
> +++ b/package/highway/highway.mk
> @@ -4,7 +4,7 @@
>  #
>  ################################################################################
>  
> -HIGHWAY_VERSION = 1.0.7
> +HIGHWAY_VERSION = 1.1.0
>  HIGHWAY_SITE = $(call github,google,highway,$(HIGHWAY_VERSION))
>  HIGHWAY_LICENSE = Apache-2.0 or BSD-3-Clause
>  HIGHWAY_LICENSE_FILES = LICENSE LICENSE-BSD3
> -- 
> 2.43.2
> 
> _______________________________________________
> 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

      reply	other threads:[~2024-02-21 18:03 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-02-19 22:14 [Buildroot] [PATCH 1/1] package/highway: bump to version 1.1.0 Julien Olivain
2024-02-21 18:03 ` Yann E. MORIN [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=ZdY67xA1fbowX6pm@landeda \
    --to=yann.morin.1998@free.fr \
    --cc=buildroot@buildroot.org \
    --cc=ju.o@free.fr \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox