Makefile revision 1.101 1 1.101 christos # $NetBSD: Makefile,v 1.101 2025/10/26 20:48:28 christos Exp $
2 1.9 thorpej #
3 1.9 thorpej
4 1.90 christos NOSANITIZER= # defined
5 1.75 matt WARNS?= 5
6 1.85 pooka LIB= pthread
7 1.24 cl
8 1.9 thorpej .include <bsd.own.mk>
9 1.9 thorpej
10 1.95 brad USE_SHLIBDIR= yes
11 1.95 brad
12 1.55 mrg .if defined(PTHREAD_MACHINE_ARCH) && !empty(PTHREAD_MACHINE_ARCH) && \
13 1.55 mrg exists(${.CURDIR}/arch/${PTHREAD_MACHINE_ARCH})
14 1.55 mrg ARCHSUBDIR= ${PTHREAD_MACHINE_ARCH}
15 1.84 matt .elif defined(PTHREAD_MACHINE_CPU) && !empty(PTHREAD_MACHINE_CPU) && \
16 1.84 matt exists(${.CURDIR}/arch/${PTHREAD_MACHINE_CPU})
17 1.84 matt ARCHSUBDIR= ${PTHREAD_MACHINE_CPU}
18 1.55 mrg .elif exists(${.CURDIR}/arch/${MACHINE_ARCH})
19 1.9 thorpej ARCHSUBDIR= ${MACHINE_ARCH}
20 1.98 rin .elif exists(${.CURDIR}/arch/${MACHINE_CPU})
21 1.9 thorpej ARCHSUBDIR= ${MACHINE_CPU}
22 1.9 thorpej .else
23 1.9 thorpej .BEGIN:
24 1.10 thorpej @echo "WARNING: no ARCHSUBDIR for ${MACHINE_ARCH}/${MACHINE_CPU}; skipping..."
25 1.9 thorpej .endif
26 1.9 thorpej
27 1.10 thorpej INCS= pthread.h pthread_types.h pthread_queue.h
28 1.10 thorpej INCSDIR=/usr/include
29 1.10 thorpej
30 1.9 thorpej .if defined(ARCHSUBDIR)
31 1.9 thorpej
32 1.9 thorpej ARCHDIR= ${.CURDIR}/arch/${ARCHSUBDIR}
33 1.9 thorpej .PATH: ${ARCHDIR}
34 1.9 thorpej
35 1.99 riastrad EXPSYM_SRCS+= pthread_mi.expsym
36 1.99 riastrad . if ${MACHINE_ARCH} == "alpha" || ${MACHINE_ARCH} == "hppa"
37 1.99 riastrad # PTHREAD__ASM_RASOPS
38 1.99 riastrad EXPSYM_SRCS+= pthread_md.expsym
39 1.99 riastrad . else
40 1.99 riastrad # !PTHREAD__ASM_RASOPS
41 1.99 riastrad # XXX These really shouldn't be exported.
42 1.99 riastrad EXPSYM_SRCS+= pthread_ras.expsym
43 1.99 riastrad . endif
44 1.99 riastrad
45 1.99 riastrad LIB_EXPSYM= pthread.expsym
46 1.99 riastrad pthread.expsym: ${EXPSYM_SRCS}
47 1.99 riastrad ${_MKTARGET_CREATE}
48 1.99 riastrad LC_ALL=C sort -m ${.ALLSRC} >${.TARGET}.tmp && \
49 1.99 riastrad ${MV} ${.TARGET}.tmp ${.TARGET}
50 1.99 riastrad CLEANFILES+= pthread.expsym pthread.expsym.tmp
51 1.99 riastrad
52 1.80 christos CPPFLAGS+= -I${ARCHDIR} -I${.CURDIR} -I${.OBJDIR} -D_LIBC -D_REENTRANT
53 1.80 christos CPPFLAGS+= -I${.CURDIR}/../libc/include
54 1.80 christos CPPFLAGS+= -D__LIBPTHREAD_SOURCE__ -D__LIBC_THREAD_STUBS
55 1.9 thorpej
56 1.96 joerg # Since <pthread.h> is not used, allow declaring pthread_create and
57 1.96 joerg # friends locally.
58 1.96 joerg CWARNFLAGS.clang+= -Wno-builtin-requires-header
59 1.96 joerg
60 1.35 christos # XXX: This crappy poke at libc's internals needs to be fixed.
61 1.35 christos CPPFLAGS+=-I${NETBSDSRCDIR}/sys -I${.CURDIR}/../libc
62 1.35 christos
63 1.85 pooka # providing alternative MI implementations for creating an lwp is
64 1.85 pooka # possible by setting PTHREAD_MAKELWP. Currently, alternatives are
65 1.97 lukem # set by the rumprun software stacks (see https://github.com/rumpkernel/rumprun )
66 1.85 pooka PTHREAD_MAKELWP?= pthread_makelwp_netbsd.c
67 1.9 thorpej
68 1.9 thorpej #
69 1.9 thorpej # NOTE: When you create a new file for libpthread, make sure that pthread.c
70 1.9 thorpej # gets a reference to a symbol in that file. Otherwise, Unix's stupid static
71 1.9 thorpej # library semantics will end up discarding potentially important objects.
72 1.9 thorpej #
73 1.98 rin SRCS= pthread.c
74 1.18 nathanw SRCS+= pthread_attr.c
75 1.9 thorpej SRCS+= pthread_barrier.c
76 1.85 pooka # used by rumprun-posix to work around symbol collisions
77 1.85 pooka .if ${PTHREAD_CANCELSTUB:Uyes} != "no"
78 1.9 thorpej SRCS+= pthread_cancelstub.c
79 1.85 pooka .endif
80 1.9 thorpej SRCS+= pthread_cond.c
81 1.86 christos SRCS+= pthread_getcpuclockid.c
82 1.98 rin SRCS+= pthread_lock.c
83 1.85 pooka SRCS+= ${PTHREAD_MAKELWP}
84 1.40 ad SRCS+= pthread_misc.c
85 1.9 thorpej SRCS+= pthread_mutex.c
86 1.74 joerg SRCS+= pthread_once.c
87 1.9 thorpej SRCS+= pthread_rwlock.c
88 1.9 thorpej SRCS+= pthread_specific.c
89 1.42 ad SRCS+= pthread_spin.c
90 1.21 nathanw SRCS+= pthread_tsd.c
91 1.26 christos SRCS+= res_state.c
92 1.91 thorpej .PATH: ${.CURDIR}/../librt
93 1.11 christos SRCS+= sem.c
94 1.9 thorpej # Architecture-dependent files
95 1.56 ad .if exists(${ARCHDIR}/pthread_md.S)
96 1.56 ad SRCS+= pthread_md.S
97 1.9 thorpej .endif
98 1.82 matt .if exists(${ARCHDIR}/Makefile.inc)
99 1.82 matt .include "${ARCHDIR}/Makefile.inc"
100 1.82 matt .endif
101 1.101 christos .include "${.CURDIR}/compat/Makefile.inc"
102 1.21 nathanw
103 1.79 apb # The PTHREAD__COMPAT flag builds a libpthread that can be dropped
104 1.79 apb # into a NetBSD 2/3/4 chroot with a NetBSD 5 or later kernel.
105 1.79 apb # This makes threading work in the chroot, no other modifications
106 1.79 apb # required.
107 1.79 apb #
108 1.53 ad .if defined(PTHREAD__COMPAT)
109 1.53 ad SRCS+= pthread_compat.c
110 1.53 ad .PATH.c: ${.CURDIR}/../../common/lib/libc/arch/${ARCHSUBDIR}/atomic
111 1.53 ad .PATH.S: ${.CURDIR}/../../common/lib/libc/arch/${ARCHSUBDIR}/atomic
112 1.53 ad .PATH.c: ${.CURDIR}/../../common/lib/libc/atomic
113 1.53 ad .PATH.c: ${.CURDIR}/../libc/misc
114 1.53 ad .include "../../common/lib/libc/arch/${ARCHSUBDIR}/atomic/Makefile.inc"
115 1.53 ad .endif
116 1.53 ad
117 1.76 joerg ALIGN_FUNCTIONS= ${${ACTIVE_CC} == "gcc":? -falign-functions=32 :}
118 1.76 joerg
119 1.21 nathanw # The TSD routines are used in the implementation of profiling, and so
120 1.21 nathanw # can't be profiled themselves.
121 1.88 chs COPTS.pthread_specific.c+= ${ALIGN_FUNCTIONS}
122 1.21 nathanw pthread_specific.po: pthread_specific.o
123 1.25 lukem ${_MKTARGET_CREATE}
124 1.21 nathanw cp pthread_specific.o pthread_specific.po
125 1.21 nathanw
126 1.101 christos COPTS.pthread.c += -Wno-stack-protector
127 1.72 christos COPTS.pthread_attr.c += -Wno-format-nonliteral
128 1.45 jnemeth
129 1.100 rillig LINTFLAGS+= -Ac11 # for _Atomic
130 1.100 rillig
131 1.52 rmind MAN+= affinity.3 pthread.3 \
132 1.48 yamt pthread_attr.3 \
133 1.58 jruoho pthread_attr_get_np.3 \
134 1.60 jruoho pthread_attr_getdetachstate.3 \
135 1.62 jruoho pthread_attr_getguardsize.3 \
136 1.63 jruoho pthread_attr_getinheritsched.3 \
137 1.48 yamt pthread_attr_getname_np.3 \
138 1.64 jruoho pthread_attr_getschedparam.3 \
139 1.59 jruoho pthread_attr_getscope.3 \
140 1.61 jruoho pthread_attr_getstack.3 \
141 1.48 yamt pthread_attr_setcreatesuspend_np.3 \
142 1.66 rmind pthread_barrier.3 pthread_barrierattr.3 \
143 1.17 nathanw pthread_cancel.3 pthread_cleanup_push.3 \
144 1.66 rmind pthread_cond.3 pthread_condattr.3 \
145 1.66 rmind pthread_create.3 pthread_detach.3 pthread_equal.3 \
146 1.73 yamt pthread_curcpu_np.3 \
147 1.48 yamt pthread_exit.3 \
148 1.86 christos pthread_getcpuclockid.3 \
149 1.48 yamt pthread_getname_np.3 \
150 1.48 yamt pthread_getspecific.3 pthread_join.3 \
151 1.69 jruoho pthread_key_create.3 pthread_kill.3 \
152 1.66 rmind pthread_mutex.3 pthread_mutexattr.3 \
153 1.66 rmind pthread_once.3 pthread_rwlock.3 pthread_rwlockattr.3 \
154 1.17 nathanw pthread_schedparam.3 pthread_self.3 \
155 1.69 jruoho pthread_sigmask.3 pthread_spin.3 \
156 1.51 rmind pthread_suspend_np.3 pthread_testcancel.3
157 1.17 nathanw
158 1.70 christos MLINKS+= pthread_attr_get_np.3 pthread_getattr_np.3
159 1.52 rmind MLINKS+= affinity.3 pthread_setaffinity_np.3
160 1.52 rmind MLINKS+= affinity.3 pthread_getaffinity_np.3
161 1.57 jruoho
162 1.17 nathanw MLINKS+= pthread_attr.3 pthread_attr_init.3
163 1.17 nathanw MLINKS+= pthread_attr.3 pthread_attr_destroy.3
164 1.59 jruoho
165 1.60 jruoho MLINKS+= pthread_attr_getdetachstate.3 pthread_attr_setdetachstate.3
166 1.62 jruoho MLINKS+= pthread_attr_getguardsize.3 pthread_attr_setguardsize.3
167 1.63 jruoho MLINKS+= pthread_attr_getinheritsched.3 pthread_attr_setinheritsched.3
168 1.68 jruoho MLINKS+= pthread_attr_getname_np.3 pthread_attr_setname_np.3
169 1.67 jruoho
170 1.67 jruoho MLINKS+= pthread_attr_getschedparam.3 pthread_attr_setschedparam.3 \
171 1.67 jruoho pthread_attr_getschedparam.3 pthread_attr_getschedpolicy.3 \
172 1.67 jruoho pthread_attr_getschedparam.3 pthread_attr_setschedpolicy.3
173 1.67 jruoho
174 1.59 jruoho MLINKS+= pthread_attr_getscope.3 pthread_attr_setscope.3
175 1.67 jruoho
176 1.61 jruoho MLINKS+= pthread_attr_getstack.3 pthread_attr_setstack.3 \
177 1.61 jruoho pthread_attr_getstack.3 pthread_attr_getstacksize.3 \
178 1.61 jruoho pthread_attr_getstack.3 pthread_attr_setstacksize.3 \
179 1.61 jruoho pthread_attr_getstack.3 pthread_attr_getstackaddr.3 \
180 1.61 jruoho pthread_attr_getstack.3 pthread_attr_setstackaddr.3
181 1.57 jruoho
182 1.66 rmind MLINKS+= pthread_cleanup_push.3 pthread_cleanup_pop.3
183 1.66 rmind
184 1.66 rmind MLINKS+= pthread_barrier.3 pthread_barrier_init.3
185 1.66 rmind MLINKS+= pthread_barrier.3 pthread_barrier_destroy.3
186 1.66 rmind MLINKS+= pthread_barrier.3 pthread_barrier_wait.3
187 1.66 rmind
188 1.32 peter MLINKS+= pthread_barrierattr.3 pthread_barrierattr_init.3
189 1.32 peter MLINKS+= pthread_barrierattr.3 pthread_barrierattr_destroy.3
190 1.87 christos MLINKS+= pthread_barrierattr.3 pthread_barrierattr_getpshared.3
191 1.87 christos MLINKS+= pthread_barrierattr.3 pthread_barrierattr_setpshared.3
192 1.66 rmind
193 1.66 rmind MLINKS+= pthread_cond.3 pthread_cond_init.3
194 1.66 rmind MLINKS+= pthread_cond.3 pthread_cond_destroy.3
195 1.66 rmind MLINKS+= pthread_cond.3 pthread_cond_broadcast.3
196 1.66 rmind MLINKS+= pthread_cond.3 pthread_cond_wait.3
197 1.66 rmind MLINKS+= pthread_cond.3 pthread_cond_signal.3
198 1.66 rmind MLINKS+= pthread_cond.3 pthread_cond_timedwait.3
199 1.66 rmind
200 1.17 nathanw MLINKS+= pthread_condattr.3 pthread_condattr_init.3
201 1.17 nathanw MLINKS+= pthread_condattr.3 pthread_condattr_destroy.3
202 1.78 riastrad MLINKS+= pthread_condattr.3 pthread_condattr_setclock.3
203 1.87 christos MLINKS+= pthread_condattr.3 pthread_condattr_getclock.3
204 1.87 christos MLINKS+= pthread_condattr.3 pthread_condattr_getpshared.3
205 1.87 christos MLINKS+= pthread_condattr.3 pthread_condattr_setpshared.3
206 1.66 rmind
207 1.68 jruoho MLINKS+= pthread_getname_np.3 pthread_setname_np.3
208 1.69 jruoho MLINKS+= pthread_getspecific.3 pthread_setspecific.3
209 1.69 jruoho MLINKS+= pthread_key_create.3 pthread_key_delete.3
210 1.68 jruoho
211 1.66 rmind MLINKS+= pthread_mutex.3 pthread_mutex_init.3
212 1.66 rmind MLINKS+= pthread_mutex.3 pthread_mutex_destroy.3
213 1.66 rmind MLINKS+= pthread_mutex.3 pthread_mutex_lock.3
214 1.66 rmind MLINKS+= pthread_mutex.3 pthread_mutex_trylock.3
215 1.66 rmind MLINKS+= pthread_mutex.3 pthread_mutex_unlock.3
216 1.87 christos MLINKS+= pthread_mutex.3 pthread_mutex_timedlock.3
217 1.87 christos MLINKS+= pthread_mutex.3 pthread_mutex_getprioceiling.3
218 1.98 rin MLINKS+= pthread_mutex.3 pthread_mutex_setprioceiling.3
219 1.66 rmind
220 1.17 nathanw MLINKS+= pthread_mutexattr.3 pthread_mutexattr_init.3
221 1.17 nathanw MLINKS+= pthread_mutexattr.3 pthread_mutexattr_destroy.3
222 1.87 christos MLINKS+= pthread_mutexattr.3 pthread_mutexattr_getpshared.3
223 1.87 christos MLINKS+= pthread_mutexattr.3 pthread_mutexattr_setpshared.3
224 1.17 nathanw MLINKS+= pthread_mutexattr.3 pthread_mutexattr_settype.3
225 1.17 nathanw MLINKS+= pthread_mutexattr.3 pthread_mutexattr_gettype.3
226 1.87 christos MLINKS+= pthread_mutexattr.3 pthread_mutexattr_getprotocol.3
227 1.87 christos MLINKS+= pthread_mutexattr.3 pthread_mutexattr_setprotocol.3
228 1.87 christos MLINKS+= pthread_mutexattr.3 pthread_mutexattr_getprioceiling.3
229 1.98 rin MLINKS+= pthread_mutexattr.3 pthread_mutexattr_setprioceiling.3
230 1.66 rmind
231 1.66 rmind MLINKS+= pthread_rwlock.3 pthread_rwlock_init.3
232 1.66 rmind MLINKS+= pthread_rwlock.3 pthread_rwlock_destroy.3
233 1.66 rmind MLINKS+= pthread_rwlock.3 pthread_rwlock_rdlock.3
234 1.66 rmind MLINKS+= pthread_rwlock.3 pthread_rwlock_wrlock.3
235 1.66 rmind MLINKS+= pthread_rwlock.3 pthread_rwlock_unlock.3
236 1.66 rmind
237 1.66 rmind MLINKS+= pthread_rwlock.3 pthread_rwlock_timedrdlock.3
238 1.66 rmind MLINKS+= pthread_rwlock.3 pthread_rwlock_timedwrlock.3
239 1.66 rmind MLINKS+= pthread_rwlock.3 pthread_rwlock_tryrdlock.3
240 1.66 rmind MLINKS+= pthread_rwlock.3 pthread_rwlock_trywrlock.3
241 1.66 rmind
242 1.17 nathanw MLINKS+= pthread_rwlockattr.3 pthread_rwlockattr_init.3
243 1.17 nathanw MLINKS+= pthread_rwlockattr.3 pthread_rwlockattr_destroy.3
244 1.87 christos MLINKS+= pthread_rwlockattr.3 pthread_rwlockattr_getpshared.3
245 1.87 christos MLINKS+= pthread_rwlockattr.3 pthread_rwlockattr_setpshared.3
246 1.66 rmind
247 1.66 rmind MLINKS+= pthread_spin.3 pthread_spin_init.3
248 1.66 rmind MLINKS+= pthread_spin.3 pthread_spin_destroy.3
249 1.66 rmind MLINKS+= pthread_spin.3 pthread_spin_lock.3
250 1.66 rmind MLINKS+= pthread_spin.3 pthread_spin_trylock.3
251 1.66 rmind MLINKS+= pthread_spin.3 pthread_spin_unlock.3
252 1.66 rmind
253 1.17 nathanw MLINKS+= pthread_schedparam.3 pthread_setschedparam.3
254 1.17 nathanw MLINKS+= pthread_schedparam.3 pthread_getschedparam.3
255 1.23 christos MLINKS+= pthread_suspend_np.3 pthread_resume_np.3
256 1.17 nathanw MLINKS+= pthread_testcancel.3 pthread_setcancelstate.3
257 1.17 nathanw MLINKS+= pthread_testcancel.3 pthread_setcanceltype.3
258 1.9 thorpej
259 1.92 kamil # ISO C threads (ISO/IEC 9899:2011)
260 1.92 kamil
261 1.92 kamil SRCS+= call_once.c cnd.c mtx.c thrd.c tss.c
262 1.92 kamil MAN+= threads.3 call_once.3 cnd.3 mtx.3 thrd.3 tss.3
263 1.92 kamil
264 1.92 kamil MLINKS+= call_once.3 ONCE_FLAG_INIT.3
265 1.92 kamil MLINKS+= call_once.3 once_flag.3
266 1.92 kamil
267 1.92 kamil MLINKS+= cnd.3 cnd_broadcast.3
268 1.92 kamil MLINKS+= cnd.3 cnd_destroy.3
269 1.92 kamil MLINKS+= cnd.3 cnd_init.3
270 1.92 kamil MLINKS+= cnd.3 cnd_signal.3
271 1.92 kamil MLINKS+= cnd.3 cnd_timedwait.3
272 1.92 kamil MLINKS+= cnd.3 cnd_wait.3
273 1.92 kamil
274 1.92 kamil MLINKS+= mtx.3 mtx_destroy.3
275 1.92 kamil MLINKS+= mtx.3 mtx_init.3
276 1.92 kamil MLINKS+= mtx.3 mtx_lock.3
277 1.92 kamil MLINKS+= mtx.3 mtx_timedlock.3
278 1.92 kamil MLINKS+= mtx.3 mtx_trylock.3
279 1.92 kamil MLINKS+= mtx.3 mtx_unlock.3
280 1.92 kamil
281 1.92 kamil MLINKS+= thrd.3 thrd_create.3
282 1.92 kamil MLINKS+= thrd.3 thrd_current.3
283 1.92 kamil MLINKS+= thrd.3 thrd_detach.3
284 1.92 kamil MLINKS+= thrd.3 thrd_equal.3
285 1.92 kamil MLINKS+= thrd.3 thrd_exit.3
286 1.92 kamil MLINKS+= thrd.3 thrd_join.3
287 1.92 kamil MLINKS+= thrd.3 thrd_sleep.3
288 1.92 kamil MLINKS+= thrd.3 thrd_yield.3
289 1.92 kamil
290 1.92 kamil MLINKS+= tss.3 TSS_DTOR_ITERATIONS.3
291 1.92 kamil MLINKS+= tss.3 tss_create.3
292 1.92 kamil MLINKS+= tss.3 tss_delete.3
293 1.92 kamil MLINKS+= tss.3 tss_get.3
294 1.92 kamil MLINKS+= tss.3 tss_set.3
295 1.92 kamil
296 1.92 kamil INCS+= threads.h
297 1.92 kamil
298 1.93 maya # PR lib/54001: create libpthread.a as a single large object, with all the
299 1.93 maya # symbols in one section. ensures that if any libpthread function is used,
300 1.93 maya # you get all of them from libpthread, and not the libc stubs.
301 1.93 maya #
302 1.93 maya # This makes -lpthread equivalent to -Wl,--whole-archive -lpthread
303 1.93 maya
304 1.93 maya __archivebuild: .USE
305 1.93 maya ${_MKTARGET_BUILD}
306 1.93 maya @rm -f ${.TARGET}
307 1.93 maya ${LD} -r -o ${.TARGET}.o `NM=${NM} ${LORDER} ${.ALLSRC:M*o} | ${TSORT}`
308 1.93 maya ${AR} ${_ARFL} ${.TARGET} ${.TARGET}.o
309 1.93 maya
310 1.94 maya CLEANFILES+= ${_LIBS:=.o}
311 1.93 maya
312 1.1 proven .include <bsd.lib.mk>
313 1.1 proven
314 1.9 thorpej .else
315 1.9 thorpej
316 1.9 thorpej .include <bsd.man.mk>
317 1.10 thorpej .include <bsd.files.mk>
318 1.10 thorpej .include <bsd.inc.mk>
319 1.9 thorpej
320 1.9 thorpej .endif
321 1.9 thorpej
322 1.9 thorpej # WARNS=2 sets -Wcast-qual. This causes problems for one of
323 1.9 thorpej # pthread_setspecific() and pthread_getspecific(), since the constness
324 1.9 thorpej # of the argument to setspecific() has to be discarded *somewhere*
325 1.9 thorpej # before returning it from getspecific().
326 1.77 matt CWARNFLAGS+= -Wno-cast-qual
327