From owner-svn-ports-head@freebsd.org Wed Jan 4 11:46:14 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0AEACC9ED61; Wed, 4 Jan 2017 11:46:14 +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 mx1.freebsd.org (Postfix) with ESMTPS id C614614B0; Wed, 4 Jan 2017 11:46:13 +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 v04BkCAR060036; Wed, 4 Jan 2017 11:46:12 GMT (envelope-from lwhsu@FreeBSD.org) Received: (from lwhsu@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v04BkCLV060034; Wed, 4 Jan 2017 11:46:12 GMT (envelope-from lwhsu@FreeBSD.org) Message-Id: <201701041146.v04BkCLV060034@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lwhsu set sender to lwhsu@FreeBSD.org using -f From: Li-Wen Hsu Date: Wed, 4 Jan 2017 11:46:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r430547 - in head/devel: . riscv64-xtoolchain-gcc X-SVN-Group: ports-head 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.23 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: Wed, 04 Jan 2017 11:46:14 -0000 Author: lwhsu Date: Wed Jan 4 11:46:12 2017 New Revision: 430547 URL: https://svnweb.freebsd.org/changeset/ports/430547 Log: Add an external toolchain for riscv64 TARGET_ARCH Approved by: bapt Added: head/devel/riscv64-xtoolchain-gcc/ head/devel/riscv64-xtoolchain-gcc/Makefile (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed Jan 4 10:24:36 2017 (r430546) +++ head/devel/Makefile Wed Jan 4 11:46:12 2017 (r430547) @@ -4956,6 +4956,7 @@ SUBDIR += rhtvision SUBDIR += riscv64-binutils SUBDIR += riscv64-gcc + SUBDIR += riscv64-xtoolchain-gcc SUBDIR += rlog SUBDIR += rlvm SUBDIR += rlwrap Added: head/devel/riscv64-xtoolchain-gcc/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/riscv64-xtoolchain-gcc/Makefile Wed Jan 4 11:46:12 2017 (r430547) @@ -0,0 +1,7 @@ +# $FreeBSD$ + +PKGNAMEPREFIX= riscv64- + +MASTERDIR= ${.CURDIR}/../powerpc64-xtoolchain-gcc + +.include "${MASTERDIR}/Makefile"