Mentions légales du service

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

Remove unused procedure.

* inria/tainted/storm.scm (gnu-build-system-with-compiler): Remove.
parent cb07dee8
No related branches found
No related tags found
No related merge requests found
......@@ -20,26 +20,6 @@
#:use-module (ice-9 match)
#:use-module (srfi srfi-1))
(define (gnu-build-system-with-compiler compiler)
"Return a variant of GNU-BUILD-SYSTEM that uses COMPILER instead of the
implicit GCC."
(define lower
(build-system-lower gnu-build-system))
(define (lower* . args)
(let ((lowered (apply lower args)))
(bag
(inherit lowered)
(build-inputs (map (match-lambda
(("gcc" _ rest ...)
`("compiler" ,compiler ,@rest))
(input input))
(bag-build-inputs lowered))))))
(build-system
(inherit gnu-build-system)
(lower lower*)))
(define gfortran-sans-libstdc++
;; XXX: Currently gfortran includes a copy of libstdc++ and its headers.
;; For some reason, nvcc chokes on those:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment