gnu: opensbi: Remove configure-flags.

The 'configure phase is removed and nothing uses it.

* gnu/packages/firmware.scm (make-opensbi-package)[arguments]: Remove
configure-flags.
This commit is contained in:
Efraim Flashner 2023-07-25 10:45:00 +03:00
parent 1b95a34405
commit 11751b016d
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -518,11 +518,6 @@ (define* (make-opensbi-package platform name #:optional (arch "riscv64"))
`("CC=gcc"))
"FW_PAYLOAD=n"
"V=1")
;; Direct __asm__ is used with fence.i instructions, which are not
;; available in the generic riscv ISA. We need a micro-arch with
;; support for it, and rv64g is the official ISA with support for
;; fence.i.
#:configure-flags (list "-march=rv64g")
#:phases
(modify-phases %standard-phases
(delete 'configure)