From owner-svn-ports-head@freebsd.org Tue Feb 13 03:00:24 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 42B3FF17502; Tue, 13 Feb 2018 03:00:24 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E46D27EABD; Tue, 13 Feb 2018 03:00:23 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id DF8161AEC6; Tue, 13 Feb 2018 03:00:23 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w1D30Nd8056060; Tue, 13 Feb 2018 03:00:23 GMT (envelope-from lwhsu@FreeBSD.org) Received: (from lwhsu@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w1D30NJV056059; Tue, 13 Feb 2018 03:00:23 GMT (envelope-from lwhsu@FreeBSD.org) Message-Id: <201802130300.w1D30NJV056059@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lwhsu set sender to lwhsu@FreeBSD.org using -f From: Li-Wen Hsu Date: Tue, 13 Feb 2018 03:00:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r461683 - head/devel/riscv64-gcc X-SVN-Group: ports-head X-SVN-Commit-Author: lwhsu X-SVN-Commit-Paths: head/devel/riscv64-gcc X-SVN-Commit-Revision: 461683 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Feb 2018 03:00:24 -0000 Author: lwhsu Date: Tue Feb 13 03:00:23 2018 New Revision: 461683 URL: https://svnweb.freebsd.org/changeset/ports/461683 Log: Chase devel/riscv64-binutils update Modified: head/devel/riscv64-gcc/Makefile Modified: head/devel/riscv64-gcc/Makefile ============================================================================== --- head/devel/riscv64-gcc/Makefile Tue Feb 13 02:59:22 2018 (r461682) +++ head/devel/riscv64-gcc/Makefile Tue Feb 13 03:00:23 2018 (r461683) @@ -2,6 +2,7 @@ PORTNAME= gcc PORTVERSION= 7.2.0 +PORTREVISION= 1 CATEGORIES= devel PKGNAMEPREFIX= riscv64- @@ -36,8 +37,8 @@ CONFIGURE_ARGS= --target=${GCC_TARGET} \ --without-headers \ --with-pkgversion="FreeBSD Ports Collection for ${PKGNAMEPREFIX:C/-//g}" \ --with-system-zlib \ - --with-as=${LOCALBASE}/bin/${PKGNAMEPREFIX}freebsd-as \ - --with-ld=${LOCALBASE}/bin/${PKGNAMEPREFIX}freebsd-ld \ + --with-as=${LOCALBASE}/bin/${PKGNAMEPREFIX}unknown-${OPSYS:tl}${OSREL}-as \ + --with-ld=${LOCALBASE}/bin/${PKGNAMEPREFIX}unknown-${OPSYS:tl}${OSREL}-ld \ --disable-werror \ --disable-shared \ --enable-threads \