From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from gnu.wildebeest.org (gnu.wildebeest.org [45.83.234.184]) by sourceware.org (Postfix) with ESMTPS id 7B0163857C63 for ; Fri, 28 Oct 2022 12:07:39 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 7B0163857C63 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=klomp.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=klomp.org Received: from tarox.wildebeest.org (83-87-18-245.cable.dynamic.v4.ziggo.nl [83.87.18.245]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by gnu.wildebeest.org (Postfix) with ESMTPSA id D03DF330CD40; Fri, 28 Oct 2022 14:07:37 +0200 (CEST) Received: by tarox.wildebeest.org (Postfix, from userid 1000) id 5DCF3413CD0E; Fri, 28 Oct 2022 14:07:37 +0200 (CEST) Message-ID: Subject: Re: [PATCH 07/25] move platform depended include into system.h of libasm, libcpu, libdw, libdwfl and libdwelf From: Mark Wielaard To: Yonggang Luo , elfutils-devel@sourceware.org Date: Fri, 28 Oct 2022 14:07:37 +0200 In-Reply-To: <20221020182603.815-8-luoyonggang@gmail.com> References: <20221020182603.815-1-luoyonggang@gmail.com> <20221020182603.815-8-luoyonggang@gmail.com> Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Mailer: Evolution 3.28.5 (3.28.5-10.el7) Mime-Version: 1.0 X-Spam-Status: No, score=-3033.2 required=5.0 tests=BAYES_00,JMQ_SPF_NEUTRAL,KAM_DMARC_STATUS,SPF_HELO_NONE,SPF_PASS,TXREP autolearn=no autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: On Fri, 2022-10-21 at 02:25 +0800, Yonggang Luo via Elfutils-devel wrote: > Signed-off-by: Yonggang Luo > --- > lib/color.c | 1 - > libasm/asm_abort.c | 1 - > libasm/asm_addint8.c | 2 -- > libasm/asm_begin.c | 2 -- > libasm/asm_end.c | 2 -- > libasm/libasmP.h | 3 +++ > libcpu/i386_disasm.c | 1 - > libcpu/memory-access.h | 3 +-- > libdw/dwarf_begin_elf.c | 2 -- > libdw/dwarf_end.c | 1 - > libdw/dwarf_setalt.c | 2 -- > libdw/libdw_find_split_unit.c | 1 - > libdwelf/dwelf_elf_begin.c | 2 -- > libdwelf/dwelf_strtab.c | 1 - > libdwfl/argp-std.c | 1 - > libdwfl/core-file.c | 6 ------ > libdwfl/dwfl_build_id_find_debuginfo.c | 2 -- > libdwfl/dwfl_build_id_find_elf.c | 1 - > libdwfl/dwfl_end.c | 1 - > libdwfl/dwfl_frame.c | 1 - > libdwfl/dwfl_module.c | 1 - > libdwfl/dwfl_module_getdwarf.c | 1 - > libdwfl/dwfl_report_elf.c | 2 -- > libdwfl/dwfl_segment_report_module.c | 2 -- > libdwfl/find-debuginfo.c | 1 - > libdwfl/gzip.c | 2 -- > libdwfl/image-header.c | 4 ---- > libdwfl/link_map.c | 2 -- > libdwfl/linux-pid-attach.c | 1 - > libdwfl/offline.c | 1 - > libdwfl/open.c | 2 -- > 31 files changed, 4 insertions(+), 51 deletions(-) Tweak the commit message to fit on < 72 chars and added ChangeLog entries. Pushed, Mark