mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 05:57:04 +01:00
gnu: libstdc++: Fix build for linux with gcc-14.
* gnu/packages/gcc.scm (make-libstdc++)[arguments]: Rename stage "patch-hurd64 to "patch-tzdb.cc and use for gcc >= 14 unrestrictedly. Change-Id: Icaf0a31744dc6102d96444f531f3ba1878a61b6c
This commit is contained in:
parent
d3ab26f6c7
commit
71337b3cd6
1 changed files with 8 additions and 8 deletions
|
@ -1029,14 +1029,14 @@ (define-public (make-libstdc++ gcc)
|
|||
(add-before 'configure 'chdir
|
||||
(lambda _
|
||||
(chdir "libstdc++-v3")))
|
||||
#$@(let ((version (package-version gcc)))
|
||||
(if (target-hurd64?)
|
||||
#~((add-after 'unpack 'patch-hurd64
|
||||
|
||||
#$@(if (version>=? (package-version gcc) "14")
|
||||
#~((add-after 'unpack 'patch-tzdb.cc
|
||||
(lambda _
|
||||
(substitute* "libstdc++-v3/src/c++20/tzdb.cc"
|
||||
(("#if ! defined _GLIBCXX_ZONEINFO_DIR")
|
||||
"#if __GNU__ || ! defined _GLIBCXX_ZONEINFO_DIR")))))
|
||||
'())))
|
||||
"#if 1 // ! defined _GLIBCXX_ZONEINFO_DIR")))))
|
||||
'()))
|
||||
|
||||
#:configure-flags '`("--disable-libstdcxx-pch"
|
||||
,(string-append "--with-gxx-include-dir="
|
||||
|
|
Loading…
Reference in a new issue