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 A15B53858425 for ; Wed, 21 Dec 2022 23:30:22 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org A15B53858425 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 reform (deer0x15.wildebeest.org [172.31.17.151]) (using TLSv1.2 with cipher ADH-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by gnu.wildebeest.org (Postfix) with ESMTPSA id CADE6300071A; Thu, 22 Dec 2022 00:30:20 +0100 (CET) Received: by reform (Postfix, from userid 1000) id 5B2822E803A3; Thu, 22 Dec 2022 00:30:20 +0100 (CET) Date: Thu, 22 Dec 2022 00:30:20 +0100 From: Mark Wielaard To: Shahab Vahedi Cc: elfutils-devel@sourceware.org, Claudiu Zissulescu , Francois Bedard Subject: Re: [PATCH v4] Add support for Synopsys ARCv2 processors Message-ID: References: <20221220115627.10483-1-shahab@synopsys.com> <20221221112705.22448-1-shahab@synopsys.email> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20221221112705.22448-1-shahab@synopsys.email> X-Spam-Status: No, score=-3032.0 required=5.0 tests=BAYES_00,JMQ_SPF_NEUTRAL,KAM_ASCII_DIVIDERS,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: Hi Shahab, On Wed, Dec 21, 2022 at 12:27:05PM +0100, Shahab Vahedi via Elfutils-devel wrote: > There is no regression in tests for an x86_64 build, while the new > hello_arc_hs4.ko is added as well. This is the only meaningful > test that I could add at the moment, given the features supported > by this port. > > $ cat tests/test-suite.log > ========================================== > elfutils 0.188: tests/test-suite.log > ========================================== > > # TOTAL: 236 > # PASS: 235 > # SKIP: 1 > # XFAIL: 0 > # FAIL: 0 > # XPASS: 0 > # ERROR: 0 > > .. contents:: :depth: 2 > > SKIP: run-lfs-symbols.sh > ======================== > > LFS testing is irrelevant on this system > SKIP run-lfs-symbols.sh (exit status: 77) > > $ cat tests/run-strip-reloc.sh.log > runtest hello_i386.ko > runtest hello_x86_64.ko > runtest hello_ppc64.ko > runtest hello_s390.ko > runtest hello_aarch64.ko > runtest hello_m68k.ko > runtest hello_riscv64.ko > runtest hello_csky.ko > runtest hello_arc_hs4.ko <-- [ new ARC HS4 test ] > runtest /home/shahab/pahole_pkg/elfutils-git/bld_arc/src/strip > runtest /home/shahab/pahole_pkg/elfutils-git/bld_arc/src/strip.o > runtest strip-uncompressed.o > runtest strip-compressed.o > runtest testfile-debug-rel-ppc64.o > runtest testfile-debug-rel-ppc64-z.o > runtest testfile-debug-rel-ppc64-g.o > PASS run-strip-reloc.sh (exit status: 0) > > Signed-off-by: Shahab Vahedi > --- > Changelog: > v4: > - Add EM_ARCV2 to valid_e_machine[] in src/elflint.c. > - Add a link to ARCv3 elf document in arc_init.c. > - Update ChangeLogs. Very nice. Pushed. Thanks, Mark