[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#43679] [PATCH v2 2/5] gnu: clang-toolchain: Add 'GUIX_LOCPATH' to t
From: |
Ludovic Courtès |
Subject: |
[bug#43679] [PATCH v2 2/5] gnu: clang-toolchain: Add 'GUIX_LOCPATH' to the search paths. |
Date: |
Fri, 9 Oct 2020 11:12:28 +0200 |
From: Ludovic Courtès <ludovic.courtes@inria.fr>
* gnu/packages/llvm.scm (make-clang-toolchain)[native-search-paths]: Add
'GUIX_LOCPATH'.
---
gnu/packages/llvm.scm | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/llvm.scm b/gnu/packages/llvm.scm
index 15078a1168..4b42c4921a 100644
--- a/gnu/packages/llvm.scm
+++ b/gnu/packages/llvm.scm
@@ -484,7 +484,11 @@ code analysis tools.")
"libc-static")))
#t))))
- (native-search-paths (package-native-search-paths clang))
+ (native-search-paths
+ (append (package-native-search-paths clang)
+ (list (search-path-specification ;copied from glibc
+ (variable "GUIX_LOCPATH")
+ (files '("lib/locale"))))))
(search-paths (package-search-paths clang))
(license (package-license clang))
--
2.28.0
- [bug#43679] [PATCH v2 0/5] Add '--with-c-toolchain', Ludovic Courtès, 2020/10/09
- [bug#43679] [PATCH v2 1/5] gnu: gcc-toolchain: Add 'GUIX_LOCPATH' to the search paths., Ludovic Courtès, 2020/10/09
- [bug#43679] [PATCH v2 2/5] gnu: clang-toolchain: Add 'GUIX_LOCPATH' to the search paths.,
Ludovic Courtès <=
- [bug#43679] [PATCH v2 3/5] gnu: clang-toolchain: Create 'cc' and 'c++' symlinks., Ludovic Courtès, 2020/10/09
- [bug#43679] [PATCH v2 4/5] packages: Add 'package-with-c-toolchain'., Ludovic Courtès, 2020/10/09
- [bug#43679] [PATCH v2 5/5] guix build: Add '--with-c-toolchain'., Ludovic Courtès, 2020/10/09
- bug#43679: [PATCH v2 0/5] Add '--with-c-toolchain', Ludovic Courtès, 2020/10/12