]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/libclang_rt/compiler-rt-vars.mk
riscv: remove more riscv64sf support
[FreeBSD/FreeBSD.git] / lib / libclang_rt / compiler-rt-vars.mk
1 CLANG_SUBDIR=clang/17
2 CLANGDIR=       /usr/lib/${CLANG_SUBDIR}
3 SANITIZER_LIBDIR=               ${CLANGDIR}/lib/freebsd
4 SANITIZER_SHAREDIR=             ${CLANGDIR}/share
5
6 # armv[67] is a bit special since we allow a soft-floating version via
7 # CPUTYPE matching *soft*. This variant may not actually work though.
8 .if ${MACHINE_ARCH:Marmv[67]*} != "" && \
9     (!defined(CPUTYPE) || ${CPUTYPE:M*soft*} == "")
10 CRTARCH?=       armhf
11 .else
12 CRTARCH?=       ${MACHINE_ARCH:S/amd64/x86_64/}
13 .endif
14
15 .if ${COMPILER_TYPE} == "clang"
16 # The only way to set the path to the sanitizer libraries with clang is to
17 # override the resource directory.
18 # Note: lib/freebsd is automatically appended to the -resource-dir value.
19 SANITIZER_LDFLAGS+=     -resource-dir=${SYSROOT}${CLANGDIR}
20 # Also set RPATH to ensure that the dynamically linked runtime libs are found.
21 SANITIZER_LDFLAGS+=     -Wl,--enable-new-dtags
22 SANITIZER_LDFLAGS+=     -Wl,-rpath,${SANITIZER_LIBDIR}
23 .elif ${COMPILER_TYPE} != "none"
24 # This file can be included with COMPILER_TYPE=none during the cleandir phase,
25 # only emit an error when trying to compile with an unsupported compiler such
26 # as GCC.
27 .error "Unknown link flags for -fsanitize=... COMPILER_TYPE=${COMPILER_TYPE}"
28 .endif