gnu: gcc-toolchain: Add 'GUIX_LOCPATH' to the search paths.
This allows 'gcc-toolchain' to be used as a drop-in replacement for the default tool chain through '--with-toolchain=gcc-toolchain'. * gnu/packages/commencement.scm (make-gcc-toolchain)[native-search-paths] [search-paths]: Append LIBC's search paths.
This commit is contained in:
parent
099d709caf
commit
f848c276f0
1 changed files with 6 additions and 2 deletions
|
@ -3856,8 +3856,12 @@ COREUTILS-FINAL vs. COREUTILS, etc."
|
||||||
"libc-static")))
|
"libc-static")))
|
||||||
#t))))
|
#t))))
|
||||||
|
|
||||||
(native-search-paths (package-native-search-paths gcc))
|
(native-search-paths
|
||||||
(search-paths (package-search-paths gcc))
|
(append (package-native-search-paths gcc)
|
||||||
|
(package-native-search-paths libc))) ;GUIX_LOCPATH
|
||||||
|
(search-paths
|
||||||
|
(append (package-search-paths gcc)
|
||||||
|
(package-search-paths libc)))
|
||||||
|
|
||||||
(license (package-license gcc))
|
(license (package-license gcc))
|
||||||
(synopsis "Complete GCC tool chain for C/C++ development")
|
(synopsis "Complete GCC tool chain for C/C++ development")
|
||||||
|
|
Reference in a new issue