Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 3139e7a8 authored by Ludovic Courtès's avatar Ludovic Courtès
Browse files

Avoid 'package-with-c-toolchain' effect.

* function-multi-versioning.scm (fmv-patched-package): Remove
'package-with-c-toolchain' call.
parent 80d16f70
Branches master
No related tags found
No related merge requests found
......@@ -261,13 +261,11 @@ TOOLCHAIN to obtain vectorization info."
(define* (fmv-patched-package p #:key (toolchain latest-toolchain))
"Return package P patched to contain multi-versioned functions."
(package-with-c-toolchain
(package/inherit p
(source (origin
(inherit (package-source p))
(patches (cons (fmv-patch p #:toolchain toolchain)
(origin-patches (package-source p)))))))
toolchain))
(package/inherit p
(source (origin
(inherit (package-source p))
(patches (cons (fmv-patch p #:toolchain toolchain)
(origin-patches (package-source p))))))))
;; Return the patched package.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment