From 90feeaa2ebef8b807cfb774bcbe311325eae0b3b Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Fri, 9 Feb 2001 06:46:20 +0000 Subject: [PATCH] Update. * Makerules (build-shlib): Work around different order of processing of -B option in different gcc versions. --- ChangeLog | 3 +++ Makerules | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 4067108..863869d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2001-02-08 Ulrich Drepper + * Makerules (build-shlib): Work around different order of + processing of -B option in different gcc versions. + * posix/regex.c: Fix alignment problem. Patch by Isamu Hasegawa . diff --git a/Makerules b/Makerules index 5c9b757..5f938dd 100644 --- a/Makerules +++ b/Makerules @@ -415,7 +415,8 @@ lib%.so: lib%_pic.a $(+preinit) $(+postinit) $(+interp) define build-shlib $(LINK.o) -shared -Wl,-O1 -o $@ $(sysdep-LDFLAGS) $(config-LDFLAGS) \ - $(extra-B-$(@F:lib%.so=%).so) -B$(csu-objpfx) $(load-map-file) \ + $(extra-B-$(@F:lib%.so=%).so) -B$(csu-objpfx) \ + $(extra-B-$(@F:lib%.so=%).so) $(load-map-file) \ -Wl,-soname=lib$(libprefix)$(@F:lib%.so=%).so$($(@F)-version) \ $(LDFLAGS.so) $(LDFLAGS-$(@F:lib%.so=%).so) \ -L$(subst :, -L,$(rpath-link)) -Wl,-rpath-link=$(rpath-link) \ -- 2.7.4