]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/libc/x86/sys/Makefile.inc
ssh: update to OpenSSH v8.9p1
[FreeBSD/FreeBSD.git] / lib / libc / x86 / sys / Makefile.inc
1 # $FreeBSD$
2
3 .PATH:  ${LIBC_SRCTOP}/x86/sys
4
5 SRCS+= \
6         __vdso_gettc.c \
7         pkru.c \
8         sched_getcpu_x86.c
9
10 MAN+=   \
11         pkru.3
12
13 .if ${MACHINE_CPUARCH} == "amd64" && ${MK_HYPERV} != "no"
14 CFLAGS+=        -DWANT_HYPERV
15 .endif
16 # We can't use sanitizer instrumentation on ifuncs called during sanitizer
17 # runtime startup.
18 .if ${MK_ASAN} != "no"
19 CFLAGS.__vdso_gettc.c+=-fno-sanitize=address
20 .endif
21 .if ${MK_UBSAN} != "no"
22 CFLAGS.__vdso_gettc.c+=-fno-sanitize=undefined
23 .endif