Makefile revision 1.87
11.87Schristos# $NetBSD: Makefile,v 1.87 2016/07/03 14:24:58 christos Exp $ 21.9Sthorpej# 31.9Sthorpej 41.75SmattWARNS?= 5 51.85SpookaLIB= pthread 61.24Scl 71.9Sthorpej.include <bsd.own.mk> 81.9Sthorpej 91.55Smrg.if defined(PTHREAD_MACHINE_ARCH) && !empty(PTHREAD_MACHINE_ARCH) && \ 101.55Smrg exists(${.CURDIR}/arch/${PTHREAD_MACHINE_ARCH}) 111.55SmrgARCHSUBDIR= ${PTHREAD_MACHINE_ARCH} 121.84Smatt.elif defined(PTHREAD_MACHINE_CPU) && !empty(PTHREAD_MACHINE_CPU) && \ 131.84Smatt exists(${.CURDIR}/arch/${PTHREAD_MACHINE_CPU}) 141.84SmattARCHSUBDIR= ${PTHREAD_MACHINE_CPU} 151.55Smrg.elif exists(${.CURDIR}/arch/${MACHINE_ARCH}) 161.9SthorpejARCHSUBDIR= ${MACHINE_ARCH} 171.9Sthorpej.elif exists(${.CURDIR}/arch/${MACHINE_CPU}) 181.9SthorpejARCHSUBDIR= ${MACHINE_CPU} 191.9Sthorpej.else 201.9Sthorpej.BEGIN: 211.10Sthorpej @echo "WARNING: no ARCHSUBDIR for ${MACHINE_ARCH}/${MACHINE_CPU}; skipping..." 221.9Sthorpej.endif 231.9Sthorpej 241.10SthorpejINCS= pthread.h pthread_types.h pthread_queue.h 251.10SthorpejINCSDIR=/usr/include 261.10Sthorpej 271.9Sthorpej.if defined(ARCHSUBDIR) 281.9Sthorpej 291.9SthorpejARCHDIR= ${.CURDIR}/arch/${ARCHSUBDIR} 301.9Sthorpej.PATH: ${ARCHDIR} 311.9Sthorpej 321.80SchristosCPPFLAGS+= -I${ARCHDIR} -I${.CURDIR} -I${.OBJDIR} -D_LIBC -D_REENTRANT 331.80SchristosCPPFLAGS+= -I${.CURDIR}/../libc/include 341.80SchristosCPPFLAGS+= -D__LIBPTHREAD_SOURCE__ -D__LIBC_THREAD_STUBS 351.9Sthorpej 361.35Schristos# XXX: This crappy poke at libc's internals needs to be fixed. 371.35SchristosCPPFLAGS+=-I${NETBSDSRCDIR}/sys -I${.CURDIR}/../libc 381.35Schristos 391.85Spooka# providing alternative MI implementations for creating an lwp is 401.85Spooka# possible by setting PTHREAD_MAKELWP. Currently, alternatives are 411.85Spooka# set by the rumprun software stacks (see repo.rumpkernel.org) 421.85SpookaPTHREAD_MAKELWP?= pthread_makelwp_netbsd.c 431.9Sthorpej 441.9Sthorpej# 451.9Sthorpej# NOTE: When you create a new file for libpthread, make sure that pthread.c 461.9Sthorpej# gets a reference to a symbol in that file. Otherwise, Unix's stupid static 471.9Sthorpej# library semantics will end up discarding potentially important objects. 481.9Sthorpej# 491.9SthorpejSRCS= pthread.c 501.18SnathanwSRCS+= pthread_attr.c 511.9SthorpejSRCS+= pthread_barrier.c 521.85Spooka# used by rumprun-posix to work around symbol collisions 531.85Spooka.if ${PTHREAD_CANCELSTUB:Uyes} != "no" 541.9SthorpejSRCS+= pthread_cancelstub.c 551.85Spooka.endif 561.9SthorpejSRCS+= pthread_cond.c 571.86SchristosSRCS+= pthread_getcpuclockid.c 581.9SthorpejSRCS+= pthread_lock.c 591.85SpookaSRCS+= ${PTHREAD_MAKELWP} 601.40SadSRCS+= pthread_misc.c 611.9SthorpejSRCS+= pthread_mutex.c 621.74SjoergSRCS+= pthread_once.c 631.9SthorpejSRCS+= pthread_rwlock.c 641.9SthorpejSRCS+= pthread_specific.c 651.42SadSRCS+= pthread_spin.c 661.21SnathanwSRCS+= pthread_tsd.c 671.26SchristosSRCS+= res_state.c 681.11SchristosSRCS+= sem.c 691.9Sthorpej# Architecture-dependent files 701.56Sad.if exists(${ARCHDIR}/pthread_md.S) 711.56SadSRCS+= pthread_md.S 721.9Sthorpej.endif 731.82Smatt.if exists(${ARCHDIR}/Makefile.inc) 741.82Smatt.include "${ARCHDIR}/Makefile.inc" 751.82Smatt.endif 761.21Snathanw 771.79Sapb# The PTHREAD__COMPAT flag builds a libpthread that can be dropped 781.79Sapb# into a NetBSD 2/3/4 chroot with a NetBSD 5 or later kernel. 791.79Sapb# This makes threading work in the chroot, no other modifications 801.79Sapb# required. 811.79Sapb# 821.53Sad.if defined(PTHREAD__COMPAT) 831.53SadSRCS+= pthread_compat.c 841.53Sad.PATH.c: ${.CURDIR}/../../common/lib/libc/arch/${ARCHSUBDIR}/atomic 851.53Sad.PATH.S: ${.CURDIR}/../../common/lib/libc/arch/${ARCHSUBDIR}/atomic 861.53Sad.PATH.c: ${.CURDIR}/../../common/lib/libc/atomic 871.53Sad.PATH.c: ${.CURDIR}/../libc/misc 881.53Sad.include "../../common/lib/libc/arch/${ARCHSUBDIR}/atomic/Makefile.inc" 891.53Sad.endif 901.53Sad 911.76SjoergALIGN_FUNCTIONS= ${${ACTIVE_CC} == "gcc":? -falign-functions=32 :} 921.76Sjoerg 931.83Smatt.if ${MACHINE_CPU} != "m68k" && ${MACHINE_CPU} != "sh3" && ${MACHINE_ARCH} != "vax" 941.83SmattOMIT_FRAME_POINTER= -fomit-frame-pointer 951.83Smatt.else 961.81SjoergOMIT_FRAME_POINTER= 971.81Sjoerg.endif 981.81Sjoerg 991.21Snathanw# The TSD routines are used in the implementation of profiling, and so 1001.21Snathanw# can't be profiled themselves. 1011.81SjoergCOPTS.pthread_specific.c+= ${OMIT_FRAME_POINTER} ${ALIGN_FUNCTIONS} 1021.21Snathanwpthread_specific.po: pthread_specific.o 1031.25Slukem ${_MKTARGET_CREATE} 1041.21Snathanw cp pthread_specific.o pthread_specific.po 1051.21Snathanw 1061.42Sad# Internal spinlock routines are performance critical. Don't profile them, 1071.42Sad# it's incompatibile with -fomit-frame-pointer. 1081.81SjoergCOPTS.pthread_lock.c+= ${OMIT_FRAME_POINTER} ${ALIGN_FUNCTIONS} 1091.42Sadpthread_lock.po: pthread_lock.o 1101.42Sad ${_MKTARGET_CREATE} 1111.42Sad cp pthread_lock.o pthread_lock.po 1121.42Sad 1131.81SjoergCOPTS.pthread_mutex.c+= ${OMIT_FRAME_POINTER} ${ALIGN_FUNCTIONS} 1141.50Sadpthread_mutex.po: pthread_mutex.o 1151.46Sad ${_MKTARGET_CREATE} 1161.50Sad cp pthread_mutex.o pthread_mutex.po 1171.46Sad 1181.72SchristosCOPTS.pthread.c += -Wno-stack-protector -Wno-format-nonliteral 1191.72SchristosCOPTS.pthread_attr.c += -Wno-format-nonliteral 1201.45Sjnemeth 1211.52SrmindMAN+= affinity.3 pthread.3 \ 1221.48Syamt pthread_attr.3 \ 1231.58Sjruoho pthread_attr_get_np.3 \ 1241.60Sjruoho pthread_attr_getdetachstate.3 \ 1251.62Sjruoho pthread_attr_getguardsize.3 \ 1261.63Sjruoho pthread_attr_getinheritsched.3 \ 1271.48Syamt pthread_attr_getname_np.3 \ 1281.64Sjruoho pthread_attr_getschedparam.3 \ 1291.59Sjruoho pthread_attr_getscope.3 \ 1301.61Sjruoho pthread_attr_getstack.3 \ 1311.48Syamt pthread_attr_setcreatesuspend_np.3 \ 1321.66Srmind pthread_barrier.3 pthread_barrierattr.3 \ 1331.17Snathanw pthread_cancel.3 pthread_cleanup_push.3 \ 1341.66Srmind pthread_cond.3 pthread_condattr.3 \ 1351.66Srmind pthread_create.3 pthread_detach.3 pthread_equal.3 \ 1361.73Syamt pthread_curcpu_np.3 \ 1371.48Syamt pthread_exit.3 \ 1381.86Schristos pthread_getcpuclockid.3 \ 1391.48Syamt pthread_getname_np.3 \ 1401.48Syamt pthread_getspecific.3 pthread_join.3 \ 1411.69Sjruoho pthread_key_create.3 pthread_kill.3 \ 1421.66Srmind pthread_mutex.3 pthread_mutexattr.3 \ 1431.66Srmind pthread_once.3 pthread_rwlock.3 pthread_rwlockattr.3 \ 1441.17Snathanw pthread_schedparam.3 pthread_self.3 \ 1451.69Sjruoho pthread_sigmask.3 pthread_spin.3 \ 1461.51Srmind pthread_suspend_np.3 pthread_testcancel.3 1471.17Snathanw 1481.70SchristosMLINKS+= pthread_attr_get_np.3 pthread_getattr_np.3 1491.52SrmindMLINKS+= affinity.3 pthread_setaffinity_np.3 1501.52SrmindMLINKS+= affinity.3 pthread_getaffinity_np.3 1511.57Sjruoho 1521.17SnathanwMLINKS+= pthread_attr.3 pthread_attr_init.3 1531.17SnathanwMLINKS+= pthread_attr.3 pthread_attr_destroy.3 1541.59Sjruoho 1551.60SjruohoMLINKS+= pthread_attr_getdetachstate.3 pthread_attr_setdetachstate.3 1561.62SjruohoMLINKS+= pthread_attr_getguardsize.3 pthread_attr_setguardsize.3 1571.63SjruohoMLINKS+= pthread_attr_getinheritsched.3 pthread_attr_setinheritsched.3 1581.68SjruohoMLINKS+= pthread_attr_getname_np.3 pthread_attr_setname_np.3 1591.67Sjruoho 1601.67SjruohoMLINKS+= pthread_attr_getschedparam.3 pthread_attr_setschedparam.3 \ 1611.67Sjruoho pthread_attr_getschedparam.3 pthread_attr_getschedpolicy.3 \ 1621.67Sjruoho pthread_attr_getschedparam.3 pthread_attr_setschedpolicy.3 1631.67Sjruoho 1641.59SjruohoMLINKS+= pthread_attr_getscope.3 pthread_attr_setscope.3 1651.67Sjruoho 1661.61SjruohoMLINKS+= pthread_attr_getstack.3 pthread_attr_setstack.3 \ 1671.61Sjruoho pthread_attr_getstack.3 pthread_attr_getstacksize.3 \ 1681.61Sjruoho pthread_attr_getstack.3 pthread_attr_setstacksize.3 \ 1691.61Sjruoho pthread_attr_getstack.3 pthread_attr_getstackaddr.3 \ 1701.61Sjruoho pthread_attr_getstack.3 pthread_attr_setstackaddr.3 1711.57Sjruoho 1721.66SrmindMLINKS+= pthread_cleanup_push.3 pthread_cleanup_pop.3 1731.66Srmind 1741.66SrmindMLINKS+= pthread_barrier.3 pthread_barrier_init.3 1751.66SrmindMLINKS+= pthread_barrier.3 pthread_barrier_destroy.3 1761.66SrmindMLINKS+= pthread_barrier.3 pthread_barrier_wait.3 1771.66Srmind 1781.32SpeterMLINKS+= pthread_barrierattr.3 pthread_barrierattr_init.3 1791.32SpeterMLINKS+= pthread_barrierattr.3 pthread_barrierattr_destroy.3 1801.87SchristosMLINKS+= pthread_barrierattr.3 pthread_barrierattr_getpshared.3 1811.87SchristosMLINKS+= pthread_barrierattr.3 pthread_barrierattr_setpshared.3 1821.66Srmind 1831.66SrmindMLINKS+= pthread_cond.3 pthread_cond_init.3 1841.66SrmindMLINKS+= pthread_cond.3 pthread_cond_destroy.3 1851.66SrmindMLINKS+= pthread_cond.3 pthread_cond_broadcast.3 1861.66SrmindMLINKS+= pthread_cond.3 pthread_cond_wait.3 1871.66SrmindMLINKS+= pthread_cond.3 pthread_cond_signal.3 1881.66SrmindMLINKS+= pthread_cond.3 pthread_cond_timedwait.3 1891.66Srmind 1901.17SnathanwMLINKS+= pthread_condattr.3 pthread_condattr_init.3 1911.17SnathanwMLINKS+= pthread_condattr.3 pthread_condattr_destroy.3 1921.78SriastradMLINKS+= pthread_condattr.3 pthread_condattr_setclock.3 1931.87SchristosMLINKS+= pthread_condattr.3 pthread_condattr_getclock.3 1941.87SchristosMLINKS+= pthread_condattr.3 pthread_condattr_getpshared.3 1951.87SchristosMLINKS+= pthread_condattr.3 pthread_condattr_setpshared.3 1961.66Srmind 1971.68SjruohoMLINKS+= pthread_getname_np.3 pthread_setname_np.3 1981.69SjruohoMLINKS+= pthread_getspecific.3 pthread_setspecific.3 1991.69SjruohoMLINKS+= pthread_key_create.3 pthread_key_delete.3 2001.68Sjruoho 2011.66SrmindMLINKS+= pthread_mutex.3 pthread_mutex_init.3 2021.66SrmindMLINKS+= pthread_mutex.3 pthread_mutex_destroy.3 2031.66SrmindMLINKS+= pthread_mutex.3 pthread_mutex_lock.3 2041.66SrmindMLINKS+= pthread_mutex.3 pthread_mutex_trylock.3 2051.66SrmindMLINKS+= pthread_mutex.3 pthread_mutex_unlock.3 2061.87SchristosMLINKS+= pthread_mutex.3 pthread_mutex_timedlock.3 2071.87SchristosMLINKS+= pthread_mutex.3 pthread_mutex_getprioceiling.3 2081.87SchristosMLINKS+= pthread_mutex.3 pthread_mutex_setprioceiling.3 2091.66Srmind 2101.17SnathanwMLINKS+= pthread_mutexattr.3 pthread_mutexattr_init.3 2111.17SnathanwMLINKS+= pthread_mutexattr.3 pthread_mutexattr_destroy.3 2121.87SchristosMLINKS+= pthread_mutexattr.3 pthread_mutexattr_getpshared.3 2131.87SchristosMLINKS+= pthread_mutexattr.3 pthread_mutexattr_setpshared.3 2141.17SnathanwMLINKS+= pthread_mutexattr.3 pthread_mutexattr_settype.3 2151.17SnathanwMLINKS+= pthread_mutexattr.3 pthread_mutexattr_gettype.3 2161.87SchristosMLINKS+= pthread_mutexattr.3 pthread_mutexattr_getprotocol.3 2171.87SchristosMLINKS+= pthread_mutexattr.3 pthread_mutexattr_setprotocol.3 2181.87SchristosMLINKS+= pthread_mutexattr.3 pthread_mutexattr_getprioceiling.3 2191.87SchristosMLINKS+= pthread_mutexattr.3 pthread_mutexattr_setprioceiling.3 2201.66Srmind 2211.66SrmindMLINKS+= pthread_rwlock.3 pthread_rwlock_init.3 2221.66SrmindMLINKS+= pthread_rwlock.3 pthread_rwlock_destroy.3 2231.66SrmindMLINKS+= pthread_rwlock.3 pthread_rwlock_rdlock.3 2241.66SrmindMLINKS+= pthread_rwlock.3 pthread_rwlock_wrlock.3 2251.66SrmindMLINKS+= pthread_rwlock.3 pthread_rwlock_unlock.3 2261.66Srmind 2271.66SrmindMLINKS+= pthread_rwlock.3 pthread_rwlock_timedrdlock.3 2281.66SrmindMLINKS+= pthread_rwlock.3 pthread_rwlock_timedwrlock.3 2291.66SrmindMLINKS+= pthread_rwlock.3 pthread_rwlock_tryrdlock.3 2301.66SrmindMLINKS+= pthread_rwlock.3 pthread_rwlock_trywrlock.3 2311.66Srmind 2321.17SnathanwMLINKS+= pthread_rwlockattr.3 pthread_rwlockattr_init.3 2331.17SnathanwMLINKS+= pthread_rwlockattr.3 pthread_rwlockattr_destroy.3 2341.87SchristosMLINKS+= pthread_rwlockattr.3 pthread_rwlockattr_getpshared.3 2351.87SchristosMLINKS+= pthread_rwlockattr.3 pthread_rwlockattr_setpshared.3 2361.66Srmind 2371.66SrmindMLINKS+= pthread_spin.3 pthread_spin_init.3 2381.66SrmindMLINKS+= pthread_spin.3 pthread_spin_destroy.3 2391.66SrmindMLINKS+= pthread_spin.3 pthread_spin_lock.3 2401.66SrmindMLINKS+= pthread_spin.3 pthread_spin_trylock.3 2411.66SrmindMLINKS+= pthread_spin.3 pthread_spin_unlock.3 2421.66Srmind 2431.17SnathanwMLINKS+= pthread_schedparam.3 pthread_setschedparam.3 2441.17SnathanwMLINKS+= pthread_schedparam.3 pthread_getschedparam.3 2451.23SchristosMLINKS+= pthread_suspend_np.3 pthread_resume_np.3 2461.17SnathanwMLINKS+= pthread_testcancel.3 pthread_setcancelstate.3 2471.17SnathanwMLINKS+= pthread_testcancel.3 pthread_setcanceltype.3 2481.9Sthorpej 2491.1Sproven.include <bsd.lib.mk> 2501.1Sproven 2511.9Sthorpej.else 2521.9Sthorpej 2531.9Sthorpej.include <bsd.man.mk> 2541.10Sthorpej.include <bsd.files.mk> 2551.10Sthorpej.include <bsd.inc.mk> 2561.9Sthorpej 2571.9Sthorpej.endif 2581.9Sthorpej 2591.9Sthorpej# WARNS=2 sets -Wcast-qual. This causes problems for one of 2601.9Sthorpej# pthread_setspecific() and pthread_getspecific(), since the constness 2611.9Sthorpej# of the argument to setspecific() has to be discarded *somewhere* 2621.9Sthorpej# before returning it from getspecific(). 2631.77SmattCWARNFLAGS+= -Wno-cast-qual 264