diff options
| author | Zheng Junjie <873216071@qq.com> | 2024-12-24 01:12:50 +0800 |
|---|---|---|
| committer | Zheng Junjie <zhengjunjie@iscas.ac.cn> | 2025-01-25 01:05:26 +0800 |
| commit | e404f8ef4c5afa6d9be28642a8028f3ff59189f0 (patch) | |
| tree | 10b64a824ff431d6906b7ac6af2e7b00e114fa1b /gnu/packages/readline.scm | |
| parent | 151128b6286d8f66201dbabfb44f0c287da25585 (diff) | |
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
Diffstat (limited to 'gnu/packages/readline.scm')
| -rw-r--r-- | gnu/packages/readline.scm | 59 |
1 files changed, 38 insertions, 21 deletions
diff --git a/gnu/packages/readline.scm b/gnu/packages/readline.scm index 8200a24f1a1..42d8c6ed636 100644 --- a/gnu/packages/readline.scm +++ b/gnu/packages/readline.scm @@ -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 |
