Makefile 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. # Unlike the kernel space, exported headers are written in standard C.
  3. # - Forbid C++ style comments
  4. # - Use '__inline__', '__asm__' instead of 'inline', 'asm'
  5. #
  6. # -std=c90 (equivalent to -ansi) catches the violation of those.
  7. # We cannot go as far as adding -Wpedantic since it emits too many warnings.
  8. UAPI_CFLAGS := -std=c90 -Werror=implicit-function-declaration
  9. override c_flags = $(KBUILD_USERCFLAGS) $(UAPI_CFLAGS) -Wp,-MMD,$(depfile) -I $(obj) -I $(srctree)/usr/dummy-include
  10. # The following are excluded for now because they fail to build.
  11. #
  12. # Do not add a new header to the blacklist without legitimate reason.
  13. # Please consider to fix the header first.
  14. #
  15. # Sorted alphabetically.
  16. no-header-test += asm/ucontext.h
  17. no-header-test += drm/vmwgfx_drm.h
  18. no-header-test += linux/am437x-vpfe.h
  19. no-header-test += linux/coda.h
  20. no-header-test += linux/cyclades.h
  21. no-header-test += linux/errqueue.h
  22. no-header-test += linux/hdlc/ioctl.h
  23. no-header-test += linux/ivtv.h
  24. no-header-test += linux/matroxfb.h
  25. no-header-test += linux/omap3isp.h
  26. no-header-test += linux/omapfb.h
  27. no-header-test += linux/patchkey.h
  28. no-header-test += linux/phonet.h
  29. no-header-test += linux/sctp.h
  30. no-header-test += linux/sysctl.h
  31. no-header-test += linux/usb/audio.h
  32. no-header-test += linux/v4l2-mediabus.h
  33. no-header-test += linux/v4l2-subdev.h
  34. no-header-test += linux/videodev2.h
  35. no-header-test += linux/vm_sockets.h
  36. no-header-test += sound/asequencer.h
  37. no-header-test += sound/asoc.h
  38. no-header-test += sound/asound.h
  39. no-header-test += sound/compress_offload.h
  40. no-header-test += sound/emu10k1.h
  41. no-header-test += sound/sfnt_info.h
  42. no-header-test += xen/evtchn.h
  43. no-header-test += xen/gntdev.h
  44. no-header-test += xen/privcmd.h
  45. # More headers are broken in some architectures
  46. ifeq ($(SRCARCH),arc)
  47. no-header-test += linux/bpf_perf_event.h
  48. endif
  49. ifeq ($(SRCARCH),openrisc)
  50. no-header-test += linux/bpf_perf_event.h
  51. endif
  52. ifeq ($(SRCARCH),powerpc)
  53. no-header-test += linux/bpf_perf_event.h
  54. endif
  55. ifeq ($(SRCARCH),sparc)
  56. no-header-test += asm/uctx.h
  57. no-header-test += asm/fbio.h
  58. endif
  59. ifeq ($(SRCARCH),xtensa)
  60. no-header-test += linux/bpf_perf_event.h
  61. endif
  62. # asm-generic/*.h is used by asm/*.h, and should not be included directly
  63. no-header-test += asm-generic/%
  64. # The following are using libc header and types.
  65. #
  66. # Do not add a new header to the list without legitimate reason.
  67. # Please consider to fix the header first.
  68. #
  69. # Sorted alphabetically.
  70. uses-libc += linux/a.out.h
  71. uses-libc += linux/atmbr2684.h
  72. uses-libc += linux/auto_dev-ioctl.h
  73. uses-libc += linux/auto_fs.h
  74. uses-libc += linux/auto_fs4.h
  75. uses-libc += linux/btrfs_tree.h
  76. uses-libc += linux/cec-funcs.h
  77. uses-libc += linux/cec.h
  78. uses-libc += linux/dvb/dmx.h
  79. uses-libc += linux/dvb/video.h
  80. uses-libc += linux/ethtool.h
  81. uses-libc += linux/ethtool_netlink.h
  82. uses-libc += linux/fuse.h
  83. uses-libc += linux/gsmmux.h
  84. uses-libc += linux/icmp.h
  85. uses-libc += linux/idxd.h
  86. uses-libc += linux/if.h
  87. uses-libc += linux/if_arp.h
  88. uses-libc += linux/if_bonding.h
  89. uses-libc += linux/if_pppox.h
  90. uses-libc += linux/if_tunnel.h
  91. uses-libc += linux/input.h
  92. uses-libc += linux/ip6_tunnel.h
  93. uses-libc += linux/joystick.h
  94. uses-libc += linux/llc.h
  95. uses-libc += linux/mctp.h
  96. uses-libc += linux/mdio.h
  97. uses-libc += linux/mii.h
  98. uses-libc += linux/mptcp.h
  99. uses-libc += linux/netdevice.h
  100. uses-libc += linux/netfilter/xt_RATEEST.h
  101. uses-libc += linux/netfilter/xt_hashlimit.h
  102. uses-libc += linux/netfilter/xt_physdev.h
  103. uses-libc += linux/netfilter/xt_rateest.h
  104. uses-libc += linux/netfilter_arp/arp_tables.h
  105. uses-libc += linux/netfilter_arp/arpt_mangle.h
  106. uses-libc += linux/netfilter_bridge.h
  107. uses-libc += linux/netfilter_bridge/ebtables.h
  108. uses-libc += linux/netfilter_ipv4.h
  109. uses-libc += linux/netfilter_ipv4/ip_tables.h
  110. uses-libc += linux/netfilter_ipv6.h
  111. uses-libc += linux/netfilter_ipv6/ip6_tables.h
  112. uses-libc += linux/route.h
  113. uses-libc += linux/shm.h
  114. uses-libc += linux/soundcard.h
  115. uses-libc += linux/string.h
  116. uses-libc += linux/tipc_config.h
  117. uses-libc += linux/uhid.h
  118. uses-libc += linux/uinput.h
  119. uses-libc += linux/vhost.h
  120. uses-libc += linux/vhost_types.h
  121. uses-libc += linux/virtio_ring.h
  122. uses-libc += linux/wireless.h
  123. uses-libc += regulator/regulator.h
  124. uses-libc += scsi/fc/fc_els.h
  125. ifeq ($(SRCARCH),hexagon)
  126. uses-libc += asm/sigcontext.h
  127. endif
  128. ifeq ($(SRCARCH),nios2)
  129. uses-libc += asm/ptrace.h
  130. uses-libc += linux/bpf_perf_event.h
  131. endif
  132. ifeq ($(SRCARCH),s390)
  133. uses-libc += asm/chpid.h
  134. uses-libc += asm/chsc.h
  135. endif
  136. always-y := $(patsubst $(obj)/%.h,%.hdrtest, $(shell find $(obj) -name '*.h' 2>/dev/null))
  137. target-no-libc = $(filter-out $(uses-libc), $*.h)
  138. target-can-compile = $(and $(filter-out $(no-header-test), $*.h), \
  139. $(or $(CONFIG_CC_CAN_LINK), $(target-no-libc)))
  140. # Include the header twice to detect missing include guard.
  141. quiet_cmd_hdrtest = HDRTEST $<
  142. cmd_hdrtest = \
  143. $(CC) $(c_flags) -fsyntax-only -Werror -x c /dev/null \
  144. $(if $(target-no-libc), -nostdinc) \
  145. $(if $(target-can-compile), -include $< -include $<); \
  146. $(PERL) $(src)/headers_check.pl $(obj) $<; \
  147. touch $@
  148. $(obj)/%.hdrtest: $(obj)/%.h $(src)/headers_check.pl FORCE
  149. $(call if_changed_dep,hdrtest)
  150. # Since GNU Make 4.3, $(patsubst $(obj)/%/,%,$(wildcard $(obj)/*/)) works.
  151. # To support older Make versions, use a somewhat tedious way.
  152. clean-files += $(filter-out Makefile headers_check.pl, $(notdir $(wildcard $(obj)/*)))