mirror of
https://github.com/opnsense/src.git
synced 2026-06-05 06:42:56 -04:00
Skip building libclang_rt when WITHOUT_CLANG is used
As noted in bug 277096, when building a pkgbase repository using WITHOUT_CROSS_COMPILER and WITHOUT_TOOLCHAIN (which sets WITHOUT_CLANG), the following residual files are left over: /usr/lib/clang/18/lib/freebsd/libclang_rt.asan-x86_64.so /usr/lib/clang/18/share/asan_ignore_list.txt /usr/lib/clang/18/share/cfi_ignore_list.txt /usr/lib/clang/18/share/msan_ignore_list.txt This is because the lib/libclang_rt directory is still descended into, even if WITHOUT_CLANG is used. Fix it by not descending into the libclang_rt directory in that case. PR: 277096 Reported by: Siva Mahadevan <me@svmhdvn.name> MFC after: 3 days
This commit is contained in:
parent
d66399326c
commit
514773a548
1 changed files with 1 additions and 1 deletions
|
|
@ -182,7 +182,7 @@ SUBDIR.${MK_LDNS}+= libldns
|
|||
SUBDIR.${MK_STATS}+= libstats
|
||||
|
||||
# The libraries under libclang_rt can only be built by clang.
|
||||
.if ${COMPILER_TYPE} == "clang"
|
||||
.if ${COMPILER_TYPE} == "clang" && ${MK_CLANG} != "no"
|
||||
_libclang_rt= libclang_rt
|
||||
.elif (${MK_ASAN} != "no" || ${MK_UBSAN} != "no") && make(all)
|
||||
.error Requested build with sanitizers but cannot build runtime libraries!
|
||||
|
|
|
|||
Loading…
Reference in a new issue