transformations: '--tune' prints supported micro-architectures upon error.
* guix/transformations.scm (build-system-with-tuning-compiler): Add &fix-hint condition when asked for an unsupported micro-architecture.
parent
15bb35d0c4
commit
3b80e79f21
|
@ -46,6 +46,7 @@
|
||||||
#:use-module (srfi srfi-11)
|
#:use-module (srfi srfi-11)
|
||||||
#:use-module (srfi srfi-26)
|
#:use-module (srfi srfi-26)
|
||||||
#:use-module (srfi srfi-34)
|
#:use-module (srfi srfi-34)
|
||||||
|
#:use-module (srfi srfi-35)
|
||||||
#:use-module (srfi srfi-37)
|
#:use-module (srfi srfi-37)
|
||||||
#:use-module (ice-9 match)
|
#:use-module (ice-9 match)
|
||||||
#:use-module (ice-9 vlist)
|
#:use-module (ice-9 vlist)
|
||||||
|
@ -526,10 +527,29 @@ system that builds code for MICRO-ARCHITECTURE; otherwise raise an error."
|
||||||
micro-architecture)))
|
micro-architecture)))
|
||||||
(unless (member micro-architecture
|
(unless (member micro-architecture
|
||||||
(or (assoc-ref lst architecture) '()))
|
(or (assoc-ref lst architecture) '()))
|
||||||
(raise (formatted-message
|
(raise
|
||||||
(G_ "compiler ~a does not support micro-architecture ~a")
|
(make-compound-condition
|
||||||
(package-full-name compiler)
|
(formatted-message
|
||||||
micro-architecture))))
|
(G_ "compiler ~a does not support micro-architecture ~a")
|
||||||
|
(package-full-name compiler)
|
||||||
|
micro-architecture)
|
||||||
|
(condition
|
||||||
|
(&fix-hint
|
||||||
|
(hint (match (assoc-ref lst architecture)
|
||||||
|
(#f (format #f (G_ "Compiler ~a does not support
|
||||||
|
micro-architectures of ~a.")
|
||||||
|
(package-full-name compiler "@@")
|
||||||
|
architecture))
|
||||||
|
(lst
|
||||||
|
(format #f (G_ "Compiler ~a supports the following ~a
|
||||||
|
micro-architectures:
|
||||||
|
|
||||||
|
@quotation
|
||||||
|
~a
|
||||||
|
@end quotation")
|
||||||
|
(package-full-name compiler "@@")
|
||||||
|
architecture
|
||||||
|
(string-join lst ", ")))))))))))
|
||||||
|
|
||||||
(bag
|
(bag
|
||||||
(inherit lowered)
|
(inherit lowered)
|
||||||
|
|
Reference in New Issue