diff options
author | Arjun Shankar <arjun.is@lostca.se> | 2017-06-07 11:46:24 +0200 |
---|---|---|
committer | Tulio Magno Quites Machado Filho <tuliom@linux.ibm.com> | 2018-04-06 15:55:10 -0300 |
commit | 1be1845b280cfadff0cbd09170af554549849ffb (patch) | |
tree | 720e77beac8d1e3d3d26bab07a7631ebacee1e80 /Rules | |
parent | 771fb81f98a2be9e96f2a09056617ad93d64959f (diff) | |
download | glibc-1be1845b280cfadff0cbd09170af554549849ffb.zip glibc-1be1845b280cfadff0cbd09170af554549849ffb.tar.gz glibc-1be1845b280cfadff0cbd09170af554549849ffb.tar.bz2 |
Synchronize support/ infrastructure with master
This commit updates the support/ subdirectory to
commit 2714c5f3c95f90977167c1d21326d907fb76b419
on the master branch and modifies Makeconfig,
Rules, and extra-lib.mk accordingly.
(cherry picked from commit 4c5785aa129a5d195fc1cd5c7fcd6f62c2b0ff0c)
Reviewed-by: Carlos O'Donell <carlos@redhat.com>
Diffstat (limited to 'Rules')
-rw-r--r-- | Rules | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -149,6 +149,7 @@ endif ifneq "$(strip $(binaries-shared-tests))" "" $(addprefix $(objpfx),$(binaries-shared-tests)): %: %.o \ + $(link-extra-libs-tests) \ $(sort $(filter $(common-objpfx)lib%,$(link-libc))) \ $(addprefix $(csu-objpfx),start.o) $(+preinit) $(+postinit) $(+link-tests) @@ -156,6 +157,7 @@ endif ifneq "$(strip $(binaries-pie-tests))" "" $(addprefix $(objpfx),$(binaries-pie-tests)): %: %.o \ + $(link-extra-libs-tests) \ $(sort $(filter $(common-objpfx)lib%,$(link-libc))) \ $(addprefix $(csu-objpfx),start.o) $(+preinit) $(+postinit) $(+link-pie-tests) @@ -177,6 +179,7 @@ endif ifneq "$(strip $(binaries-static-tests))" "" $(addprefix $(objpfx),$(binaries-static-tests)): %: %.o \ + $(link-extra-libs-tests) \ $(sort $(filter $(common-objpfx)lib%,$(link-libc-static-tests))) \ $(addprefix $(csu-objpfx),start.o) $(+preinit) $(+postinit) $(+link-static-tests) |