Makefile 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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 -Wall -Werror=implicit-function-declaration
  9. # In theory, we do not care -m32 or -m64 for header compile tests.
  10. # It is here just because CONFIG_CC_CAN_LINK is tested with -m32 or -m64.
  11. UAPI_CFLAGS += $(filter -m32 -m64 --target=%, $(KBUILD_CPPFLAGS) $(KBUILD_CFLAGS))
  12. # USERCFLAGS might contain sysroot location for CC.
  13. UAPI_CFLAGS += $(USERCFLAGS)
  14. override c_flags = $(UAPI_CFLAGS) -Wp,-MMD,$(depfile) -I $(obj) -I $(srctree)/usr/dummy-include
  15. # The following are excluded for now because they fail to build.
  16. #
  17. # Do not add a new header to the blacklist without legitimate reason.
  18. # Please consider to fix the header first.
  19. #
  20. # Sorted alphabetically.
  21. no-header-test += asm/ucontext.h
  22. no-header-test += drm/vmwgfx_drm.h
  23. no-header-test += linux/am437x-vpfe.h
  24. no-header-test += linux/coda.h
  25. no-header-test += linux/cyclades.h
  26. no-header-test += linux/errqueue.h
  27. no-header-test += linux/hdlc/ioctl.h
  28. no-header-test += linux/ivtv.h
  29. no-header-test += linux/matroxfb.h
  30. no-header-test += linux/omap3isp.h
  31. no-header-test += linux/omapfb.h
  32. no-header-test += linux/patchkey.h
  33. no-header-test += linux/phonet.h
  34. no-header-test += linux/sctp.h
  35. no-header-test += linux/sysctl.h
  36. no-header-test += linux/usb/audio.h
  37. no-header-test += linux/v4l2-mediabus.h
  38. no-header-test += linux/v4l2-subdev.h
  39. no-header-test += linux/videodev2.h
  40. no-header-test += linux/vm_sockets.h
  41. no-header-test += sound/asequencer.h
  42. no-header-test += sound/asoc.h
  43. no-header-test += sound/asound.h
  44. no-header-test += sound/compress_offload.h
  45. no-header-test += sound/emu10k1.h
  46. no-header-test += sound/sfnt_info.h
  47. no-header-test += xen/evtchn.h
  48. no-header-test += xen/gntdev.h
  49. no-header-test += xen/privcmd.h
  50. # More headers are broken in some architectures
  51. ifeq ($(SRCARCH),arc)
  52. no-header-test += linux/bpf_perf_event.h
  53. endif
  54. ifeq ($(SRCARCH),powerpc)
  55. no-header-test += linux/bpf_perf_event.h
  56. endif
  57. ifeq ($(SRCARCH),sparc)
  58. no-header-test += asm/uctx.h
  59. no-header-test += asm/fbio.h
  60. endif
  61. # asm-generic/*.h is used by asm/*.h, and should not be included directly
  62. no-header-test += asm-generic/%
  63. always-y := $(patsubst $(obj)/%.h,%.hdrtest, $(shell find $(obj) -name '*.h' 2>/dev/null))
  64. # Include the header twice to detect missing include guard.
  65. quiet_cmd_hdrtest = HDRTEST $<
  66. cmd_hdrtest = \
  67. $(CC) $(c_flags) -fsyntax-only -x c /dev/null \
  68. $(if $(filter-out $(no-header-test), $*.h), -include $< -include $<); \
  69. $(PERL) $(src)/headers_check.pl $(obj) $(SRCARCH) $<; \
  70. touch $@
  71. $(obj)/%.hdrtest: $(obj)/%.h FORCE
  72. $(call if_changed_dep,hdrtest)
  73. # Since GNU Make 4.3, $(patsubst $(obj)/%/,%,$(wildcard $(obj)/*/)) works.
  74. # To support older Make versions, use a somewhat tedious way.
  75. clean-files += $(filter-out Makefile headers_check.pl, $(notdir $(wildcard $(obj)/*)))