* [bug#74710] [PATCH] gnu: ipxe: Update to 24db39fb2983ca83ab5c6ee37cb57a4f7f6f94e6.
@ 2024-12-06 13:38 Roman Scherer
2024-12-06 20:10 ` Vagrant Cascadian
2024-12-07 8:23 ` bug#74710: " Vagrant Cascadian
0 siblings, 2 replies; 4+ messages in thread
From: Roman Scherer @ 2024-12-06 13:38 UTC (permalink / raw)
To: 74710; +Cc: Roman Scherer, Efraim Flashner, Vagrant Cascadian
* gnu/packages/bootloaders.scm (ipxe): Update to 24db39fb2983ca83ab5c6ee37cb57a4f7f6f94e6.
Change-Id: I480fa8efad1e2d72e5239bf7df5fb779179ad96b
---
This fixes a build issue on my aarch64 system with gcc-14.
https://github.com/ipxe/ipxe/commit/7f75d320f
drivers/net/etherfabric.h:524:28: error: ‘reg.u32[0]’ may be used
uninitialized [-Werror=maybe-uninitialized]
---
gnu/packages/bootloaders.scm | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/bootloaders.scm b/gnu/packages/bootloaders.scm
index 61ea74b69a..788c7dc9ef 100644
--- a/gnu/packages/bootloaders.scm
+++ b/gnu/packages/bootloaders.scm
@@ -1946,9 +1946,9 @@ (define-public ipxe
;;
;; TODO: Bump this timestamp at each modifications of the package (not only
;; for updates) by running: date +%s.
- (let ((timestamp "1706118389")
- (commit "de8a0821c7bc737e724fa3dfb6d89dc36f591d7a")
- (revision "2"))
+ (let ((timestamp "1733491642")
+ (commit "24db39fb2983ca83ab5c6ee37cb57a4f7f6f94e6")
+ (revision "3"))
(package
(name "ipxe")
(version (git-version "1.21.1" revision commit))
@@ -1960,7 +1960,7 @@ (define-public ipxe
(file-name (git-file-name name version))
(sha256
(base32
- "0xiffdmf8hpmsw7nm9wp10wd0rs4avm2m3q5ncx0r5zfykannlbd"))))
+ "0b2h4bsdgnyjna6piwfqqn985vqfjmbz80jh0n7hrnncp2v53qj6"))))
(build-system gnu-build-system)
(arguments
(list
base-commit: d75d1fe6ac7ded7e61322d18b07d347beb609aa0
--
2.46.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [bug#74710] [PATCH] gnu: ipxe: Update to 24db39fb2983ca83ab5c6ee37cb57a4f7f6f94e6.
2024-12-06 13:38 [bug#74710] [PATCH] gnu: ipxe: Update to 24db39fb2983ca83ab5c6ee37cb57a4f7f6f94e6 Roman Scherer
@ 2024-12-06 20:10 ` Vagrant Cascadian
2024-12-06 21:05 ` Vagrant Cascadian
2024-12-07 8:23 ` bug#74710: " Vagrant Cascadian
1 sibling, 1 reply; 4+ messages in thread
From: Vagrant Cascadian @ 2024-12-06 20:10 UTC (permalink / raw)
To: Roman Scherer; +Cc: 74710, Efraim Flashner
[-- Attachment #1: Type: text/plain, Size: 2046 bytes --]
On 2024-12-06, Roman Scherer wrote:
> * gnu/packages/bootloaders.scm (ipxe): Update to 24db39fb2983ca83ab5c6ee37cb57a4f7f6f94e6.
This fails to build on aarch64-linux for me, with lots of "unrecognized
command-line option" errors, such as:
gcc: error: unrecognized command-line option ‘-m32’
gcc: error: unrecognized command-line option ‘-malign-double’
gcc: error: unrecognized command-line option ‘-malign-double’
gcc: error: unrecognized command-line option ‘-malign-double’
make[2]: *** [Makefile.housekeeping:979: bin-i386-efi/__moddi3.o] Error 1
make[2]: *** [Makefile.housekeeping:979: bin-i386-efi/__udivmoddi4.o] Error 1
gcc: error: unrecognized command-line option ‘-malign-double’
make[2]: *** [Makefile.housekeeping:979: bin-i386-efi/__udivdi3.o] Error 1
make[2]: *** [Makefile.housekeeping:979: bin-i386-efi/__umoddi3.o] Error 1
make[1]: *** [Makefile.housekeeping:166: bin-i386-efi/ipxe.efi] Error 2
make: *** [Makefile:170: everything] Error 2
error: in phase 'build': uncaught exception:
%exception #<&invoke-error program: "make" arguments: ("-j" "6" "ECHO_E_BIN_ECHO=echo" "ECHO_E_BIN_ECHO_E=echo -e" "BUILD_ID_CMD=echo -n 0x8198a1b7" "BUILD_TIMESTAMP=1733491642" "everything") exit-status: 2 term-signal: #f stop-signal: #f>
phase `build' failed after 71.5 seconds
command "make" "-j" "6" "ECHO_E_BIN_ECHO=echo" "ECHO_E_BIN_ECHO_E=echo -e" "BUILD_ID_CMD=echo -n 0x8198a1b7" "BUILD_TIMESTAMP=1733491642" "everything" failed with status 2
build process 8 exited with status 256
builder for `/gnu/store/s60h3s4h3rass2fq6sdkxgs9nf2nhbij-ipxe-1.21.1-3.24db39f.drv' failed with exit code 1
build of /gnu/store/s60h3s4h3rass2fq6sdkxgs9nf2nhbij-ipxe-1.21.1-3.24db39f.drv failed
View build log at '/var/log/guix/drvs/s6/0h3s4h3rass2fq6sdkxgs9nf2nhbij-ipxe-1.21.1-3.24db39f.drv.gz'.
guix build: error: build of `/gnu/store/s60h3s4h3rass2fq6sdkxgs9nf2nhbij-ipxe-1.21.1-3.24db39f.drv' failed
Although I see the same build failures without the patch applied...
live well,
vagrant
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 227 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* [bug#74710] [PATCH] gnu: ipxe: Update to 24db39fb2983ca83ab5c6ee37cb57a4f7f6f94e6.
2024-12-06 20:10 ` Vagrant Cascadian
@ 2024-12-06 21:05 ` Vagrant Cascadian
0 siblings, 0 replies; 4+ messages in thread
From: Vagrant Cascadian @ 2024-12-06 21:05 UTC (permalink / raw)
To: Roman Scherer; +Cc: 74710, Efraim Flashner
[-- Attachment #1: Type: text/plain, Size: 979 bytes --]
On 2024-12-06, Vagrant Cascadian wrote:
> On 2024-12-06, Roman Scherer wrote:
>> * gnu/packages/bootloaders.scm (ipxe): Update to 24db39fb2983ca83ab5c6ee37cb57a4f7f6f94e6.
>
> This fails to build on aarch64-linux for me, with lots of "unrecognized
> command-line option" errors, such as:
...
> View build log at '/var/log/guix/drvs/s6/0h3s4h3rass2fq6sdkxgs9nf2nhbij-ipxe-1.21.1-3.24db39f.drv.gz'.
> guix build: error: build of `/gnu/store/s60h3s4h3rass2fq6sdkxgs9nf2nhbij-ipxe-1.21.1-3.24db39f.drv' failed
>
>
> Although I see the same build failures without the patch applied...
Ah, but it *does* fix building "ipxe-qemu"! So for that it would be nice
to apply the patch!
We should probably mark "ipxe" as x86_64-linux only; I think it is not
designed to build on other architectures.
That said, this does improve the situation for aarch64, triggering only
about 19 rebuilds... I have yet to finish testing how those rebuilds go,
but it is in progress.
live well,
vagrant
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 227 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* bug#74710: [PATCH] gnu: ipxe: Update to 24db39fb2983ca83ab5c6ee37cb57a4f7f6f94e6.
2024-12-06 13:38 [bug#74710] [PATCH] gnu: ipxe: Update to 24db39fb2983ca83ab5c6ee37cb57a4f7f6f94e6 Roman Scherer
2024-12-06 20:10 ` Vagrant Cascadian
@ 2024-12-07 8:23 ` Vagrant Cascadian
1 sibling, 0 replies; 4+ messages in thread
From: Vagrant Cascadian @ 2024-12-07 8:23 UTC (permalink / raw)
To: 74710-done; +Cc: Roman Scherer, Efraim Flashner
[-- Attachment #1: Type: text/plain, Size: 261 bytes --]
On 2024-12-06, Roman Scherer wrote:
> * gnu/packages/bootloaders.scm (ipxe): Update to 24db39fb2983ca83ab5c6ee37cb57a4f7f6f94e6.
>
> Change-Id: I480fa8efad1e2d72e5239bf7df5fb779179ad96b
Pushed as c05a9260ccfee4ac008eda928da6463f509a126d.
live well,
vagrant
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 227 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-12-07 9:11 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-06 13:38 [bug#74710] [PATCH] gnu: ipxe: Update to 24db39fb2983ca83ab5c6ee37cb57a4f7f6f94e6 Roman Scherer
2024-12-06 20:10 ` Vagrant Cascadian
2024-12-06 21:05 ` Vagrant Cascadian
2024-12-07 8:23 ` bug#74710: " Vagrant Cascadian
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.