gnu: readline: Fix build to loongarch64.

* gnu/packages/readline.scm (readline)[arguments]: When target is loongarch64,
Add update-config-scripts phase.
[native-inputs]: When target is loongarch64, Add config.

Change-Id: Ie369d53c7f2493a7a65fe592a3671719dee264c0
This commit is contained in:
Zheng Junjie 2024-12-24 01:12:50 +08:00 committed by Zheng Junjie
parent 151128b628
commit e404f8ef4c
No known key found for this signature in database
GPG key ID: 3B5AA993E1A2DFF0

View file

@ -82,29 +82,46 @@
(build-system gnu-build-system)
(propagated-inputs (list ncurses))
(arguments
(list #:configure-flags
#~(list (string-append
"LDFLAGS=-Wl,-rpath -Wl,"
(dirname (search-input-file %build-inputs
"lib/libncurses.so")))
(append
(if (target-loongarch64?)
(list #:phases
#~(modify-phases %standard-phases
(add-after 'unpack 'update-config-scripts
(lambda* (#:key inputs native-inputs #:allow-other-keys)
;; Replace outdated config.guess and config.sub.
(for-each (lambda (file)
(install-file
(search-input-file
(or native-inputs inputs)
(string-append "/bin/" file)) "./support"))
'("config.guess" "config.sub"))))))
'())
(list #:configure-flags
#~(list (string-append
"LDFLAGS=-Wl,-rpath -Wl,"
(dirname (search-input-file %build-inputs
"lib/libncurses.so")))
;; This test does an 'AC_TRY_RUN', which aborts when
;; cross-compiling, so provide the correct answer.
#$@(if (%current-target-system)
'("bash_cv_wcwidth_broken=no")
'())
;; MinGW: ncurses provides the termcap api.
#$@(if (target-mingw?)
'("bash_cv_termcap_lib=ncurses")
'()))
;; This test does an 'AC_TRY_RUN', which aborts when
;; cross-compiling, so provide the correct answer.
#$@(if (%current-target-system)
'("bash_cv_wcwidth_broken=no")
'())
;; MinGW: ncurses provides the termcap api.
#$@(if (target-mingw?)
'("bash_cv_termcap_lib=ncurses")
'()))
#:make-flags
(if (target-mingw?)
;; MinGW: termcap in ncurses
;; some SIG_* #defined in _POSIX
#~'("TERMCAP_LIB=-lncurses"
"CPPFLAGS=-D_POSIX -D'chown(f,o,g)=0'")
#~'())))
#:make-flags
(if (target-mingw?)
;; MinGW: termcap in ncurses
;; some SIG_* #defined in _POSIX
#~'("TERMCAP_LIB=-lncurses"
"CPPFLAGS=-D_POSIX -D'chown(f,o,g)=0'")
#~'()))))
(native-inputs (if (target-loongarch64?)
(list config)
'()))
(synopsis "Edit command lines while typing, with history support")
(description
"The GNU readline library allows users to edit command lines as they