From: Pawel Wieczorkiewicz Date: Wed, 21 Aug 2019 08:20:38 +0000 (+0000) Subject: livepatch-gcc: Ignore built_in.o and prelink.o object files X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=40dadc73bc1b359b26a5ab4cd842c418b5360e65;p=livepatch-build-tools.git 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 --- 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 ;;