* [bug#62378] [PATCH 0/3] Update supported-systems.
@ 2023-03-22 12:47 Greg Hogan
2023-03-22 12:52 ` [bug#62378] [PATCH 1/3] gnu: b2sum: Limit to x86_64-linux Greg Hogan
2023-03-24 14:47 ` [bug#62378] [PATCH 0/3] Update supported-systems Christopher Baines
0 siblings, 2 replies; 6+ messages in thread
From: Greg Hogan @ 2023-03-22 12:47 UTC (permalink / raw)
To: 62378; +Cc: Greg Hogan
Greg Hogan (3):
gnu: b2sum: Limit to x86_64-linux.
gnu: tokyocabinet: Limit to x86_64-linux and i686-linux.
gnu: libx86emu: Limit to x86_64-linux and i686-linux.
gnu/packages/crypto.scm | 2 ++
gnu/packages/databases.scm | 2 ++
gnu/packages/virtualization.scm | 2 ++
3 files changed, 6 insertions(+)
--
2.40.0
^ permalink raw reply [flat|nested] 6+ messages in thread
* [bug#62378] [PATCH 1/3] gnu: b2sum: Limit to x86_64-linux.
2023-03-22 12:47 [bug#62378] [PATCH 0/3] Update supported-systems Greg Hogan
@ 2023-03-22 12:52 ` Greg Hogan
2023-03-22 12:52 ` [bug#62378] [PATCH 2/3] gnu: tokyocabinet: Limit to x86_64-linux and i686-linux Greg Hogan
2023-03-22 12:52 ` [bug#62378] [PATCH 3/3] gnu: libx86emu: " Greg Hogan
2023-03-24 14:47 ` [bug#62378] [PATCH 0/3] Update supported-systems Christopher Baines
1 sibling, 2 replies; 6+ messages in thread
From: Greg Hogan @ 2023-03-22 12:52 UTC (permalink / raw)
To: 62378; +Cc: Greg Hogan
* gnu/packages/crypto.scm (b2sum)[supported-systems]: New field.
---
gnu/packages/crypto.scm | 2 ++
1 file changed, 2 insertions(+)
diff --git a/gnu/packages/crypto.scm b/gnu/packages/crypto.scm
index b4bef33b06..1ed14d9092 100644
--- a/gnu/packages/crypto.scm
+++ b/gnu/packages/crypto.scm
@@ -868,6 +868,8 @@ (define-public b2sum
(file-name (git-file-name name version))
(sha256
(base32 "04z631v0vzl52g73v390ask5fnzi5wg83lcjkjhpmmymaz0jn152"))))
+ ;; "This code requires at least SSE2".
+ (supported-systems '("x86_64-linux"))
(build-system gnu-build-system)
(arguments
`(#:make-flags (list (string-append "CC=" ,(cc-for-target))
--
2.40.0
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [bug#62378] [PATCH 2/3] gnu: tokyocabinet: Limit to x86_64-linux and i686-linux.
2023-03-22 12:52 ` [bug#62378] [PATCH 1/3] gnu: b2sum: Limit to x86_64-linux Greg Hogan
@ 2023-03-22 12:52 ` Greg Hogan
2023-03-22 12:52 ` [bug#62378] [PATCH 3/3] gnu: libx86emu: " Greg Hogan
1 sibling, 0 replies; 6+ messages in thread
From: Greg Hogan @ 2023-03-22 12:52 UTC (permalink / raw)
To: 62378; +Cc: Greg Hogan
* gnu/packages/databases.scm (tokyocabinet)[supported-systems]: New field.
---
gnu/packages/databases.scm | 2 ++
1 file changed, 2 insertions(+)
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
index e51ddd5bf2..89ccf6c4fc 100644
--- a/gnu/packages/databases.scm
+++ b/gnu/packages/databases.scm
@@ -2630,6 +2630,8 @@ (define-public tokyocabinet
(sha256
(base32
"140zvr0n8kvsl0fbn2qn3f2kh3yynfwnizn4dgbj47m975yg80x0"))))
+ ;; "gcc: error: unrecognized command-line option ?-minline-all-stringops?".
+ (supported-systems '("i686-linux" "x86_64-linux"))
(build-system gnu-build-system)
(arguments
`(#:configure-flags
--
2.40.0
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [bug#62378] [PATCH 3/3] gnu: libx86emu: Limit to x86_64-linux and i686-linux.
2023-03-22 12:52 ` [bug#62378] [PATCH 1/3] gnu: b2sum: Limit to x86_64-linux Greg Hogan
2023-03-22 12:52 ` [bug#62378] [PATCH 2/3] gnu: tokyocabinet: Limit to x86_64-linux and i686-linux Greg Hogan
@ 2023-03-22 12:52 ` Greg Hogan
1 sibling, 0 replies; 6+ messages in thread
From: Greg Hogan @ 2023-03-22 12:52 UTC (permalink / raw)
To: 62378; +Cc: Greg Hogan
* gnu/packages/virtualization.scm (libx86emu)[supported-systems]: New field.
---
gnu/packages/virtualization.scm | 2 ++
1 file changed, 2 insertions(+)
diff --git a/gnu/packages/virtualization.scm b/gnu/packages/virtualization.scm
index 1c1b06d271..b61d8e3766 100644
--- a/gnu/packages/virtualization.scm
+++ b/gnu/packages/virtualization.scm
@@ -617,6 +617,8 @@ (define-public libx86emu
(("GIT2LOG.*=.*$") "")
(("GITDEPS.*=.*$") "")
(("BRANCH.*=.*$") ""))))))
+ ;; "fatal error: sys/io.h: No such file or directory".
+ (supported-systems '("i686-linux" "x86_64-linux"))
(build-system gnu-build-system)
(arguments
`(#:test-target "test"
--
2.40.0
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [bug#62378] [PATCH 0/3] Update supported-systems.
2023-03-22 12:47 [bug#62378] [PATCH 0/3] Update supported-systems Greg Hogan
2023-03-22 12:52 ` [bug#62378] [PATCH 1/3] gnu: b2sum: Limit to x86_64-linux Greg Hogan
@ 2023-03-24 14:47 ` Christopher Baines
2023-05-11 20:20 ` bug#62378: " Greg Hogan
1 sibling, 1 reply; 6+ messages in thread
From: Christopher Baines @ 2023-03-24 14:47 UTC (permalink / raw)
To: Greg Hogan; +Cc: 62378
[-- Attachment #1: Type: text/plain, Size: 517 bytes --]
Greg Hogan <code@greghogan.com> writes:
> Greg Hogan (3):
> gnu: b2sum: Limit to x86_64-linux.
> gnu: tokyocabinet: Limit to x86_64-linux and i686-linux.
> gnu: libx86emu: Limit to x86_64-linux and i686-linux.
Hi Greg,
Thanks for these patches.
I've pushed the b2sum one to master as
e0cb344b18034bfb41905c627d2b3b9dbf2e65fb.
I held back on the other two since they seem to successfully build on
systems beyond the ones you've specified. I was checking the builds
using data.guix.gnu.org.
Thanks,
Chris
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 987 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* bug#62378: [PATCH 0/3] Update supported-systems.
2023-03-24 14:47 ` [bug#62378] [PATCH 0/3] Update supported-systems Christopher Baines
@ 2023-05-11 20:20 ` Greg Hogan
0 siblings, 0 replies; 6+ messages in thread
From: Greg Hogan @ 2023-05-11 20:20 UTC (permalink / raw)
To: Christopher Baines; +Cc: 62378-done
On Fri, Mar 24, 2023 at 10:49 AM Christopher Baines <mail@cbaines.net> wrote:
>
> Greg Hogan <code@greghogan.com> writes:
>
> > Greg Hogan (3):
> > gnu: b2sum: Limit to x86_64-linux.
> > gnu: tokyocabinet: Limit to x86_64-linux and i686-linux.
> > gnu: libx86emu: Limit to x86_64-linux and i686-linux.
>
> Hi Greg,
>
> Thanks for these patches.
>
> I've pushed the b2sum one to master as
> e0cb344b18034bfb41905c627d2b3b9dbf2e65fb.
>
> I held back on the other two since they seem to successfully build on
> systems beyond the ones you've specified. I was checking the builds
> using data.guix.gnu.org.
I see that Debian has these two packages available for additional
architectures, but within Guix tokyocabinet fails with "gcc: error:
unrecognized command-line option ‘-minline-all-stringops’" on both
powerpc64le-linux (https://ci.guix.gnu.org/build/13653/details) and
aarch64-linux (https://ci.guix.gnu.org/build/49140/details). That
option looks to be x86 online
(https://gcc.gnu.org/onlinedocs/gcc-12.3.0/gcc/x86-Function-Attributes.html).
I don't see anything apropos in the list of Debian patches
(https://packages.debian.org/bullseye/tokyocabinet-bin).
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2023-05-11 20:21 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-03-22 12:47 [bug#62378] [PATCH 0/3] Update supported-systems Greg Hogan
2023-03-22 12:52 ` [bug#62378] [PATCH 1/3] gnu: b2sum: Limit to x86_64-linux Greg Hogan
2023-03-22 12:52 ` [bug#62378] [PATCH 2/3] gnu: tokyocabinet: Limit to x86_64-linux and i686-linux Greg Hogan
2023-03-22 12:52 ` [bug#62378] [PATCH 3/3] gnu: libx86emu: " Greg Hogan
2023-03-24 14:47 ` [bug#62378] [PATCH 0/3] Update supported-systems Christopher Baines
2023-05-11 20:20 ` bug#62378: " Greg Hogan
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.