]> git.ipfire.org Git - thirdparty/glibc.git/blob - support/Makefile
support: Add xclock_gettime
[thirdparty/glibc.git] / support / Makefile
1 # Makefile for support library, used only at build and test time
2 # Copyright (C) 2016-2019 Free Software Foundation, Inc.
3 # This file is part of the GNU C Library.
4
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.
9
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.
14
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 # <http://www.gnu.org/licenses/>.
18
19 subdir := support
20
21 include ../Makeconfig
22
23 extra-libs := libsupport
24 extra-libs-others = $(extra-libs)
25 extra-libs-noinstall := $(extra-libs)
26
27 libsupport-routines = \
28 blob_repeat \
29 check \
30 check_addrinfo \
31 check_dns_packet \
32 check_hostent \
33 check_netent \
34 delayed_exit \
35 ignore_stderr \
36 next_to_fault \
37 oom_error \
38 resolv_test \
39 set_fortify_handler \
40 support-xfstat \
41 support-xstat \
42 support_become_root \
43 support_can_chroot \
44 support_capture_subprocess \
45 support_capture_subprocess_check \
46 support_chroot \
47 support_copy_file_range \
48 support_descriptor_supports_holes \
49 support_descriptors \
50 support_enter_mount_namespace \
51 support_enter_network_namespace \
52 support_format_address_family \
53 support_format_addrinfo \
54 support_format_dns_packet \
55 support_format_herrno \
56 support_format_hostent \
57 support_format_netent \
58 support_isolate_in_subprocess \
59 support_openpty \
60 support_paths \
61 support_quote_blob \
62 support_quote_string \
63 support_record_failure \
64 support_run_diff \
65 support_shared_allocate \
66 support_subprocess \
67 support_test_compare_blob \
68 support_test_compare_failure \
69 support_test_compare_string \
70 support_write_file_string \
71 support_test_main \
72 support_test_verify_impl \
73 temp_file \
74 write_message \
75 xaccept \
76 xaccept4 \
77 xasprintf \
78 xbind \
79 xcalloc \
80 xchroot \
81 xclock_gettime \
82 xclose \
83 xconnect \
84 xcopy_file_range \
85 xdlfcn \
86 xdlmopen \
87 xdup2 \
88 xfclose \
89 xfopen \
90 xfork \
91 xftruncate \
92 xgetsockname \
93 xlisten \
94 xlseek \
95 xmalloc \
96 xmemstream \
97 xmkdir \
98 xmkdirp \
99 xmmap \
100 xmprotect \
101 xmunmap \
102 xopen \
103 xpipe \
104 xpoll \
105 xposix_memalign \
106 xpthread_attr_destroy \
107 xpthread_attr_init \
108 xpthread_attr_setdetachstate \
109 xpthread_attr_setguardsize \
110 xpthread_attr_setstack \
111 xpthread_attr_setstacksize \
112 xpthread_barrier_destroy \
113 xpthread_barrier_init \
114 xpthread_barrier_wait \
115 xpthread_barrierattr_destroy \
116 xpthread_barrierattr_init \
117 xpthread_barrierattr_setpshared \
118 xpthread_cancel \
119 xpthread_check_return \
120 xpthread_cond_wait \
121 xpthread_create \
122 xpthread_detach \
123 xpthread_join \
124 xpthread_mutex_consistent \
125 xpthread_mutex_destroy \
126 xpthread_mutex_init \
127 xpthread_mutex_lock \
128 xpthread_mutex_unlock \
129 xpthread_mutexattr_destroy \
130 xpthread_mutexattr_init \
131 xpthread_mutexattr_setprotocol \
132 xpthread_mutexattr_setpshared \
133 xpthread_mutexattr_setrobust \
134 xpthread_mutexattr_settype \
135 xpthread_once \
136 xpthread_rwlock_init \
137 xpthread_rwlock_destroy \
138 xpthread_rwlock_rdlock \
139 xpthread_rwlock_unlock \
140 xpthread_rwlock_wrlock \
141 xpthread_rwlockattr_init \
142 xpthread_rwlockattr_setkind_np \
143 xpthread_sigmask \
144 xpthread_spin_lock \
145 xpthread_spin_unlock \
146 xraise \
147 xreadlink \
148 xrealloc \
149 xrecvfrom \
150 xsendto \
151 xsetsockopt \
152 xsigaction \
153 xsignal \
154 xsigstack \
155 xsocket \
156 xposix_spawn \
157 xposix_spawn_file_actions_addclose \
158 xposix_spawn_file_actions_adddup2 \
159 xstrdup \
160 xstrndup \
161 xsymlink \
162 xsysconf \
163 xunlink \
164 xwaitpid \
165 xwrite \
166
167 libsupport-static-only-routines := $(libsupport-routines)
168 # Only build one variant of the library.
169 libsupport-inhibit-o := .os
170 ifeq ($(build-shared),yes)
171 libsupport-inhibit-o += .o
172 endif
173
174 CFLAGS-support_paths.c = \
175 -DSRCDIR_PATH=\"`cd .. ; pwd`\" \
176 -DOBJDIR_PATH=\"`cd $(objpfx)/..; pwd`\" \
177 -DOBJDIR_ELF_LDSO_PATH=\"`cd $(objpfx)/..; pwd`/elf/$(rtld-installed-name)\" \
178 -DINSTDIR_PATH=\"$(prefix)\" \
179 -DLIBDIR_PATH=\"$(libdir)\"
180
181 ifeq (,$(CXX))
182 LINKS_DSO_PROGRAM = links-dso-program-c
183 else
184 LINKS_DSO_PROGRAM = links-dso-program
185 LDLIBS-links-dso-program = -lstdc++ -lgcc -lgcc_s $(libunwind)
186 endif
187
188 LDLIBS-test-container = $(libsupport)
189
190 others += test-container
191 others-noinstall += test-container
192
193 others += shell-container echo-container true-container
194 others-noinstall += shell-container echo-container true-container
195
196 others += $(LINKS_DSO_PROGRAM)
197 others-noinstall += $(LINKS_DSO_PROGRAM)
198
199 $(objpfx)test-container : $(libsupport)
200 $(objpfx)shell-container : $(libsupport)
201 $(objpfx)echo-container : $(libsupport)
202 $(objpfx)true-container : $(libsupport)
203
204 tests = \
205 README-testing \
206 tst-support-namespace \
207 tst-support_blob_repeat \
208 tst-support_capture_subprocess \
209 tst-support_descriptors \
210 tst-support_format_dns_packet \
211 tst-support_quote_blob \
212 tst-support_quote_string \
213 tst-support_record_failure \
214 tst-test_compare \
215 tst-test_compare_blob \
216 tst-test_compare_string \
217 tst-xreadlink \
218 tst-xsigstack \
219
220 ifeq ($(run-built-tests),yes)
221 tests-special = \
222 $(objpfx)tst-support_record_failure-2.out
223
224 $(objpfx)tst-support_record_failure-2.out: tst-support_record_failure-2.sh \
225 $(objpfx)tst-support_record_failure
226 $(SHELL) $< $(common-objpfx) '$(test-program-prefix-before-env)' \
227 '$(run-program-env)' '$(test-program-prefix-after-env)' \
228 > $@; \
229 $(evaluate-test)
230 endif
231
232 $(objpfx)tst-support_format_dns_packet: $(common-objpfx)resolv/libresolv.so
233
234 tst-support_capture_subprocess-ARGS = -- $(host-test-program-cmd)
235
236 include ../Rules