public inbox for libc-alpha@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] memusagestat: use local glibc when linking [BZ #18465]
@ 2015-05-31 14:05 Mike Frysinger
  2015-05-31 18:36 ` Andreas Schwab
  0 siblings, 1 reply; 11+ messages in thread
From: Mike Frysinger @ 2015-05-31 14:05 UTC (permalink / raw)
  To: libc-alpha

The memusagestat is the only binary that has its own link line which
causes it to be linked against the existing installed C library.  It
has been this way since it was originally committed in 1999, but I
don't see any reason as to why.  Since we want all the programs we
build locally to be against the new copy of glibc, change the build
to be like all other programs.

2015-03-31  Mike Frysinger  <vapier@gentoo.org>

	[BZ #18465]
	* malloc/Makefile (others): Add memusagestat.
	($(objpfx)memusagestat): Delete rule.
	(LDLIBS-memusagestat): New variable.
---
 malloc/Makefile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/malloc/Makefile b/malloc/Makefile
index 67ed293..48515b8 100644
--- a/malloc/Makefile
+++ b/malloc/Makefile
@@ -75,6 +75,7 @@ ifneq ($(cross-compiling),yes)
 # If the gd library is available we build the `memusagestat' program.
 ifneq ($(LIBGD),no)
 others: $(objpfx)memusage
+others += memusagestat
 install-bin = memusagestat
 install-bin-script += memusage
 generated += memusagestat memusage
@@ -98,8 +99,7 @@ cpp-srcs-left := $(memusagestat-modules)
 lib := memusagestat
 include $(patsubst %,$(..)cppflags-iterator.mk,$(cpp-srcs-left))
 
-$(objpfx)memusagestat: $(memusagestat-modules:%=$(objpfx)%.o)
-	$(LINK.o) -o $@ $^ $(libgd-LDFLAGS) -lgd -lpng -lz -lm
+LDLIBS-memusagestat = $(libgd-LDFLAGS) -lgd -lpng -lz -lm
 
 ifeq ($(run-built-tests),yes)
 ifeq (yes,$(build-shared))
-- 
2.4.1

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

end of thread, other threads:[~2019-04-25  8:52 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-05-31 14:05 [PATCH] memusagestat: use local glibc when linking [BZ #18465] Mike Frysinger
2015-05-31 18:36 ` Andreas Schwab
2015-05-31 19:11   ` Mike Frysinger
2015-05-31 20:47     ` Andreas Schwab
2015-05-31 22:01       ` Mike Frysinger
2015-06-01 14:58       ` Joseph Myers
2015-06-01 15:24         ` Siddhesh Poyarekar
2015-06-01 15:55         ` Mike Frysinger
2015-06-01 16:22           ` Siddhesh Poyarekar
2019-04-24 12:16             ` Florian Weimer
2019-04-25  9:09               ` Florian Weimer

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).