diff options
author | Jean-Pierre De Jesus DIAZ <jean@foundationdevices.com> | 2023-12-27 13:09:45 +0100 |
---|---|---|
committer | Ian Eure <ian@retrospec.tv> | 2025-04-20 16:45:01 -0700 |
commit | f484aea2e85460310c20911636471ceae745b582 (patch) | |
tree | 232f0bde14fee5c47ca818f89f2d732046d29e5f | |
parent | ba53ff9cc403c7f0388e2dc932cb46e665e81be7 (diff) | |
download | guix-f484aea2e85460310c20911636471ceae745b582.tar.gz guix-f484aea2e85460310c20911636471ceae745b582.zip |
gnu: cross-gcc-toolchain: Add native-search-paths.
* gnu/packages/cross-base.scm (cross-gcc-toolchain): Add
native-search-paths.
Change-Id: Ib4cc510fde71b8d3140e1001c3931f74300da8a0
Signed-off-by: Ian Eure <ian@retrospec.tv>
-rw-r--r-- | gnu/packages/cross-base.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gnu/packages/cross-base.scm b/gnu/packages/cross-base.scm index a4e9c2a9cb..5df06418e3 100644 --- a/gnu/packages/cross-base.scm +++ b/gnu/packages/cross-base.scm @@ -815,6 +815,7 @@ with XBINUTILS, XGCC and LIBC (if exists for TARGET)." (((names . directory) ...) (union-build #$output directory)))))) (inputs `(,xbinutils ,xgcc ,@(if libc (list libc) '()))) + (native-search-paths (package-search-paths xgcc)) (home-page (package-home-page xgcc)) (synopsis (format #f "Complete GCC tool chain for C/C++ development (~a)" target)) |