git: f48cd806e04a - main - build: Do not run ctfconvert on VDSO files
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 14 Feb 2024 14:59:16 UTC
The branch main has been updated by markj:
URL: https://cgit.FreeBSD.org/src/commit/?id=f48cd806e04a7d6f459cfd93dba283465d40e190
commit f48cd806e04a7d6f459cfd93dba283465d40e190
Author: Mark Johnston <markj@FreeBSD.org>
AuthorDate: 2024-02-13 23:06:58 +0000
Commit: Mark Johnston <markj@FreeBSD.org>
CommitDate: 2024-02-14 14:57:38 +0000
build: Do not run ctfconvert on VDSO files
Reviewed by: emaste
MFC after: 1 week
Differential Revision: https://reviews.freebsd.org/D43877
---
sys/conf/files.amd64 | 2 ++
1 file changed, 2 insertions(+)
diff --git a/sys/conf/files.amd64 b/sys/conf/files.amd64
index 5eae8a0de3c2..cb5ed560a82e 100644
--- a/sys/conf/files.amd64
+++ b/sys/conf/files.amd64
@@ -14,12 +14,14 @@ include "conf/files.x86"
elf-vdso.so.o standard \
dependency "$S/amd64/amd64/sigtramp.S assym.inc $S/conf/vdso_amd64.ldscript $S/tools/amd64_vdso.sh" \
compile-with "env AWK='${AWK}' NM='${NM}' LD='${LD}' CC='${CC}' DEBUG='${DEBUG}' OBJCOPY='${OBJCOPY}' ELFDUMP='${ELFDUMP}' S='${S}' sh $S/tools/amd64_vdso.sh" \
+ no-ctfconvert \
no-implicit-rule before-depend \
clean "elf-vdso.so.o elf-vdso.so.1 vdso_offsets.h sigtramp.pico"
#
elf-vdso32.so.o optional compat_freebsd32 \
dependency "$S/amd64/ia32/ia32_sigtramp.S ia32_assym.h $S/conf/vdso_amd64_ia32.ldscript $S/tools/amd64_ia32_vdso.sh" \
compile-with "env AWK='${AWK}' NM='${NM}' LD='${LD}' CC='${CC}' DEBUG='${DEBUG}' OBJCOPY='${OBJCOPY}' ELFDUMP='${ELFDUMP}' S='${S}' sh $S/tools/amd64_ia32_vdso.sh" \
+ no-ctfconvert \
no-implicit-rule before-depend \
clean "elf-vdso32.so.o elf-vdso32.so.1 vdso_ia32_offsets.h ia32_sigtramp.pico"
#