mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-08 07:56:16 -05:00
gnu: commencement: Turn off RUNPATH checks for 'gcc-final'.
* gnu/packages/commencement.scm (gcc-final)[arguments]: Add #:validate-runpath? #f.
This commit is contained in:
parent
112da58875
commit
c2366e3ce4
1 changed files with 5 additions and 0 deletions
|
@ -500,6 +500,11 @@ (define-public gcc-final
|
|||
|
||||
#:allowed-references ("out" "lib" ,glibc-final)
|
||||
|
||||
;; Things like libasan.so and libstdc++.so NEED ld.so and/or
|
||||
;; libgcc_s.so but RUNPATH is empty. This is a false positive, so turn
|
||||
;; it off.
|
||||
#:validate-runpath? #f
|
||||
|
||||
;; Build again GMP & co. within GCC's build process, because it's hard
|
||||
;; to do outside (because GCC-BOOT0 is a cross-compiler, and thus
|
||||
;; doesn't honor $LIBRARY_PATH, which breaks `gnu-build-system'.)
|
||||
|
|
Loading…
Reference in a new issue