cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

Makefile (467B)


      1# SPDX-License-Identifier: GPL-2.0
      2#
      3# Makefile for the x86 low level entry code
      4#
      5
      6KASAN_SANITIZE := n
      7UBSAN_SANITIZE := n
      8KCOV_INSTRUMENT := n
      9
     10CFLAGS_REMOVE_common.o		= $(CC_FLAGS_FTRACE)
     11
     12CFLAGS_common.o			+= -fno-stack-protector
     13
     14obj-y				:= entry_$(BITS).o thunk_$(BITS).o syscall_$(BITS).o
     15obj-y				+= common.o
     16
     17obj-y				+= vdso/
     18obj-y				+= vsyscall/
     19
     20obj-$(CONFIG_IA32_EMULATION)	+= entry_64_compat.o syscall_32.o
     21obj-$(CONFIG_X86_X32_ABI)	+= syscall_x32.o
     22