diff options
-rw-r--r-- | gn/packages/riscv.scm | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gn/packages/riscv.scm b/gn/packages/riscv.scm index bae8536..aaa2818 100644 --- a/gn/packages/riscv.scm +++ b/gn/packages/riscv.scm @@ -69,9 +69,11 @@ (string-append "-j" (number->string (parallel-job-count)))))) (replace 'install (lambda* (#:key outputs #:allow-other-keys) - (install-file "work-ver/Variane_testharness" - (string-append (assoc-ref outputs "out") - "/bin"))))))) + (let ((bin (string-append (assoc-ref outputs "out") + "/bin"))) + (mkdir-p bin) + (copy-file "work-ver/Variane_testharness" + (string-append bin "/ariane")))))))) (inputs (list spike verilator-4.110)) (home-page "https://docs.openhwgroup.org/projects/cva6-user-manual/") |