mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 06:36:37 -05:00
guix: search-paths: Fix obj-c++ search paths.
* guix/search-paths.scm ($OBJCPLUS_INCLUDE_PATH): Also search 'include/c++'. Change-Id: I403674038c1c3bf1251c710031496363c924f19a
This commit is contained in:
parent
a9136076eb
commit
09d62629a9
1 changed files with 3 additions and 1 deletions
|
@ -100,7 +100,9 @@ (define $OBJC_INCLUDE_PATH
|
||||||
(define $OBJCPLUS_INCLUDE_PATH
|
(define $OBJCPLUS_INCLUDE_PATH
|
||||||
(search-path-specification
|
(search-path-specification
|
||||||
(variable "OBJCPLUS_INCLUDE_PATH")
|
(variable "OBJCPLUS_INCLUDE_PATH")
|
||||||
(files '("include"))))
|
;; Add 'include/c++' here so that <cstdlib>'s "#include_next
|
||||||
|
;; <stdlib.h>" finds GCC's <stdlib.h>, not libc's.
|
||||||
|
(files '("include/c++" "include"))))
|
||||||
|
|
||||||
(define $LIBRARY_PATH
|
(define $LIBRARY_PATH
|
||||||
(search-path-specification
|
(search-path-specification
|
||||||
|
|
Loading…
Reference in a new issue