1 # Makefile for support library, used only at build and test time
2 # Copyright (C) 2016-2023 Free Software Foundation, Inc.
3 # This file is part of the GNU C Library.
5 # The GNU C Library is free software; you can redistribute it and/or
6 # modify it under the terms of the GNU Lesser General Public
7 # License as published by the Free Software Foundation; either
8 # version 2.1 of the License, or (at your option) any later version.
10 # The GNU C Library is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 # Lesser General Public License for more details.
15 # You should have received a copy of the GNU Lesser General Public
16 # License along with the GNU C Library; if not, see
17 # <https://www.gnu.org/licenses/>.
23 extra-libs := libsupport
24 extra-libs-others = $(extra-libs)
25 extra-libs-noinstall := $(extra-libs)
27 libsupport-routines = \
38 resolv_response_context_duplicate \
39 resolv_response_context_free \
44 support-xfstat-time64 \
46 support-xstat-time64 \
49 support_capture_subprocess \
50 support_capture_subprocess_check \
53 support_copy_file_range \
54 support_create_timer \
55 support_descriptor_supports_holes \
57 support_enter_mount_namespace \
58 support_enter_network_namespace \
59 support_format_address_family \
60 support_format_addrinfo \
61 support_format_dns_packet \
62 support_format_herrno \
63 support_format_hostent \
64 support_format_netent \
65 support_isolate_in_subprocess \
66 support_mutex_pi_monotonic \
68 support_path_support_time64 \
69 support_process_state \
71 support-open-dev-null-range \
75 support_quote_blob_wide \
76 support_quote_string \
77 support_record_failure \
79 support_select_modifies_timeout \
80 support_select_normalizes_timeout \
81 support_set_small_thread_stack_size \
82 support_shared_allocate \
83 support_small_stack_thread_attribute \
84 support_socket_so_timestamp_time64 \
85 support_stat_nanoseconds \
87 support_test_compare_blob \
88 support_test_compare_failure \
89 support_test_compare_string \
90 support_test_compare_string_wide \
92 support_test_verify_impl \
93 support_wait_for_thread_exit \
94 support_write_file_string \
101 timespec-sub-time64 \
111 xclock_gettime_time64 \
113 xclock_settime_time64 \
146 xpthread_attr_destroy \
148 xpthread_attr_setdetachstate \
149 xpthread_attr_setguardsize \
150 xpthread_attr_setaffinity_np \
151 xpthread_attr_setstack \
152 xpthread_attr_setstacksize \
153 xpthread_barrier_destroy \
154 xpthread_barrier_init \
155 xpthread_barrier_wait \
156 xpthread_barrierattr_destroy \
157 xpthread_barrierattr_init \
158 xpthread_barrierattr_setpshared \
160 xpthread_check_return \
162 xpthread_cond_signal \
166 xpthread_key_create \
167 xpthread_key_delete \
169 xpthread_mutex_consistent \
170 xpthread_mutex_destroy \
171 xpthread_mutex_init \
172 xpthread_mutex_lock \
173 xpthread_mutex_unlock \
174 xpthread_mutexattr_destroy \
175 xpthread_mutexattr_init \
176 xpthread_mutexattr_setprotocol \
177 xpthread_mutexattr_setpshared \
178 xpthread_mutexattr_setrobust \
179 xpthread_mutexattr_settype \
181 xpthread_rwlock_init \
182 xpthread_rwlock_destroy \
183 xpthread_rwlock_rdlock \
184 xpthread_rwlock_unlock \
185 xpthread_rwlock_wrlock \
186 xpthread_rwlockattr_init \
187 xpthread_rwlockattr_setkind_np \
190 xpthread_spin_unlock \
203 xposix_spawn_file_actions_addclose \
204 xposix_spawn_file_actions_adddup2 \
214 libsupport-static-only-routines := $(libsupport-routines)
215 # Only build one variant of the library.
216 libsupport-inhibit-o := .os
217 ifeq ($(build-shared),yes)
218 libsupport-inhibit-o += .o
221 CFLAGS-support_paths.c = \
222 -DSRCDIR_PATH=\"`cd .. ; pwd`\" \
223 -DOBJDIR_PATH=\"`cd $(objpfx)/..; pwd`\" \
224 -DOBJDIR_ELF_LDSO_PATH=\"`cd $(objpfx)/..; pwd`/elf/$(rtld-installed-name)\" \
225 -DINSTDIR_PATH=\"$(prefix)\" \
226 -DLIBDIR_PATH=\"$(libdir)\" \
227 -DBINDIR_PATH=\"$(bindir)\" \
228 -DSBINDIR_PATH=\"$(sbindir)\" \
229 -DSLIBDIR_PATH=\"$(slibdir)\" \
230 -DROOTSBINDIR_PATH=\"$(rootsbindir)\" \
231 -DCOMPLOCALEDIR_PATH=\"$(complocaledir)\"
233 # In support_timespec_check_in_range we may be passed a very tight
234 # range for which we should produce a correct result for expected
235 # being withing the observed range. The code uses double internally
236 # in support_timespec_check_in_range and for that computation we use
237 # -fexcess-precision=standard.
238 CFLAGS-timespec.c += -fexcess-precision=standard
239 CFLAGS-timespec-time64.c += -fexcess-precision=standard
242 LINKS_DSO_PROGRAM = links-dso-program-c
244 LINKS_DSO_PROGRAM = links-dso-program
245 LDLIBS-links-dso-program = -lstdc++ -lgcc -lgcc_s $(libunwind)
248 ifeq (yes,$(have-selinux))
249 LDLIBS-$(LINKS_DSO_PROGRAM) += -lselinux
253 LDLIBS-test-container = $(libsupport)
255 others += test-container
256 others-noinstall += test-container
258 others += shell-container echo-container true-container
259 others-noinstall += shell-container echo-container true-container
261 others += $(LINKS_DSO_PROGRAM)
262 others-noinstall += $(LINKS_DSO_PROGRAM)
264 others += test-run-command
265 others-static += test-run-command
266 others-noinstall += test-run-command
267 LDLIBS-test-run-command = $(libsupport)
269 $(objpfx)test-container : $(libsupport)
270 $(objpfx)shell-container : $(libsupport)
271 $(objpfx)echo-container : $(libsupport)
272 $(objpfx)true-container : $(libsupport)
273 $(objpfx)test-run-command : $(libsupport) $(common-objpfx)elf/static-stubs.o
277 tst-support-namespace \
278 tst-support-open-dev-null-range \
279 tst-support-process_state \
280 tst-support_blob_repeat \
281 tst-support_capture_subprocess \
282 tst-support_descriptors \
283 tst-support_format_dns_packet \
284 tst-support_quote_blob \
285 tst-support_quote_blob_wide \
286 tst-support_quote_string \
287 tst-support_record_failure \
289 tst-test_compare_blob \
290 tst-test_compare_string \
291 tst-test_compare_string_wide \
296 ifeq ($(run-built-tests),yes)
298 $(objpfx)tst-support_record_failure-2.out
300 $(objpfx)tst-support_record_failure-2.out: tst-support_record_failure-2.sh \
301 $(objpfx)tst-support_record_failure
302 $(SHELL) $< $(common-objpfx) '$(test-program-prefix-before-env)' \
303 '$(run-program-env)' '$(test-program-prefix-after-env)' \
308 tests-special += $(objpfx)tst-glibcpp.out
310 $(objpfx)tst-glibcpp.out: tst-glibcpp.py $(..)scripts/glibcpp.py
311 PYTHONPATH=$(..)scripts $(PYTHON) tst-glibcpp.py > $@ 2>&1; \
314 $(objpfx)tst-support_format_dns_packet: $(common-objpfx)resolv/libresolv.so
316 tst-support_capture_subprocess-ARGS = -- $(host-test-program-cmd)