From 40dadc73bc1b359b26a5ab4cd842c418b5360e65 Mon Sep 17 00:00:00 2001 From: Pawel Wieczorkiewicz Date: Wed, 21 Aug 2019 08:20:38 +0000 Subject: [PATCH] livepatch-gcc: Ignore built_in.o and prelink.o object files Do not copy over the built_in.o and prelink.o object files when they get rebuilt as they are used for transient linking by Xen's build system. Signed-off-by: Pawel Wieczorkiewicz Reviewed-by: Martin Pohlack Reviewed-by: Petre Eftime Reviewed-by: Ross Lagerwall Signed-off-by: Ross Lagerwall --- livepatch-gcc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/livepatch-gcc b/livepatch-gcc index 617f865..01e4b8c 100755 --- a/livepatch-gcc +++ b/livepatch-gcc @@ -35,6 +35,8 @@ if [[ "$TOOLCHAINCMD" =~ $GCC_RE ]] ; then version.o|\ debug.o|\ *.xen-syms.*.o|\ + built_in.o|\ + prelink.o|\ .*.o) break ;; -- 2.39.5