diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2023-07-25 10:45:00 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2023-07-25 16:07:02 +0300 |
commit | 11751b016d7f8b925e9d676c4c6b9f79cb99813d (patch) | |
tree | d8fb93fb46288461ea8775aa782f1e469741cb7e | |
parent | 1b95a34405b967a71923e862b0140f3f61fb2d6f (diff) |
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.
-rw-r--r-- | gnu/packages/firmware.scm | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/gnu/packages/firmware.scm b/gnu/packages/firmware.scm index 63b802fbaf..ff5afbcbe1 100644 --- a/gnu/packages/firmware.scm +++ b/gnu/packages/firmware.scm @@ -518,11 +518,6 @@ provide OpenFirmware functionality on top of an already running system.") `("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) |