mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-26 09:43:50 +08:00
Don't build .os objects of static-only-routines for extra libs
This commit is contained in:
parent
05087fbb0d
commit
9dc7c64f93
@ -1,3 +1,8 @@
|
||||
2013-03-13 Andreas Schwab <schwab@suse.de>
|
||||
|
||||
* extra-lib.mk (extra-objs): Add static-only-routines as .oS
|
||||
instead of .os.
|
||||
|
||||
2013-03-13 Joseph Myers <joseph@codesourcery.com>
|
||||
|
||||
* timezone/zic.c: Update from tzcode 2013b.
|
||||
|
@ -34,7 +34,12 @@ extra-objs += $(foreach o,$(filter-out .os .oS,$(object-suffixes-$(lib))),\
|
||||
$($(lib)-shared-only-routines),\
|
||||
$(all-$(lib)-routines))))
|
||||
ifneq (,$(filter .os,$(object-suffixes-$(lib))))
|
||||
extra-objs += $(all-$(lib)-routines:%=%.os)
|
||||
extra-objs += $(patsubst %,%.os,$(filter-out $($(lib)-static-only-routines),\
|
||||
$(all-$(lib)-routines)))
|
||||
endif
|
||||
ifneq (,$(filter .oS,$(object-suffixes-$(lib))))
|
||||
extra-objs += $(patsubst %,%.oS,$(filter $($(lib)-static-only-routines),\
|
||||
$(all-$(lib)-routines)))
|
||||
endif
|
||||
alltypes-$(lib) := $(foreach o,$(object-suffixes-$(lib)),\
|
||||
$(objpfx)$(patsubst %,$(libtype$o),\
|
||||
|
Loading…
Reference in New Issue
Block a user