unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#67922] [PATCH 0/2] google highway 1.0.7
@ 2023-12-20  7:48 Efraim Flashner
  2023-12-20  7:50 ` [bug#67922] [PATCH 1/2] gnu: google-highway: Build shared libraries Efraim Flashner
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Efraim Flashner @ 2023-12-20  7:48 UTC (permalink / raw)
  To: 67922; +Cc: Efraim Flashner

I wasn't able to get google-highway building on i686-linux but I
figured we could update it to 1.0.7 and switch to shared libraries.

Efraim Flashner (2):
  gnu: google-highway: Build shared libraries.
  gnu: google-highway: Update to 1.0.7.

 gnu/packages/cpp.scm | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)


base-commit: a512bbd23a2e129cf3d8e71255d504ce8bac77d3
-- 
Efraim Flashner   <efraim@flashner.co.il>   רנשלפ םירפא
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted





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

* [bug#67922] [PATCH 1/2] gnu: google-highway: Build shared libraries.
  2023-12-20  7:48 [bug#67922] [PATCH 0/2] google highway 1.0.7 Efraim Flashner
@ 2023-12-20  7:50 ` Efraim Flashner
  2023-12-20  7:50 ` [bug#67922] [PATCH 2/2] gnu: google-highway: Update to 1.0.7 Efraim Flashner
  2023-12-25 16:36 ` [bug#67922] [PATCH 0/2] google highway 1.0.7 Mathieu Othacehe
  2 siblings, 0 replies; 5+ messages in thread
From: Efraim Flashner @ 2023-12-20  7:50 UTC (permalink / raw)
  To: 67922; +Cc: Efraim Flashner

* gnu/packages/cpp.scm (google-highway)[arguments]: Add configure-flag
to build shared libraries.

Change-Id: Ic222dd454290742c7c964a1a5a5b7d8d7533c3e1
---
 gnu/packages/cpp.scm | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm
index 0d5be7d171..83581acc2f 100644
--- a/gnu/packages/cpp.scm
+++ b/gnu/packages/cpp.scm
@@ -496,7 +496,8 @@ (define-public google-highway
         (base32 "01ig4iqicm57nycl9q8mx1b22gvl4wj5j1vfp1jczhmrga4bca8v"))))
     (build-system cmake-build-system)
     (arguments
-     `(#:configure-flags (list "-DHWY_SYSTEM_GTEST=on")))
+     `(#:configure-flags (list "-DHWY_SYSTEM_GTEST=on"
+                               "-DBUILD_SHARED_LIBS=ON")))
     (native-inputs
      (list googletest))
     (home-page "https://github.com/google/highway")
-- 
Efraim Flashner   <efraim@flashner.co.il>   רנשלפ םירפא
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted





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

* [bug#67922] [PATCH 2/2] gnu: google-highway: Update to 1.0.7.
  2023-12-20  7:48 [bug#67922] [PATCH 0/2] google highway 1.0.7 Efraim Flashner
  2023-12-20  7:50 ` [bug#67922] [PATCH 1/2] gnu: google-highway: Build shared libraries Efraim Flashner
@ 2023-12-20  7:50 ` Efraim Flashner
  2023-12-25 16:36 ` [bug#67922] [PATCH 0/2] google highway 1.0.7 Mathieu Othacehe
  2 siblings, 0 replies; 5+ messages in thread
From: Efraim Flashner @ 2023-12-20  7:50 UTC (permalink / raw)
  To: 67922; +Cc: Efraim Flashner

* gnu/packages/cpp.scm (google-highway): Update to 1.0.7.

Change-Id: I8374135da8343910156709c255f144dab1554cc0
---
 gnu/packages/cpp.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm
index 83581acc2f..0f2c6e0b85 100644
--- a/gnu/packages/cpp.scm
+++ b/gnu/packages/cpp.scm
@@ -484,7 +484,7 @@ (define-public xsimd
 (define-public google-highway
   (package
     (name "google-highway")
-    (version "1.0.5")
+    (version "1.0.7")
     (source
      (origin
        (method git-fetch)
@@ -493,7 +493,7 @@ (define-public google-highway
              (commit version)))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "01ig4iqicm57nycl9q8mx1b22gvl4wj5j1vfp1jczhmrga4bca8v"))))
+        (base32 "0cx38hnislqyd4vd47mlpgjpr1zmpf1fms2bj6nb00fjv53q1sb7"))))
     (build-system cmake-build-system)
     (arguments
      `(#:configure-flags (list "-DHWY_SYSTEM_GTEST=on"
-- 
Efraim Flashner   <efraim@flashner.co.il>   רנשלפ םירפא
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted





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

* [bug#67922] [PATCH 0/2] google highway 1.0.7
  2023-12-20  7:48 [bug#67922] [PATCH 0/2] google highway 1.0.7 Efraim Flashner
  2023-12-20  7:50 ` [bug#67922] [PATCH 1/2] gnu: google-highway: Build shared libraries Efraim Flashner
  2023-12-20  7:50 ` [bug#67922] [PATCH 2/2] gnu: google-highway: Update to 1.0.7 Efraim Flashner
@ 2023-12-25 16:36 ` Mathieu Othacehe
  2023-12-27 13:41   ` bug#67922: " Efraim Flashner
  2 siblings, 1 reply; 5+ messages in thread
From: Mathieu Othacehe @ 2023-12-25 16:36 UTC (permalink / raw)
  To: Efraim Flashner; +Cc: 67922


> I wasn't able to get google-highway building on i686-linux but I
> figured we could update it to 1.0.7 and switch to shared libraries.

Seems fair, I think you can go ahead,

Thanks,

Mathieu




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

* bug#67922: [PATCH 0/2] google highway 1.0.7
  2023-12-25 16:36 ` [bug#67922] [PATCH 0/2] google highway 1.0.7 Mathieu Othacehe
@ 2023-12-27 13:41   ` Efraim Flashner
  0 siblings, 0 replies; 5+ messages in thread
From: Efraim Flashner @ 2023-12-27 13:41 UTC (permalink / raw)
  To: Mathieu Othacehe; +Cc: 67922-done

[-- Attachment #1: Type: text/plain, Size: 327 bytes --]

I was mostly waiting for QA to catch up to make sure everything built,
and not just for me :)

Patches pushed

-- 
Efraim Flashner   <efraim@flashner.co.il>   רנשלפ םירפא
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

end of thread, other threads:[~2023-12-27 14:05 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-12-20  7:48 [bug#67922] [PATCH 0/2] google highway 1.0.7 Efraim Flashner
2023-12-20  7:50 ` [bug#67922] [PATCH 1/2] gnu: google-highway: Build shared libraries Efraim Flashner
2023-12-20  7:50 ` [bug#67922] [PATCH 2/2] gnu: google-highway: Update to 1.0.7 Efraim Flashner
2023-12-25 16:36 ` [bug#67922] [PATCH 0/2] google highway 1.0.7 Mathieu Othacehe
2023-12-27 13:41   ` bug#67922: " Efraim Flashner

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).