Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 8eed4e00a370b37b4e5985ed983dccedd555ea9d 17 lines 511 B view raw
1# SPDX-License-Identifier: GPL-2.0 2 3randstruct-cflags-y += -DRANDSTRUCT 4 5ifdef CONFIG_GCC_PLUGIN_RANDSTRUCT 6randstruct-cflags-y \ 7 += -fplugin=$(objtree)/scripts/gcc-plugins/randomize_layout_plugin.so 8randstruct-cflags-$(CONFIG_RANDSTRUCT_PERFORMANCE) \ 9 += -fplugin-arg-randomize_layout_plugin-performance-mode 10else 11randstruct-cflags-y \ 12 += -frandomize-layout-seed-file=$(objtree)/scripts/basic/randstruct.seed 13endif 14 15export RANDSTRUCT_CFLAGS := $(randstruct-cflags-y) 16 17KBUILD_CFLAGS += $(RANDSTRUCT_CFLAGS)