mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-23 11:20:07 +00:00
a5f891ac8d
In <https://sourceware.org/ml/libc-alpha/2014-01/msg00196.html> I noted it was necessary to add includes of Makeconfig early in various subdirectory makefiles for the tests-special variable settings added by that patch to be conditional on configuration information. No-one commented on the general question there of whether Makeconfig should always be included immediately after the definition of subdir. This patch implements that early inclusion of Makeconfig in each directory (which is a lot easier than consistent placement of includes of Rules). Includes are added if needed, or moved up if already present. Subdirectory "all:" targets are removed, since Makeconfig provides one. There is potential for further cleanups I haven't done. Rules and Makerules have code such as ifneq "$(findstring env,$(origin headers))" "" headers := endif to override to empty any value of various variables that came from the environment. I think there is a case for Makeconfig setting all the subdirectory variables (other than subdir) to empty to ensure no outside value is going to take effect if a subdirectory fails to define a variable. (A list of such variables, possibly out of date and incomplete, is in manual/maint.texi.) Rules and Makerules would give errors if Makeconfig hadn't already been included, instead of including it themselves. The special code to override values coming from the environment would then be obsolete and could be removed. Tested x86_64, including that installed binaries are identical before and after the patch. * argp/Makefile: Include Makeconfig immediately after defining subdir. * assert/Makefile: Likewise. * benchtests/Makefile: Likewise. * catgets/Makefile: Likewise. * conform/Makefile: Likewise. * crypt/Makefile: Likewise. * csu/Makefile: Likewise. (all): Remove target. * ctype/Makefile: Include Makeconfig immediately after defining subdir. * debug/Makefile: Likewise. * dirent/Makefile: Likewise. * dlfcn/Makefile: Likewise. * gmon/Makefile: Likewise. * gnulib/Makefile: Likewise. * grp/Makefile: Likewise. * gshadow/Makefile: Likewise. * hesiod/Makefile: Likewise. * hurd/Makefile: Likewise. (all): Remove target. * iconvdata/Makefile: Include Makeconfig immediately after defining subdir. * inet/Makefile: Likewise. * intl/Makefile: Likewise. * io/Makefile: Likewise. * libio/Makefile: Likewise. (all): Remove target. * locale/Makefile: Include Makeconfig immediately after defining subdir. * login/Makefile: Likewise. * mach/Makefile: Likewise. (all): Remove target. * malloc/Makefile: Include Makeconfig immediately after defining subdir. (all): Remove target. * manual/Makefile: Include Makeconfig immediately after defining subdir. * math/Makefile: Likewise. * misc/Makefile: Likewise. * nis/Makefile: Likewise. * nss/Makefile: Likewise. * po/Makefile: Likewise. (all): Remove target. * posix/Makefile: Include Makeconfig immediately after defining subdir. * pwd/Makefile: Likewise. * resolv/Makefile: Likewise. * resource/Makefile: Likewise. * rt/Makefile: Likewise. * setjmp/Makefile: Likewise. * shadow/Makefile: Likewise. * signal/Makefile: Likewise. * socket/Makefile: Likewise. * soft-fp/Makefile: Likewise. * stdio-common/Makefile: Likewise. * stdlib/Makefile: Likewise. * streams/Makefile: Likewise. * string/Makefile: Likewise. * sunrpc/Makefile: Likewise. (all): Remove target. * sysvipc/Makefile: Include Makeconfig immediately after defining subdir. * termios/Makefile: Likewise. * time/Makefile: Likewise. * timezone/Makefile: Likewise. (all): Remove target. * wcsmbs/Makefile: Include Makeconfig immediately after defining subdir. * wctype/Makefile: Likewise. libidn/ChangeLog: * Makefile: Include Makeconfig immediately after defining subdir. localedata/ChangeLog: * Makefile: Include Makeconfig immediately after defining subdir. (all): Remove target. nptl/ChangeLog: * Makefile: Include Makeconfig immediately after defining subdir. nptl_db/ChangeLog: * Makefile: Include Makeconfig immediately after defining subdir.
142 lines
4.6 KiB
Makefile
142 lines
4.6 KiB
Makefile
# Copyright (C) 1995-2014 Free Software Foundation, Inc.
|
|
# This file is part of the GNU C Library.
|
|
|
|
# The GNU C Library is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU Lesser General Public
|
|
# License as published by the Free Software Foundation; either
|
|
# version 2.1 of the License, or (at your option) any later version.
|
|
|
|
# The GNU C Library is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
# Lesser General Public License for more details.
|
|
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
# License along with the GNU C Library; if not, see
|
|
# <http://www.gnu.org/licenses/>.
|
|
|
|
subdir := dlfcn
|
|
|
|
include ../Makeconfig
|
|
|
|
headers := bits/dlfcn.h dlfcn.h
|
|
extra-libs := libdl
|
|
libdl-routines := dlopen dlclose dlsym dlvsym dlerror dladdr dladdr1 dlinfo \
|
|
dlmopen dlfcn
|
|
routines := $(patsubst %,s%,$(filter-out dlfcn,$(libdl-routines)))
|
|
elide-routines.os := $(routines)
|
|
|
|
extra-libs-others := libdl
|
|
|
|
ifeq ($(build-shared),yes)
|
|
libdl-routines += dlopenold
|
|
libdl-shared-only-routines := dlopenold dlfcn
|
|
endif
|
|
|
|
ifeq (yes,$(build-shared))
|
|
tests = glrefmain failtest tst-dladdr default errmsg1 tstcxaatexit \
|
|
bug-dlopen1 bug-dlsym1 tst-dlinfo bug-atexit1 bug-atexit2 \
|
|
bug-atexit3 tstatexit bug-dl-leaf
|
|
endif
|
|
modules-names = glreflib1 glreflib2 glreflib3 failtestmod defaultmod1 \
|
|
defaultmod2 errmsg1mod modatexit modcxaatexit \
|
|
bug-dlsym1-lib1 bug-dlsym1-lib2 bug-atexit1-lib \
|
|
bug-atexit2-lib bug-atexit3-lib bug-dl-leaf-lib \
|
|
bug-dl-leaf-lib-cb
|
|
|
|
failtestmod.so-no-z-defs = yes
|
|
glreflib2.so-no-z-defs = yes
|
|
errmsg1mod.so-no-z-defs = yes
|
|
|
|
ifeq (yes,$(build-shared))
|
|
tests += tststatic tststatic2 tststatic3 tststatic4 tststatic5
|
|
tests-static += tststatic tststatic2 tststatic3 tststatic4 tststatic5
|
|
modules-names += modstatic modstatic2 modstatic3 modstatic5
|
|
tststatic-ENV = LD_LIBRARY_PATH=$(objpfx):$(common-objpfx):$(common-objpfx)elf
|
|
tststatic2-ENV = $(tststatic-ENV)
|
|
tststatic3-ENV = $(tststatic-ENV)
|
|
tststatic4-ENV = $(tststatic-ENV)
|
|
tststatic5-ENV = $(tststatic-ENV)
|
|
endif
|
|
|
|
extra-test-objs += $(modules-names:=.os)
|
|
generated := $(modules-names:=.so)
|
|
|
|
include ../Rules
|
|
|
|
test-modules = $(addprefix $(objpfx),$(addsuffix .so,$(modules-names)))
|
|
|
|
ifeq ($(build-shared),yes)
|
|
# Build all the modules even when not actually running test programs.
|
|
tests: $(test-modules)
|
|
endif
|
|
|
|
$(objpfx)glrefmain: $(libdl)
|
|
$(objpfx)glrefmain.out: $(objpfx)glrefmain \
|
|
$(objpfx)glreflib1.so $(objpfx)glreflib2.so
|
|
|
|
$(objpfx)failtest: $(libdl)
|
|
$(objpfx)failtest.out: $(objpfx)failtestmod.so
|
|
|
|
$(objpfx)tst-dladdr: $(libdl)
|
|
$(objpfx)tst-dladdr.out: $(objpfx)glreflib1.so
|
|
|
|
$(objpfx)tst-dlinfo: $(libdl)
|
|
$(objpfx)tst-dlinfo.out: $(objpfx)glreflib3.so
|
|
LDFLAGS-glreflib3.so = -Wl,-rpath,:
|
|
|
|
LDFLAGS-default = $(LDFLAGS-rdynamic)
|
|
$(objpfx)default: $(libdl) $(objpfx)defaultmod1.so $(objpfx)defaultmod2.so
|
|
$(objpfx)defaultmod1.so: $(libdl)
|
|
LDFLAGS-defaultmod2.so = $(LDFLAGS-Bsymbolic)
|
|
$(objpfx)defaultmod2.so: $(libdl)
|
|
|
|
$(objpfx)errmsg1: $(libdl)
|
|
$(objpfx)errmsg1.out: $(objpfx)errmsg1 $(objpfx)errmsg1mod.so
|
|
|
|
$(objpfx)tstatexit: $(libdl)
|
|
$(objpfx)tstatexit.out: $(objpfx)tstatexit $(objpfx)modatexit.so
|
|
|
|
$(objpfx)tstcxaatexit: $(libdl)
|
|
$(objpfx)tstcxaatexit.out: $(objpfx)tstcxaatexit $(objpfx)modcxaatexit.so
|
|
|
|
$(objpfx)tststatic: $(objpfx)libdl.a
|
|
$(objpfx)tststatic.out: $(objpfx)tststatic $(objpfx)modstatic.so
|
|
|
|
$(objpfx)tststatic2: $(objpfx)libdl.a
|
|
$(objpfx)tststatic2.out: $(objpfx)tststatic2 $(objpfx)modstatic.so \
|
|
$(objpfx)modstatic2.so
|
|
|
|
$(objpfx)modstatic2.so: $(libdl)
|
|
|
|
$(objpfx)tststatic3: $(objpfx)libdl.a
|
|
$(objpfx)tststatic3.out: $(objpfx)tststatic3 $(objpfx)modstatic3.so
|
|
|
|
$(objpfx)tststatic4: $(objpfx)libdl.a
|
|
$(objpfx)tststatic4.out: $(objpfx)tststatic4 $(objpfx)modstatic3.so
|
|
|
|
$(objpfx)tststatic5: $(objpfx)libdl.a
|
|
$(objpfx)tststatic5.out: $(objpfx)tststatic5 $(objpfx)modstatic5.so
|
|
|
|
$(objpfx)bug-dlopen1: $(libdl)
|
|
|
|
$(objpfx)bug-dlsym1: $(libdl) $(objpfx)bug-dlsym1-lib2.so
|
|
$(objpfx)bug-dlsym1.out: $(objpfx)bug-dlsym1-lib1.so \
|
|
$(objpfx)bug-dlsym1-lib2.so
|
|
$(objpfx)bug-dlsym1-lib1.so: $(objpfx)bug-dlsym1-lib2.so
|
|
|
|
$(objpfx)bug-atexit1: $(libdl)
|
|
$(objpfx)bug-atexit1.out: $(objpfx)bug-atexit1-lib.so
|
|
|
|
$(objpfx)bug-atexit2: $(libdl)
|
|
$(objpfx)bug-atexit2.out: $(objpfx)bug-atexit2-lib.so
|
|
|
|
LDLIBS-bug-atexit3-lib.so = -lstdc++ -lgcc_eh
|
|
$(objpfx)bug-atexit3: $(libdl)
|
|
$(objpfx)bug-atexit3.out: $(objpfx)bug-atexit3-lib.so
|
|
|
|
$(objpfx)bug-dl-leaf: $(objpfx)bug-dl-leaf-lib.so
|
|
$(objpfx)bug-dl-leaf.out: $(objpfx)bug-dl-leaf-lib-cb.so
|
|
$(objpfx)bug-dl-leaf-lib.so: $(libdl)
|
|
$(objpfx)bug-dl-leaf-lib-cb.so: $(objpfx)bug-dl-leaf-lib.so
|