mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00: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 $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…
Add table
Add a link
Reference in a new issue