~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/mm/kasan/Makefile

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /mm/kasan/Makefile (Version linux-6.12-rc7) and /mm/kasan/Makefile (Version linux-5.3.18)


  1 # SPDX-License-Identifier: GPL-2.0                  1 # SPDX-License-Identifier: GPL-2.0
  2 KASAN_SANITIZE := n                                 2 KASAN_SANITIZE := n
  3 UBSAN_SANITIZE := n                            !!   3 UBSAN_SANITIZE_common.o := n
                                                   >>   4 UBSAN_SANITIZE_generic.o := n
                                                   >>   5 UBSAN_SANITIZE_generic_report.o := n
                                                   >>   6 UBSAN_SANITIZE_tags.o := n
  4 KCOV_INSTRUMENT := n                                7 KCOV_INSTRUMENT := n
  5                                                     8 
  6 # Disable ftrace to avoid recursion.           << 
  7 CFLAGS_REMOVE_common.o = $(CC_FLAGS_FTRACE)         9 CFLAGS_REMOVE_common.o = $(CC_FLAGS_FTRACE)
  8 CFLAGS_REMOVE_generic.o = $(CC_FLAGS_FTRACE)       10 CFLAGS_REMOVE_generic.o = $(CC_FLAGS_FTRACE)
  9 CFLAGS_REMOVE_init.o = $(CC_FLAGS_FTRACE)      !!  11 CFLAGS_REMOVE_generic_report.o = $(CC_FLAGS_FTRACE)
 10 CFLAGS_REMOVE_quarantine.o = $(CC_FLAGS_FTRACE !!  12 CFLAGS_REMOVE_tags.o = $(CC_FLAGS_FTRACE)
 11 CFLAGS_REMOVE_report.o = $(CC_FLAGS_FTRACE)    << 
 12 CFLAGS_REMOVE_report_generic.o = $(CC_FLAGS_FT << 
 13 CFLAGS_REMOVE_report_hw_tags.o = $(CC_FLAGS_FT << 
 14 CFLAGS_REMOVE_report_sw_tags.o = $(CC_FLAGS_FT << 
 15 CFLAGS_REMOVE_shadow.o = $(CC_FLAGS_FTRACE)    << 
 16 CFLAGS_REMOVE_hw_tags.o = $(CC_FLAGS_FTRACE)   << 
 17 CFLAGS_REMOVE_sw_tags.o = $(CC_FLAGS_FTRACE)   << 
 18                                                    13 
 19 # Function splitter causes unnecessary splits      14 # Function splitter causes unnecessary splits in __asan_load1/__asan_store1
 20 # see: https://gcc.gnu.org/bugzilla/show_bug.c     15 # see: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=63533
 21 CC_FLAGS_KASAN_RUNTIME := $(call cc-option, -f << 
 22 CC_FLAGS_KASAN_RUNTIME += -fno-stack-protector << 
 23 # Disable branch tracing to avoid recursion.   << 
 24 CC_FLAGS_KASAN_RUNTIME += -DDISABLE_BRANCH_PRO << 
 25                                                    16 
 26 CFLAGS_common.o := $(CC_FLAGS_KASAN_RUNTIME)   !!  17 CFLAGS_common.o := $(call cc-option, -fno-conserve-stack -fno-stack-protector)
 27 CFLAGS_generic.o := $(CC_FLAGS_KASAN_RUNTIME)  !!  18 CFLAGS_generic.o := $(call cc-option, -fno-conserve-stack -fno-stack-protector)
 28 CFLAGS_init.o := $(CC_FLAGS_KASAN_RUNTIME)     !!  19 CFLAGS_generic_report.o := $(call cc-option, -fno-conserve-stack -fno-stack-protector)
 29 CFLAGS_quarantine.o := $(CC_FLAGS_KASAN_RUNTIM !!  20 CFLAGS_tags.o := $(call cc-option, -fno-conserve-stack -fno-stack-protector)
 30 CFLAGS_report.o := $(CC_FLAGS_KASAN_RUNTIME)   !!  21 
 31 CFLAGS_report_generic.o := $(CC_FLAGS_KASAN_RU !!  22 obj-$(CONFIG_KASAN) := common.o init.o report.o
 32 CFLAGS_report_hw_tags.o := $(CC_FLAGS_KASAN_RU !!  23 obj-$(CONFIG_KASAN_GENERIC) += generic.o generic_report.o quarantine.o
 33 CFLAGS_report_sw_tags.o := $(CC_FLAGS_KASAN_RU !!  24 obj-$(CONFIG_KASAN_SW_TAGS) += tags.o tags_report.o
 34 CFLAGS_shadow.o := $(CC_FLAGS_KASAN_RUNTIME)   << 
 35 CFLAGS_hw_tags.o := $(CC_FLAGS_KASAN_RUNTIME)  << 
 36 CFLAGS_sw_tags.o := $(CC_FLAGS_KASAN_RUNTIME)  << 
 37                                                << 
 38 CFLAGS_KASAN_TEST := $(CFLAGS_KASAN) $(call cc << 
 39 ifndef CONFIG_CC_HAS_KASAN_MEMINTRINSIC_PREFIX << 
 40 # If compiler instruments memintrinsics by pre << 
 41 # we need to treat them normally (as builtins) << 
 42 # recognize them as instrumentable. If it does << 
 43 # pass -fno-builtin, so the compiler doesn't i << 
 44 CFLAGS_KASAN_TEST += -fno-builtin              << 
 45 endif                                          << 
 46                                                << 
 47 CFLAGS_kasan_test_c.o := $(CFLAGS_KASAN_TEST)  << 
 48 RUSTFLAGS_kasan_test_rust.o := $(RUSTFLAGS_KAS << 
 49 CFLAGS_kasan_test_module.o := $(CFLAGS_KASAN_T << 
 50                                                << 
 51 obj-y := common.o report.o                     << 
 52 obj-$(CONFIG_KASAN_GENERIC) += init.o generic. << 
 53 obj-$(CONFIG_KASAN_HW_TAGS) += hw_tags.o repor << 
 54 obj-$(CONFIG_KASAN_SW_TAGS) += init.o report_s << 
 55                                                << 
 56 kasan_test-objs := kasan_test_c.o              << 
 57 ifdef CONFIG_RUST                              << 
 58         kasan_test-objs += kasan_test_rust.o   << 
 59 endif                                          << 
 60                                                << 
 61 obj-$(CONFIG_KASAN_KUNIT_TEST) += kasan_test.o << 
 62 obj-$(CONFIG_KASAN_MODULE_TEST) += kasan_test_ << 
                                                      

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php