Makefile (b4edb8d2d4647a71a246d91fe34ff25c2c5f3481) | Makefile (92f90d3b0d5e384f218c8068138ed1b3afa025af) |
---|---|
1# SPDX-License-Identifier: GPL-2.0 2# 3# Makefile for some libs needed in the kernel. 4# 5 6ccflags-remove-$(CONFIG_FUNCTION_TRACER) += $(CC_FLAGS_FTRACE) 7 8# These files are disabled because they produce lots of non-interesting and/or --- 93 unchanged lines hidden (view full) --- 102obj-$(CONFIG_TEST_MEMINIT) += test_meminit.o 103obj-$(CONFIG_TEST_LOCKUP) += test_lockup.o 104obj-$(CONFIG_TEST_HMM) += test_hmm.o 105obj-$(CONFIG_TEST_FREE_PAGES) += test_free_pages.o 106obj-$(CONFIG_KPROBES_SANITY_TEST) += test_kprobes.o 107obj-$(CONFIG_TEST_REF_TRACKER) += test_ref_tracker.o 108CFLAGS_test_fprobe.o += $(CC_FLAGS_FTRACE) 109obj-$(CONFIG_FPROBE_SANITY_TEST) += test_fprobe.o | 1# SPDX-License-Identifier: GPL-2.0 2# 3# Makefile for some libs needed in the kernel. 4# 5 6ccflags-remove-$(CONFIG_FUNCTION_TRACER) += $(CC_FLAGS_FTRACE) 7 8# These files are disabled because they produce lots of non-interesting and/or --- 93 unchanged lines hidden (view full) --- 102obj-$(CONFIG_TEST_MEMINIT) += test_meminit.o 103obj-$(CONFIG_TEST_LOCKUP) += test_lockup.o 104obj-$(CONFIG_TEST_HMM) += test_hmm.o 105obj-$(CONFIG_TEST_FREE_PAGES) += test_free_pages.o 106obj-$(CONFIG_KPROBES_SANITY_TEST) += test_kprobes.o 107obj-$(CONFIG_TEST_REF_TRACKER) += test_ref_tracker.o 108CFLAGS_test_fprobe.o += $(CC_FLAGS_FTRACE) 109obj-$(CONFIG_FPROBE_SANITY_TEST) += test_fprobe.o |
110obj-$(CONFIG_TEST_OBJPOOL) += test_objpool.o 111 |
|
110# 111# CFLAGS for compiling floating point code inside the kernel. x86/Makefile turns 112# off the generation of FPU/SSE* instructions for kernel proper but FPU_FLAGS 113# get appended last to CFLAGS and thus override those previous compiler options. 114# 115FPU_CFLAGS := -msse -msse2 116ifdef CONFIG_CC_IS_GCC 117# Stack alignment mismatch, proceed with caution. --- 323 unchanged lines hidden --- | 112# 113# CFLAGS for compiling floating point code inside the kernel. x86/Makefile turns 114# off the generation of FPU/SSE* instructions for kernel proper but FPU_FLAGS 115# get appended last to CFLAGS and thus override those previous compiler options. 116# 117FPU_CFLAGS := -msse -msse2 118ifdef CONFIG_CC_IS_GCC 119# Stack alignment mismatch, proceed with caution. --- 323 unchanged lines hidden --- |