Received: by mail.netbsd.org (Postfix, from userid 605) id 2EE9384ED8; Sun, 12 May 2019 06:19:32 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id AA28984E2E for ; Sun, 12 May 2019 06:19:31 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id vyMNVrWbbdIf for ; Sun, 12 May 2019 06:19:31 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id D0D8A84ED3 for ; Sun, 12 May 2019 06:19:30 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id CECC6FB16; Sun, 12 May 2019 06:19:30 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1557641970109210" MIME-Version: 1.0 Date: Sun, 12 May 2019 06:19:30 +0000 From: "Ryo ONODERA" Subject: CVS commit: pkgsrc/cross/arm-none-eabi-binutils To: pkgsrc-changes@NetBSD.org Reply-To: ryoon@netbsd.org X-Mailer: log_accum Message-Id: <20190512061930.CECC6FB16@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1557641970109210 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: ryoon Date: Sun May 12 06:19:30 UTC 2019 Modified Files: pkgsrc/cross/arm-none-eabi-binutils: Makefile distinfo Log Message: Update to 2.32 Changelog: GAS Changes in 2.32: * Add -mvexwig=[0|1] option to x86 assembler to control encoding of VEX.W-ignored (WIG) VEX instructions. * Add -mx86-used-note=[yes|no] option to generate (or not) x86 GNU property notes. Add a --enable-x86-used-note configure time option to set the default behavior. Set the default if the configure option is not used to "no". * Add support for the MIPS Loongson EXTensions R2 (EXT2) instructions. * Add support for the MIPS Loongson EXTensions (EXT) instructions. * Add support for the MIPS Loongson Content Address Memory (CAM) ASE. * Add support for the C-SKY processor series. * Add support for the MIPS Loongson MultiMedia extensions Instructions (MMI) ASE. LD Changes in 2.32: * Report property change in linker map file when merging GNU properties. * Add support for the C-SKY processor series. * -t now doesn't report members within archives, unless -t is given twice. A single -t is now more useful when generating a list of files that should be packaged for a linker bug report. For example: gcc hello.c -save-temps -Wl,-t | xargs realpath | sort | uniq > files tar cJf test.tar.xz `cat files` BINUTILS Changes in 2.32: * The addr2line, c++filt, nm and objdump tools now have a limit on the maximum amount of recursion that is allowed whilst demangling strings. The value for this limit is defined by the DEMANGLE_RECRUSE_LIMIT constant declared in the include/demangle.h header file. At the time of writing this constant has the value of 2048. The --no-recurse-limit option can be used to remove the limit, restoring the behaviour of earlier versions of these tools. This may be needed in order to dmangle truly complicated names, but it also leaves the tools vulnerable to stack exhaustion from maliciously constructed mangled names. * Objdump's --disassemble option can now take a parameter, specifying the starting symbol for disassembly. Disassembly will continue from this symbol up to the next symbol or the end of the function. * The MIPS port now supports the Loongson 2K1000 processor which implements the MIPS64r2 ISA, the Loongson-mmi ASE, Loongson-cam ASE, Loongson-ext ASE, Loongson-ext2 ASE and MSA ASE instructions. Add -march=gs264e option for Loongson 2K1000 processor. * The MIPS port now supports the Loongson 3A2000/3A3000 processor which implements the MIPS64r2 ISA, the Loongson-mmi ASE, Loongson-cam ASE, Loongson-ext ASE and Loongson-ext2 ASE instructions. Add -march=gs464e option for Loongson 3A2000/3A3000 processor. * The MIPS port now supports the Loongson 3A1000 processor, aka Loongson3a, which implements the MIPS64r2 ISA, the Loongson-mmi ASE, Loongson-cam ASE and Loongson-ext ASE instructions. Add -march=gs464 option for Loongson 3A1000 processor, The -march=loongson3a is an alias of -march=gs464 for compatibility. To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 pkgsrc/cross/arm-none-eabi-binutils/Makefile cvs rdiff -u -r1.9 -r1.10 pkgsrc/cross/arm-none-eabi-binutils/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1557641970109210 Content-Disposition: inline Content-Length: 1791 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/cross/arm-none-eabi-binutils/Makefile diff -u pkgsrc/cross/arm-none-eabi-binutils/Makefile:1.8 pkgsrc/cross/arm-none-eabi-binutils/Makefile:1.9 --- pkgsrc/cross/arm-none-eabi-binutils/Makefile:1.8 Mon Jul 30 19:37:51 2018 +++ pkgsrc/cross/arm-none-eabi-binutils/Makefile Sun May 12 06:19:30 2019 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.8 2018/07/30 19:37:51 ryoon Exp $ +# $NetBSD: Makefile,v 1.9 2019/05/12 06:19:30 ryoon Exp $ -DISTNAME= binutils-2.31.1 +DISTNAME= binutils-2.32 PKGNAME= cross-arm-none-eabi-${DISTNAME} CATEGORIES= cross MASTER_SITES= ${MASTER_SITE_GNU:=binutils/} Index: pkgsrc/cross/arm-none-eabi-binutils/distinfo diff -u pkgsrc/cross/arm-none-eabi-binutils/distinfo:1.9 pkgsrc/cross/arm-none-eabi-binutils/distinfo:1.10 --- pkgsrc/cross/arm-none-eabi-binutils/distinfo:1.9 Mon Jul 30 19:37:51 2018 +++ pkgsrc/cross/arm-none-eabi-binutils/distinfo Sun May 12 06:19:30 2019 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.9 2018/07/30 19:37:51 ryoon Exp $ +$NetBSD: distinfo,v 1.10 2019/05/12 06:19:30 ryoon Exp $ -SHA1 (binutils-2.31.1.tar.bz2) = 1c5b0801b4857031d5626d917808cbd5c6401a4b -RMD160 (binutils-2.31.1.tar.bz2) = f688e5a4d8aa1548ecfbff0eb72ee156e6df7f1d -SHA512 (binutils-2.31.1.tar.bz2) = b42954e6f49a0adcd2676bdd77dfb59bfc25cec8184b007521d1e2b1d5d0593b58639e3d9448d5a40fe024c3cea386a37743627d6bb16d502f52a4a32b9573bd -Size (binutils-2.31.1.tar.bz2) = 30110779 bytes +SHA1 (binutils-2.32.tar.bz2) = ee5ae264f29c0c89fbaa817ee629675acd815d26 +RMD160 (binutils-2.32.tar.bz2) = 4d6c948ded0c20afeb4e7807d120b50d534770cc +SHA512 (binutils-2.32.tar.bz2) = 99ec7ed2b5ebfd3ac16cecb1567ec4a72f81ac30717002d601708f7547b2f8122ffcce076c986f22894aede33c54c73012210a4e973ba9b6e2d87a242a2bee12 +Size (binutils-2.32.tar.bz2) = 30782392 bytes --_----------=_1557641970109210--