mirror of git://sourceware.org/git/glibc.git
* Makerules (objects): Add BP thunks.
2000-06-20 Greg McGary <greg@mcgary.org> * Makerules (objects): Add BP thunks.
This commit is contained in:
parent
620cdffb58
commit
28546617b6
|
@ -1,3 +1,7 @@
|
||||||
|
2000-06-20 Greg McGary <greg@mcgary.org>
|
||||||
|
|
||||||
|
* Makerules (objects): Add BP thunks.
|
||||||
|
|
||||||
2000-06-20 Ulrich Drepper <drepper@redhat.com>
|
2000-06-20 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
* locale/programs/charmap.c (parse_charmap): Handle UCS names also
|
* locale/programs/charmap.c (parse_charmap): Handle UCS names also
|
||||||
|
|
11
Makerules
11
Makerules
|
@ -474,18 +474,17 @@ override sources := $(addsuffix .c,\
|
||||||
$(filter-out $(elided-routines),\
|
$(filter-out $(elided-routines),\
|
||||||
$(routines) $(aux) \
|
$(routines) $(aux) \
|
||||||
$(sysdep_routines)))
|
$(sysdep_routines)))
|
||||||
# XXX The following was introduced here in the BP patches but it belongs
|
|
||||||
# XXX somewhere else since adding it here breaks `make dist'.
|
|
||||||
# $(addprefix $(bppfx),\
|
|
||||||
# $(filter $(routines) $(sysdep_routines),\
|
|
||||||
# $(bp-thunks))))
|
|
||||||
sysdep_routines := $(sysdep_routines)
|
sysdep_routines := $(sysdep_routines)
|
||||||
|
|
||||||
headers := $(headers) $(sysdep_headers)
|
headers := $(headers) $(sysdep_headers)
|
||||||
|
|
||||||
# This is the list of all object files, gotten by
|
# This is the list of all object files, gotten by
|
||||||
# replacing every ".c" in `sources' with a ".o".
|
# replacing every ".c" in `sources' with a ".o".
|
||||||
override objects := $(addprefix $(objpfx),$(sources:.c=.o))
|
# We also add bounded-pointer thunks, which are later
|
||||||
|
# elided for all suffixes except for `.ob'.
|
||||||
|
override objects := $(addprefix $(objpfx),$(sources:.c=.o) \
|
||||||
|
$(patsubst %,$(bppfx)%.o,\
|
||||||
|
$(filter $(routines) $(sysdep_routines),$(bp-thunks))))
|
||||||
|
|
||||||
|
|
||||||
# The makefile may define $(extra-libs) with `libfoo libbar'
|
# The makefile may define $(extra-libs) with `libfoo libbar'
|
||||||
|
|
Loading…
Reference in New Issue