mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: clang: Add search path specifications.
* gnu/packages/llvm.scm (clang-from-llvm)[native-search-paths]: New field.
This commit is contained in:
parent
d0abf829a9
commit
ef11ac8701
1 changed files with 11 additions and 0 deletions
|
@ -1,6 +1,7 @@
|
|||
;;; GNU Guix --- Functional package management for GNU
|
||||
;;; Copyright © 2014 Eric Bavier <bavier@member.fsf.org>
|
||||
;;; Copyright © 2015 Mark H Weaver <mhw@netris.org>
|
||||
;;; Copyright © 2015 Ludovic Courtès <ludo@gnu.org>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -96,6 +97,16 @@ (define (clang-from-llvm llvm hash)
|
|||
(propagated-inputs
|
||||
`(("llvm" ,llvm)))
|
||||
(arguments `(#:configure-flags '("-DCLANG_INCLUDE_TESTS=True")))
|
||||
|
||||
;; Clang supports the same environment variables as GCC.
|
||||
(native-search-paths
|
||||
(list (search-path-specification
|
||||
(variable "CPATH")
|
||||
(files '("include")))
|
||||
(search-path-specification
|
||||
(variable "LIBRARY_PATH")
|
||||
(files '("lib" "lib64")))))
|
||||
|
||||
(home-page "http://clang.llvm.org")
|
||||
(synopsis "C language family frontend for LLVM")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue