Makefile.in 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  1. # Makefile for uClibc NPTL
  2. #
  3. # Copyright (C) 2005-2006 Steven J. Hill <sjhill@realitydiluted.com>
  4. #
  5. # Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  6. #
  7. subdirs += libpthread/nptl
  8. libpthread_DIR = $(top_srcdir)libpthread/nptl
  9. libpthread_OUT = $(top_builddir)libpthread/nptl
  10. include $(libpthread_DIR)/sysdeps/Makefile.in
  11. libc-shared-routines-y = forward.c libc-cancellation.c
  12. libc-static-routines-y = alloca_cutoff.c libc-cancellation.c
  13. libpthread-shared-only-routines-y = version.c
  14. libpthread-static-only-routines-y = pthread_atfork.c
  15. libpthread-routines- += $(notdir $(wildcard $(libpthread_DIR)/gen_*.c)) # dummy generated files
  16. libpthread-routines- += allocatestack.c # dummy included by pthread_create.c
  17. libpthread-routines- += pthread_mutex_getprioceiling.c pthread_mutex_setprioceiling.c # XXX: delete those or use them!
  18. libpthread-routines-$(UCLIBC_HAS_RESOLVER_SUPPORT) += res.c
  19. libpthread-routines-$(UCLIBC_SUSV4_LEGACY) += pthread_getconcurrency.c \
  20. pthread_setconcurrency
  21. libpthread_CSRC = $(filter-out $(libpthread-routines-) \
  22. $(libc-shared-routines-y) \
  23. $(libc-static-routines-y) \
  24. $(libpthread-shared-only-routines-y) \
  25. $(libpthread-static-only-routines-y) \
  26. $(notdir $(libpthread_OBJS:.o=.c)), \
  27. $(notdir $(wildcard $(libpthread_DIR)/*.c)))
  28. libpthread_OBJS += $(addprefix $(libpthread_OUT)/,$(libpthread_CSRC:.c=.o))
  29. libpthread-so-y += $(addprefix $(libpthread_OUT)/,$(libpthread-shared-only-routines-y:.c=.oS))
  30. libpthread-so-y += $(libpthread_OBJS:.o=.oS)
  31. libpthread-nonshared-y := $(addprefix $(libpthread_OUT)/,$(libpthread-static-only-routines-y:.c=.oS))
  32. libpthread-static-y := $(addprefix $(libpthread_OUT)/,$(libpthread-static-only-routines-y:.c=.o))
  33. libpthread-static-y += $(libpthread_OBJS)
  34. ifeq ($(DOPIC),y)
  35. libpthread-a-y := $(libpthread-static-y:.o=.os)
  36. else
  37. libpthread-a-y := $(libpthread-static-y)
  38. endif
  39. libc-shared-routines-y := $(filter-out $(notdir $(libpthread_libc_OBJS:.o=.c)), $(libc-shared-routines-y))
  40. libc-static-routines-y := $(filter-out $(notdir $(libpthread_libc_OBJS:.o=.c)), $(libc-static-routines-y))
  41. libc-shared-routines-y := $(addprefix $(libpthread_OUT)/,$(libc-shared-routines-y:.c=.oS))
  42. libc-static-routines-y := $(addprefix $(libpthread_OUT)/,$(libc-static-routines-y:.c=.o))
  43. libc-shared-y += $(libc-shared-routines-y) $(libpthread_libc_OBJS:.o=.oS)
  44. ifeq ($(DOPIC),y)
  45. libc-static-y += $(libc-static-routines-y:.o=.os) $(libpthread_libc_a_OBJS:.o=.os) $(libpthread_ld_tls_COBJ:.o=.os)
  46. else
  47. libc-static-y += $(libc-static-routines-y) $(libpthread_libc_a_OBJS) $(libpthread_ld_tls_COBJ)
  48. endif
  49. librt-pt-routines-y := $(patsubst %.c,$(libpthread_pthread_OUT)/%.o,$(filter-out $(notdir $(libpthread_librt_OBJS:.o=.c)), $(librt-pt-routines-y)))
  50. librt-pt-shared-only-routines-y := $(patsubst %.c,$(libpthread_pthread_OUT)/%.o,$(filter-out $(notdir $(libpthread_librt_OBJS:.o=.c)), $(librt-pt-shared-only-routines-y)))
  51. librt_OBJS = $(libpthread_librt_OBJS) $(librt-pt-routines-y)
  52. ifeq ($(DOPIC),y)
  53. librt-a-y += $(librt_OBJS:.o=.os)
  54. else
  55. librt-a-y += $(librt_OBJS)
  56. endif
  57. librt-so-y += $(librt_OBJS:.o=.oS) $(librt-pt-shared-only-routines-y:.o=.oS)
  58. ifeq ($(UCLIBC_CTOR_DTOR),y)
  59. START_FILE-libpthread.so := $(top_builddir)libpthread/nptl/sysdeps/pthread/pt-crti.o
  60. END_FILE-libpthread.so := $(top_builddir)libpthread/nptl/sysdeps/pthread/pt-crtn.o
  61. LDFLAGS-libpthread.so += -nostartfiles
  62. $(top_builddir)lib/libpthread.so: | $(START_FILE-libpthread.so) $(END_FILE-libpthread.so)
  63. endif
  64. libpthread_FULL_NAME := libpthread-$(VERSION).so
  65. lib-a-$(UCLIBC_HAS_THREADS) += $(top_builddir)lib/libpthread.a
  66. lib-so-$(UCLIBC_HAS_THREADS) += $(top_builddir)lib/libpthread.so
  67. $(top_builddir)lib/libpthread.so: $(libpthread_OUT)/libpthread_so.a $(libc.depend) $(libdl.depend) $(top_builddir)lib/libpthread_nonshared.a
  68. $(call link.so,$(libpthread_FULL_NAME),$(ABI_VERSION))
  69. $(Q)cat $(top_srcdir)extra/scripts/format.lds > $@.tmp
  70. $(Q)echo "GROUP ( $(notdir $@).$(ABI_VERSION) libpthread_nonshared.a )" >> $@.tmp
  71. $(Q)mv $@.tmp $@
  72. ifeq ($(PTHREADS_DEBUG_SUPPORT),y)
  73. $(libpthread_OUT)/libpthread_so.a: STRIP_FLAGS:=$(STRIP_FLAGS:-x=-X --strip-debug)
  74. endif
  75. $(libpthread_OUT)/libpthread_so.a: $(libpthread-so-y)
  76. $(Q)$(RM) $@
  77. $(do_ar)
  78. $(top_builddir)lib/libpthread.a: $(libpthread-a-y)
  79. $(Q)$(INSTALL) -d $(dir $@)
  80. $(Q)$(RM) $@
  81. $(do_ar)
  82. #
  83. # Create 'pthread-errnos.h' header file.
  84. #
  85. CFLAGS-gen_pthread-errnos.c = -S
  86. $(libpthread_OUT)/gen_pthread-errnos.c: $(libpthread_DIR)/pthread-errnos.sym | $(libpthread_OUT)
  87. $(do_awk) $(top_srcdir)extra/scripts/gen-as-const.awk $< > $@
  88. $(libpthread_OUT)/gen_pthread-errnos.s: $(libpthread_OUT)/gen_pthread-errnos.c | headers
  89. $(compile.c)
  90. libpthread-generated-y += $(libpthread_OUT)/gen_pthread-errnos.s
  91. $(libpthread_OUT)/pthread-errnos.h: $(libpthread_OUT)/gen_pthread-errnos.s
  92. $(do_sed) $(PTHREAD_GENERATE_MANGLE) $< > $@
  93. @if test ! -s $@ ; then rm -f $@ ; false ; fi
  94. pregen-headers-$(UCLIBC_HAS_THREADS_NATIVE) += $(libpthread_OUT)/pthread-errnos.h
  95. headers-$(UCLIBC_HAS_THREADS_NATIVE) += $(nptl_headers_bootstrap)
  96. libpthread_H := $(addprefix $(top_builddir)include/,semaphore.h)
  97. libpthread_include_H := $(addprefix $(top_builddir)include/,pthread.h)
  98. libpthread_include_BITS_H := $(addprefix $(top_builddir)include/bits/,libc-lock.h stdio-lock.h)
  99. libpthread_include_STD_IMPL_OS_ARCH_BITS_H := $(addprefix $(top_builddir)include/bits/,pthreadtypes.h semaphore.h)
  100. $(libpthread_include_STD_IMPL_OS_ARCH_BITS_H): $(top_builddir)include/bits/%:
  101. $(do_ln) $(call rel_srcdir)$(PTDIR)/sysdeps/unix/sysv/linux/$(TARGET_ARCH)/bits/$(@F) $@
  102. $(libpthread_include_BITS_H): $(top_builddir)include/bits/%:
  103. $(do_ln) $(call rel_srcdir)$(PTDIR)/sysdeps/pthread/bits/$(@F) $@
  104. $(libpthread_include_H): $(top_builddir)include/%:
  105. $(do_ln) $(call rel_srcdir)$(PTDIR)/sysdeps/pthread/$(@F) $@
  106. $(libpthread_H): $(top_builddir)include/%:
  107. $(do_ln) $(call rel_srcdir)$(PTDIR)/$(@F) $@
  108. nptl_headers_bootstrap = $(libpthread_H) $(libpthread_include_H) $(libpthread_include_BITS_H) $(libpthread_include_STD_IMPL_OS_ARCH_BITS_H)
  109. objclean-y += CLEAN_libpthread/nptl
  110. headers_clean-y += HEADERCLEAN_libpthread/nptl
  111. HEADERCLEAN_libpthread/nptl:
  112. $(do_rm) $(nptl_headers_bootstrap) \
  113. $(addprefix $(libpthread_OUT)/gen_pthread-errnos., c s) \
  114. $(libpthread_OUT)/pthread-errnos.h
  115. CLEAN_libpthread/nptl:
  116. $(do_rm) $(addprefix $(libpthread_OUT)/*., o os oS a)
  117. ifeq ($(PTHREADS_DEBUG_SUPPORT),y)
  118. LDFLAGS-libpthread.so += $(LDFLAGS_NOSTRIP) -Wl,-z,defs
  119. else
  120. LDFLAGS-libpthread.so += $(LDFLAGS)
  121. endif
  122. LDFLAGS-libpthread.so += $(top_builddir)lib/$(UCLIBC_LDSO_NAME)-$(VERSION).so $(top_builddir)lib/libdl-$(VERSION).so \
  123. -Wl,-z,nodelete,-z,initfirst,-init=$(SYMBOL_PREFIX)__pthread_initialize_minimal_internal
  124. LIBS-libpthread.so := $(LIBS)
  125. CFLAGS-nptl = -DNOT_IN_libc -DIS_IN_libpthread $(SSP_ALL_CFLAGS)
  126. # Since cancellation handling is in large parts handled using exceptions
  127. # we have to compile some files with exception handling enabled, some
  128. # even with asynchronous unwind tables.
  129. # init.c contains sigcancel_handler().
  130. CFLAGS-init.c = -fexceptions -fasynchronous-unwind-tables
  131. # The unwind code itself,
  132. CFLAGS-unwind.c = -fexceptions
  133. CFLAGS-unwind-forcedunwind.c = -fexceptions -fasynchronous-unwind-tables
  134. # The following three functions must be async-cancel safe.
  135. CFLAGS-pthread_cancel.c = -fexceptions -fasynchronous-unwind-tables
  136. CFLAGS-pthread_setcancelstate.c = -fexceptions -fasynchronous-unwind-tables
  137. CFLAGS-pthread_setcanceltype.c = -fexceptions -fasynchronous-unwind-tables
  138. # These are internal functions which similar functionality as setcancelstate
  139. # and setcanceltype.
  140. CFLAGS-cancellation.c = -fasynchronous-unwind-tables
  141. CFLAGS-libc-cancellation.c = -fasynchronous-unwind-tables
  142. # Calling pthread_exit() must cause the registered cancel handlers to
  143. # be executed. Therefore exceptions have to be thrown through this
  144. # function.
  145. CFLAGS-pthread_exit.c = -fexceptions
  146. # Among others, __pthread_unwind is forwarded. This function must handle
  147. # exceptions.
  148. CFLAGS-forward.c = -fexceptions
  149. # The following are cancellation points. Some of the functions can
  150. # block and therefore temporarily enable asynchronous cancellation.
  151. # Those must be compiled asynchronous unwind tables.
  152. CFLAGS-pthread_testcancel.c = -fexceptions
  153. CFLAGS-pthread_join.c = -fexceptions -fasynchronous-unwind-tables
  154. CFLAGS-pthread_timedjoin.c = -fexceptions -fasynchronous-unwind-tables
  155. CFLAGS-pthread_once.c = $(uses-callbacks) -fexceptions \
  156. -fasynchronous-unwind-tables
  157. CFLAGS-pthread_cond_wait.c = -fexceptions -fasynchronous-unwind-tables
  158. CFLAGS-pthread_cond_timedwait.c = -fexceptions -fasynchronous-unwind-tables
  159. CFLAGS-sem_wait.c = -fexceptions -fasynchronous-unwind-tables
  160. CFLAGS-sem_timedwait.c = -fexceptions -fasynchronous-unwind-tables
  161. # These are the function wrappers we have to duplicate here.
  162. CFLAGS-fcntl.c = -fexceptions -fasynchronous-unwind-tables
  163. CFLAGS-lockf.c = -fexceptions
  164. CFLAGS-pread.c = -fexceptions -fasynchronous-unwind-tables
  165. CFLAGS-pread64.c = -fexceptions -fasynchronous-unwind-tables
  166. CFLAGS-pwrite.c = -fexceptions -fasynchronous-unwind-tables
  167. CFLAGS-pwrite64.c = -fexceptions -fasynchronous-unwind-tables
  168. CFLAGS-wait.c = -fexceptions -fasynchronous-unwind-tables
  169. CFLAGS-waitpid.c = -fexceptions -fasynchronous-unwind-tables
  170. CFLAGS-sigwait.c = -fexceptions -fasynchronous-unwind-tables
  171. CFLAGS-msgrcv.c = -fexceptions -fasynchronous-unwind-tables
  172. CFLAGS-msgsnd.c = -fexceptions -fasynchronous-unwind-tables
  173. CFLAGS-tcdrain.c = -fexceptions -fasynchronous-unwind-tables
  174. CFLAGS-pt-system.c = -fexceptions -I$(top_srcdir)libc/stdlib
  175. #
  176. # The rest of this file is uClibc specific.
  177. #
  178. CFLAGS-pthread_barrier_init.c = -D_GNU_SOURCE
  179. CFLAGS-pthread_barrier_destroy.c = -D_GNU_SOURCE
  180. CFLAGS-pthread_barrierattr_init.c = -D_GNU_SOURCE
  181. CFLAGS-pthread_barrierattr_destroy.c = -D_GNU_SOURCE
  182. CFLAGS-pthread_barrierattr_getpshared.c = -D_GNU_SOURCE
  183. CFLAGS-pthread_barrierattr_setpshared.c = -D_GNU_SOURCE
  184. CFLAGS-sem_open.c = -D_GNU_SOURCE
  185. CFLAGS-OMIT-alloca_cutoff.c = $(CFLAGS-nptl)
  186. CFLAGS-OMIT-forward.c = $(CFLAGS-nptl)
  187. CFLAGS-OMIT-libc-lowlevelock.c = $(CFLAGS-nptl)
  188. CFLAGS-OMIT-libc-cancellation.c = $(CFLAGS-nptl)