|
Message-Id: <1398649434-23560-2-git-send-email-raj.khem@gmail.com> Date: Sun, 27 Apr 2014 18:43:53 -0700 From: Khem Raj <raj.khem@...il.com> To: musl@...ts.openwall.com Cc: Khem Raj <raj.khem@...il.com> Subject: [PATCH 2/3] Add soname to dynamic section Its used by post processing tools especially during packaging to construct package names etc. Signed-off-by: Khem Raj <raj.khem@...il.com> Upstream-Status: Pending --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 0ab0bfd..cffa519 100644 --- a/Makefile +++ b/Makefile @@ -126,6 +126,7 @@ $(foreach s,$(wildcard src/*/$(ARCH)*/*.s),$(eval $(call mkasmdep,$(s)))) lib/libc.so: $(LOBJS) $(CC) $(CFLAGS_ALL_SHARED) $(LDFLAGS) -nostdlib -shared \ -Wl,-e,_start -Wl,-Bsymbolic-functions \ + -Wl,-soname,libc.so \ -o $@ $(LOBJS) $(LIBCC) lib/libc.a: $(OBJS) -- 1.7.10.4
Powered by blists - more mailing lists
Confused about mailing lists and their use? Read about mailing lists on Wikipedia and check out these guidelines on proper formatting of your messages.