public inbox for libc-alpha@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] Run $(objpfx)iconvconfig as an installed program
@ 2021-02-26 21:15 H.J. Lu
  2021-04-19 12:55 ` PING^1 " H.J. Lu
  2021-05-06 15:23 ` Florian Weimer
  0 siblings, 2 replies; 7+ messages in thread
From: H.J. Lu @ 2021-02-26 21:15 UTC (permalink / raw)
  To: libc-alpha; +Cc: Florian Weimer

When glibc is configured with --enable-hardcoded-path-in-tests,
"make xcheck" failed with

...
env GCONV_PATH=/export/build/gnu/tools-build/glibc-cet-gitlab/build-x86_64-linux/iconvdata LOCPATH=/export/build/gnu/tools-build/glibc-cet-gitlab/build-x86_64-linux/localedata LC_ALL=C  /export/build/gnu/tools-build/glibc-cet-gitlab/build-x86_64-linux/iconv/iconvconfig  --output=$tmp --nostdlib /usr/lib64/gconv;
...
/export/build/gnu/tools-build/glibc-cet-gitlab/build-x86_64-linux/iconv/iconvconfig: /lib64/libc.so.6: version `GLIBC_2.34' not found (required by /export/build/gnu/tools-build/glibc-cet-gitlab/build-x86_64-linux/iconv/iconvconfig)
...
FAIL: iconv/test-iconvconfig

Since $(objpfx)iconvconfig is an installed program, run it as one.
---
 iconv/Makefile | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/iconv/Makefile b/iconv/Makefile
index 659857dd8c..4af3eea0d8 100644
--- a/iconv/Makefile
+++ b/iconv/Makefile
@@ -95,11 +95,13 @@ $(inst_bindir)/iconv: $(objpfx)iconv_prog $(+force)
 $(objpfx)iconv_prog: $(iconv_prog-modules:%=$(objpfx)%.o)
 $(objpfx)iconvconfig: $(iconvconfig-modules:%=$(objpfx)%.o)
 
-$(objpfx)test-iconvconfig.out: /dev/null $(objpfx)iconvconfig
+$(objpfx)test-iconvconfig.out: $(objpfx)iconvconfig
 	(set -e; \
 	 tmp=$(objpfx)gconv-modules.cache.$$$$; \
 	 rm -f $$tmp; \
-	 $(make-test-out) --output=$$tmp --nostdlib $(inst_gconvdir); \
+	 $(built-program-cmd-before-env) \
+		$(run-program-env) $(built-program-cmd-after-env) $< \
+		--output=$$tmp --nostdlib $(inst_gconvdir); \
 	 cmp $$tmp $(inst_gconvdir)/gconv-modules.cache; \
 	 rm -f $$tmp) > $@; \
 	$(evaluate-test)
-- 
2.29.2


^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2021-05-07 11:40 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-26 21:15 [PATCH] Run $(objpfx)iconvconfig as an installed program H.J. Lu
2021-04-19 12:55 ` PING^1 " H.J. Lu
2021-05-06 15:07   ` PING^2 " H.J. Lu
2021-05-06 15:23 ` Florian Weimer
2021-05-06 18:04   ` [PATCH v2] Run $(objpfx)iconvconfig with $(run-program-prefix) [BZ #27477] H.J. Lu
2021-05-07 10:21     ` Florian Weimer
2021-05-07 11:39       ` H.J. Lu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).