unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#57314] [PATCH] guix system: Use standard cross and native build options.
@ 2022-08-21  6:11 Thiago Jung Bauermann via Guix-patches via
  2022-08-30  6:56 ` bug#57314: " Mathieu Othacehe
  0 siblings, 1 reply; 3+ messages in thread
From: Thiago Jung Bauermann via Guix-patches via @ 2022-08-21  6:11 UTC (permalink / raw)
  To: 57314; +Cc: Thiago Jung Bauermann

This change prevents guix system from erroring out with an ugly backtrace
when it's passed an invalid value to the “--system” or “--target”
option. It also adds the “--list-systems” and “--list-targets” options.

The manual section about guix system doesn't mention the “--target” option,
so add it there.

* guix/scripts/system (show-help): Call show-cross-build-options-help and
show-native-build-options-help.
(%options): Remove own implementation of “system” and “target” options and
use the ones in %standard-cross-build-options and
%standard-native-build-options.
* doc/guix.texi (Invoking guix system): Document “--target” option.
---
 doc/guix.texi           |  5 +++++
 guix/scripts/system.scm | 16 +++++++---------
 2 files changed, 12 insertions(+), 9 deletions(-)

diff --git a/doc/guix.texi b/doc/guix.texi
index 023b48ae3507..e8f05ffdeb51 100644
--- a/doc/guix.texi
+++ b/doc/guix.texi
@@ -37533,6 +37533,11 @@ Installation Image}).
 Attempt to build for @var{system} instead of the host system type.
 This works as per @command{guix build} (@pxref{Invoking guix build}).
 
+@item --target=@var{triplet}
+Cross-build for @var{triplet}, which must be a valid GNU triplet, such
+as @code{"aarch64-linux-gnu"} (@pxref{Specifying target triplets, GNU
+configuration triplets,, autoconf, Autoconf}).
+
 @item --derivation
 @itemx -d
 Return the derivation file name of the given operating system without
diff --git a/guix/scripts/system.scm b/guix/scripts/system.scm
index be6e83994100..443e9d3282fc 100644
--- a/guix/scripts/system.scm
+++ b/guix/scripts/system.scm
@@ -1046,6 +1046,10 @@ (define (show-help)
                          for 'describe' and 'list-generations', list installed
                          packages matching REGEXP"))
   (newline)
+  (show-cross-build-options-help)
+  (newline)
+  (show-native-build-options-help)
+  (newline)
   (display (G_ "
   -h, --help             display this help and exit"))
   (display (G_ "
@@ -1136,14 +1140,6 @@ (define %options
                    (let ((level (string->number* arg)))
                      (alist-cons 'verbosity level
                                  (alist-delete 'verbosity result)))))
-         (option '(#\s "system") #t #f
-                 (lambda (opt name arg result)
-                   (alist-cons 'system arg
-                               (alist-delete 'system result eq?))))
-         (option '("target") #t #f
-                 (lambda (opt name arg result)
-                   (alist-cons 'target arg
-                               (alist-delete 'target result eq?))))
          (option '(#\r "root") #t #f
                  (lambda (opt name arg result)
                    (alist-cons 'gc-root arg result)))
@@ -1153,7 +1149,9 @@ (define %options
          (option '(#\I "list-installed") #f #t
                  (lambda (opt name arg result)
                    (alist-cons 'list-installed (or arg "") result)))
-         %standard-build-options))
+         (append %standard-build-options
+                 %standard-cross-build-options
+                 %standard-native-build-options)))
 
 (define %default-options
   ;; Alist of default option values.




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

* bug#57314: [PATCH] guix system: Use standard cross and native build options.
  2022-08-21  6:11 [bug#57314] [PATCH] guix system: Use standard cross and native build options Thiago Jung Bauermann via Guix-patches via
@ 2022-08-30  6:56 ` Mathieu Othacehe
  2022-08-31  5:16   ` [bug#57314] " Thiago Jung Bauermann via Guix-patches via
  0 siblings, 1 reply; 3+ messages in thread
From: Mathieu Othacehe @ 2022-08-30  6:56 UTC (permalink / raw)
  To: Thiago Jung Bauermann; +Cc: 57314-done


Hello Thiago,

> This change prevents guix system from erroring out with an ugly backtrace
> when it's passed an invalid value to the “--system” or “--target”
> option. It also adds the “--list-systems” and “--list-targets” options.
>
> The manual section about guix system doesn't mention the “--target” option,
> so add it there.

Looks nice, pushed!

Thanks,

Mathieu




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

* [bug#57314] [PATCH] guix system: Use standard cross and native build options.
  2022-08-30  6:56 ` bug#57314: " Mathieu Othacehe
@ 2022-08-31  5:16   ` Thiago Jung Bauermann via Guix-patches via
  0 siblings, 0 replies; 3+ messages in thread
From: Thiago Jung Bauermann via Guix-patches via @ 2022-08-31  5:16 UTC (permalink / raw)
  To: Mathieu Othacehe; +Cc: 57314-done


Hello Mathieu,

Mathieu Othacehe <othacehe@gnu.org> writes:

> Hello Thiago,
>
>> This change prevents guix system from erroring out with an ugly backtrace
>> when it's passed an invalid value to the “--system” or “--target”
>> option. It also adds the “--list-systems” and “--list-targets” options.
>>
>> The manual section about guix system doesn't mention the “--target” option,
>> so add it there.
>
> Looks nice, pushed!

Thank you!

-- 
Thiago




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

end of thread, other threads:[~2022-08-31  5:17 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-08-21  6:11 [bug#57314] [PATCH] guix system: Use standard cross and native build options Thiago Jung Bauermann via Guix-patches via
2022-08-30  6:56 ` bug#57314: " Mathieu Othacehe
2022-08-31  5:16   ` [bug#57314] " Thiago Jung Bauermann via Guix-patches via

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).