From 3cc854f4230879f9513708723bcc0b1e101abf7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20=C4=8Cajka?= Date: Wed, 12 Jul 2017 17:26:26 +0200 Subject: [PATCH] Improved s390x patch --- s390x-ignore-L0syms.patch | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/s390x-ignore-L0syms.patch b/s390x-ignore-L0syms.patch index 5047f82..b832d79 100644 --- a/s390x-ignore-L0syms.patch +++ b/s390x-ignore-L0syms.patch @@ -6,9 +6,9 @@ index d4f9fc4..87dabaa 100644 continue } -+ if sect.name == ".debug_str" && strings.HasPrefix(sym.name, "L0") && sym.type_ == 0 { ++ if sect.name == ".debug_str" && sym.name == "L0" && sym.type_ == 0 { + // introduced by https://sourceware.org/git/?p=binutils-gdb.git;a=commit;h=49fced1206db40c71208c201165d65f92c69cebe on s390x -+ // TODO investigate from where they are actually coming from ++ // TODO investigate from where they are actually coming from, could be possible issue with elf parsing as seeing 0x1 in name is weird + // See issue + continue + }