mirror of
https://mirrors.tuna.tsinghua.edu.cn/git/glibc.git
synced 2026-01-12 00:20:19 +08:00
Now that there is no need to use a special linker script to hardening internal data structures, remove the --with-default-link configure option and associated definitions. Reviewed-by: Carlos O'Donell <carlos@redhat.com>
13 lines
376 B
Makefile
13 lines
376 B
Makefile
mod := $(firstword $(extra-modules-left))
|
|
extra-modules-left := $(strip $(filter-out $(mod),$(extra-modules-left)))
|
|
|
|
extra-objs := $(extra-objs) $(patsubst %,%.os,$($(mod)-routines))
|
|
|
|
$(objpfx)$(mod).so: $(addprefix $(objpfx),$(addsuffix .os,$($(mod)-routines)))\
|
|
$(link-libc-deps)
|
|
$(build-module-asneeded)
|
|
|
|
ifneq (,$(extra-modules-left))
|
|
include extra-module.mk
|
|
endif
|