Skip to content

Commit

Permalink
Update.
Browse files Browse the repository at this point in the history
	* Makerules (build-shlib): Work around different order of
	processing of -B option in different gcc versions.
  • Loading branch information
Ulrich Drepper committed Feb 9, 2001
1 parent 441f7d1 commit 90feeaa
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
2001-02-08 Ulrich Drepper <drepper@redhat.com>

* 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 <isamu@yamato.ibm.com>.

Expand Down
3 changes: 2 additions & 1 deletion Makerules
Original file line number Diff line number Diff line change
Expand Up @@ -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) \
Expand Down

0 comments on commit 90feeaa

Please sign in to comment.