Makefile.lib 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251
  1. # Backward compatibility
  2. asflags-y += $(EXTRA_AFLAGS)
  3. ccflags-y += $(EXTRA_CFLAGS)
  4. cppflags-y += $(EXTRA_CPPFLAGS)
  5. ldflags-y += $(EXTRA_LDFLAGS)
  6. #
  7. # flags that take effect in sub directories
  8. export KBUILD_SUBDIR_ASFLAGS := $(KBUILD_SUBDIR_ASFLAGS) $(subdir-asflags-y)
  9. export KBUILD_SUBDIR_CCFLAGS := $(KBUILD_SUBDIR_CCFLAGS) $(subdir-ccflags-y)
  10. # Figure out what we need to build from the various variables
  11. # ===========================================================================
  12. # When an object is listed to be built compiled-in and modular,
  13. # only build the compiled-in version
  14. obj-m := $(filter-out $(obj-y),$(obj-m))
  15. # Libraries are always collected in one lib file.
  16. # Filter out objects already built-in
  17. lib-y := $(filter-out $(obj-y), $(sort $(lib-y) $(lib-m)))
  18. # Handle objects in subdirs
  19. # ---------------------------------------------------------------------------
  20. # o if we encounter foo/ in $(obj-y), replace it by foo/built-in.o
  21. # and add the directory to the list of dirs to descend into: $(subdir-y)
  22. # o if we encounter foo/ in $(obj-m), remove it from $(obj-m)
  23. # and add the directory to the list of dirs to descend into: $(subdir-m)
  24. # Determine modorder.
  25. # Unfortunately, we don't have information about ordering between -y
  26. # and -m subdirs. Just put -y's first.
  27. modorder := $(patsubst %/,%/modules.order, $(filter %/, $(obj-y)) $(obj-m:.o=.ko))
  28. __subdir-y := $(patsubst %/,%,$(filter %/, $(obj-y)))
  29. subdir-y += $(__subdir-y)
  30. __subdir-m := $(patsubst %/,%,$(filter %/, $(obj-m)))
  31. subdir-m += $(__subdir-m)
  32. obj-y := $(patsubst %/, %/built-in.o, $(obj-y))
  33. obj-m := $(filter-out %/, $(obj-m))
  34. # Subdirectories we need to descend into
  35. subdir-ym := $(sort $(subdir-y) $(subdir-m))
  36. # if $(foo-objs) exists, foo.o is a composite object
  37. multi-used-y := $(sort $(foreach m,$(obj-y), $(if $(strip $($(m:.o=-objs)) $($(m:.o=-y))), $(m))))
  38. multi-used-m := $(sort $(foreach m,$(obj-m), $(if $(strip $($(m:.o=-objs)) $($(m:.o=-y))), $(m))))
  39. multi-used := $(multi-used-y) $(multi-used-m)
  40. single-used-m := $(sort $(filter-out $(multi-used-m),$(obj-m)))
  41. # Build list of the parts of our composite objects, our composite
  42. # objects depend on those (obviously)
  43. multi-objs-y := $(foreach m, $(multi-used-y), $($(m:.o=-objs)) $($(m:.o=-y)))
  44. multi-objs-m := $(foreach m, $(multi-used-m), $($(m:.o=-objs)) $($(m:.o=-y)))
  45. multi-objs := $(multi-objs-y) $(multi-objs-m)
  46. # $(subdir-obj-y) is the list of objects in $(obj-y) which uses dir/ to
  47. # tell kbuild to descend
  48. subdir-obj-y := $(filter %/built-in.o, $(obj-y))
  49. # $(obj-dirs) is a list of directories that contain object files
  50. obj-dirs := $(dir $(multi-objs) $(subdir-obj-y))
  51. # Replace multi-part objects by their individual parts, look at local dir only
  52. real-objs-y := $(foreach m, $(filter-out $(subdir-obj-y), $(obj-y)), $(if $(strip $($(m:.o=-objs)) $($(m:.o=-y))),$($(m:.o=-objs)) $($(m:.o=-y)),$(m))) $(extra-y)
  53. real-objs-m := $(foreach m, $(obj-m), $(if $(strip $($(m:.o=-objs)) $($(m:.o=-y))),$($(m:.o=-objs)) $($(m:.o=-y)),$(m)))
  54. # Add subdir path
  55. extra-y := $(addprefix $(obj)/,$(extra-y))
  56. always := $(addprefix $(obj)/,$(always))
  57. targets := $(addprefix $(obj)/,$(targets))
  58. modorder := $(addprefix $(obj)/,$(modorder))
  59. obj-y := $(addprefix $(obj)/,$(obj-y))
  60. obj-m := $(addprefix $(obj)/,$(obj-m))
  61. lib-y := $(addprefix $(obj)/,$(lib-y))
  62. subdir-obj-y := $(addprefix $(obj)/,$(subdir-obj-y))
  63. real-objs-y := $(addprefix $(obj)/,$(real-objs-y))
  64. real-objs-m := $(addprefix $(obj)/,$(real-objs-m))
  65. single-used-m := $(addprefix $(obj)/,$(single-used-m))
  66. multi-used-y := $(addprefix $(obj)/,$(multi-used-y))
  67. multi-used-m := $(addprefix $(obj)/,$(multi-used-m))
  68. multi-objs-y := $(addprefix $(obj)/,$(multi-objs-y))
  69. multi-objs-m := $(addprefix $(obj)/,$(multi-objs-m))
  70. subdir-ym := $(addprefix $(obj)/,$(subdir-ym))
  71. obj-dirs := $(addprefix $(obj)/,$(obj-dirs))
  72. # These flags are needed for modversions and compiling, so we define them here
  73. # already
  74. # $(modname_flags) #defines KBUILD_MODNAME as the name of the module it will
  75. # end up in (or would, if it gets compiled in)
  76. # Note: It's possible that one object gets potentially linked into more
  77. # than one module. In that case KBUILD_MODNAME will be set to foo_bar,
  78. # where foo and bar are the name of the modules.
  79. name-fix = $(subst $(comma),_,$(subst -,_,$1))
  80. basename_flags = -D"KBUILD_BASENAME=KBUILD_STR($(call name-fix,$(basetarget)))"
  81. modname_flags = $(if $(filter 1,$(words $(modname))),\
  82. -D"KBUILD_MODNAME=KBUILD_STR($(call name-fix,$(modname)))")
  83. #hash values
  84. ifdef CONFIG_DYNAMIC_DEBUG
  85. debug_flags = -D"DEBUG_HASH=$(shell ./scripts/basic/hash djb2 $(@D)$(modname))"\
  86. -D"DEBUG_HASH2=$(shell ./scripts/basic/hash r5 $(@D)$(modname))"
  87. else
  88. debug_flags =
  89. endif
  90. orig_c_flags = $(KBUILD_CPPFLAGS) $(KBUILD_CFLAGS) $(KBUILD_SUBDIR_CCFLAGS) \
  91. $(ccflags-y) $(CFLAGS_$(basetarget).o)
  92. _c_flags = $(filter-out $(CFLAGS_REMOVE_$(basetarget).o), $(orig_c_flags))
  93. _a_flags = $(KBUILD_CPPFLAGS) $(KBUILD_AFLAGS) $(KBUILD_SUBDIR_ASFLAGS) \
  94. $(asflags-y) $(AFLAGS_$(basetarget).o)
  95. _cpp_flags = $(KBUILD_CPPFLAGS) $(cppflags-y) $(CPPFLAGS_$(@F))
  96. #
  97. # Enable gcov profiling flags for a file, directory or for all files depending
  98. # on variables GCOV_PROFILE_obj.o, GCOV_PROFILE and CONFIG_GCOV_PROFILE_ALL
  99. # (in this order)
  100. #
  101. ifeq ($(CONFIG_GCOV_KERNEL),y)
  102. _c_flags += $(if $(patsubst n%,, \
  103. $(GCOV_PROFILE_$(basetarget).o)$(GCOV_PROFILE)$(CONFIG_GCOV_PROFILE_ALL)), \
  104. $(CFLAGS_GCOV))
  105. endif
  106. ifdef CONFIG_SYMBOL_PREFIX
  107. _cpp_flags += -DSYMBOL_PREFIX=$(patsubst "%",%,$(CONFIG_SYMBOL_PREFIX))
  108. endif
  109. # If building the kernel in a separate objtree expand all occurrences
  110. # of -Idir to -I$(srctree)/dir except for absolute paths (starting with '/').
  111. ifeq ($(KBUILD_SRC),)
  112. __c_flags = $(_c_flags)
  113. __a_flags = $(_a_flags)
  114. __cpp_flags = $(_cpp_flags)
  115. else
  116. # -I$(obj) locates generated .h files
  117. # $(call addtree,-I$(obj)) locates .h files in srctree, from generated .c files
  118. # and locates generated .h files
  119. # FIXME: Replace both with specific CFLAGS* statements in the makefiles
  120. __c_flags = $(call addtree,-I$(obj)) $(call flags,_c_flags)
  121. __a_flags = $(call flags,_a_flags)
  122. __cpp_flags = $(call flags,_cpp_flags)
  123. endif
  124. c_flags = -Wp,-MD,$(depfile) $(NOSTDINC_FLAGS) $(LINUXINCLUDE) \
  125. $(__c_flags) $(modkern_cflags) \
  126. -D"KBUILD_STR(s)=\#s" $(basename_flags) $(modname_flags) \
  127. $(debug_flags)
  128. a_flags = -Wp,-MD,$(depfile) $(NOSTDINC_FLAGS) $(LINUXINCLUDE) \
  129. $(__a_flags) $(modkern_aflags)
  130. cpp_flags = -Wp,-MD,$(depfile) $(NOSTDINC_FLAGS) $(LINUXINCLUDE) \
  131. $(__cpp_flags)
  132. ld_flags = $(LDFLAGS) $(ldflags-y)
  133. # Finds the multi-part object the current object will be linked into
  134. modname-multi = $(sort $(foreach m,$(multi-used),\
  135. $(if $(filter $(subst $(obj)/,,$*.o), $($(m:.o=-objs)) $($(m:.o=-y))),$(m:.o=))))
  136. # Shipped files
  137. # ===========================================================================
  138. quiet_cmd_shipped = SHIPPED $@
  139. cmd_shipped = cat $< > $@
  140. $(obj)/%:: $(src)/%_shipped
  141. $(call cmd,shipped)
  142. # Commands useful for building a boot image
  143. # ===========================================================================
  144. #
  145. # Use as following:
  146. #
  147. # target: source(s) FORCE
  148. # $(if_changed,ld/objcopy/gzip)
  149. #
  150. # and add target to extra-y so that we know we have to
  151. # read in the saved command line
  152. # Linking
  153. # ---------------------------------------------------------------------------
  154. quiet_cmd_ld = LD $@
  155. cmd_ld = $(LD) $(LDFLAGS) $(ldflags-y) $(LDFLAGS_$(@F)) \
  156. $(filter-out FORCE,$^) -o $@
  157. # Objcopy
  158. # ---------------------------------------------------------------------------
  159. quiet_cmd_objcopy = OBJCOPY $@
  160. cmd_objcopy = $(OBJCOPY) $(OBJCOPYFLAGS) $(OBJCOPYFLAGS_$(@F)) $< $@
  161. # Gzip
  162. # ---------------------------------------------------------------------------
  163. quiet_cmd_gzip = GZIP $@
  164. cmd_gzip = (cat $(filter-out FORCE,$^) | gzip -f -9 > $@) || \
  165. (rm -f $@ ; false)
  166. # Bzip2
  167. # ---------------------------------------------------------------------------
  168. # Bzip2 and LZMA do not include size in file... so we have to fake that;
  169. # append the size as a 32-bit littleendian number as gzip does.
  170. size_append = printf $(shell \
  171. dec_size=0; \
  172. for F in $1; do \
  173. fsize=$$(stat -c "%s" $$F); \
  174. dec_size=$$(expr $$dec_size + $$fsize); \
  175. done; \
  176. printf "%08x\n" $$dec_size | \
  177. sed 's/\(..\)/\1 /g' | { \
  178. read ch0 ch1 ch2 ch3; \
  179. for ch in $$ch3 $$ch2 $$ch1 $$ch0; do \
  180. printf '%s%03o' '\\' $$((0x$$ch)); \
  181. done; \
  182. } \
  183. )
  184. quiet_cmd_bzip2 = BZIP2 $@
  185. cmd_bzip2 = (cat $(filter-out FORCE,$^) | \
  186. bzip2 -9 && $(call size_append, $(filter-out FORCE,$^))) > $@ || \
  187. (rm -f $@ ; false)
  188. # Lzma
  189. # ---------------------------------------------------------------------------
  190. quiet_cmd_lzma = LZMA $@
  191. cmd_lzma = (cat $(filter-out FORCE,$^) | \
  192. lzma -9 && $(call size_append, $(filter-out FORCE,$^))) > $@ || \
  193. (rm -f $@ ; false)
  194. quiet_cmd_lzo = LZO $@
  195. cmd_lzo = (cat $(filter-out FORCE,$^) | \
  196. lzop -9 && $(call size_append, $(filter-out FORCE,$^))) > $@ || \
  197. (rm -f $@ ; false)
  198. # misc stuff
  199. # ---------------------------------------------------------------------------
  200. quote:="