2021-08-30 12:24:27 -04:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2022-05-02 06:54:44 -04:00
|
|
|
;;; Copyright © 2022 Mathieu Othacehe <othacehe@gnu.org>
|
2021-08-30 12:24:27 -04:00
|
|
|
;;;
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
;;; your option) any later version.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
;;;
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2022-05-23 16:37:26 -04:00
|
|
|
(define-module (guix platforms riscv)
|
|
|
|
#:use-module (guix platform)
|
2021-08-30 12:24:27 -04:00
|
|
|
#:use-module (guix records)
|
2022-05-02 06:54:44 -04:00
|
|
|
#:export (riscv64-linux))
|
2021-08-30 12:24:27 -04:00
|
|
|
|
2022-05-02 06:54:44 -04:00
|
|
|
(define riscv64-linux
|
2021-08-30 12:24:27 -04:00
|
|
|
(platform
|
2022-05-02 06:54:44 -04:00
|
|
|
(target "riscv64-linux-gnu")
|
|
|
|
(system "riscv64-linux")
|
2022-05-07 11:02:51 -04:00
|
|
|
(linux-architecture "riscv")
|
2023-11-22 09:58:14 -05:00
|
|
|
(rust-target "riscv64gc-unknown-linux-gnu")
|
2022-05-07 11:02:51 -04:00
|
|
|
(glibc-dynamic-linker "/lib/ld-linux-riscv64-lp64d.so.1")))
|