From owner-svn-ports-head@freebsd.org Mon Sep 18 21:44:18 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 25622E09A3A; Mon, 18 Sep 2017 21:44:18 +0000 (UTC) (envelope-from ed@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 E6B0381544; Mon, 18 Sep 2017 21:44:17 +0000 (UTC) (envelope-from ed@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v8ILiG3h070843; Mon, 18 Sep 2017 21:44:16 GMT (envelope-from ed@FreeBSD.org) Received: (from ed@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v8ILiGZ6070842; Mon, 18 Sep 2017 21:44:16 GMT (envelope-from ed@FreeBSD.org) Message-Id: <201709182144.v8ILiGZ6070842@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ed set sender to ed@FreeBSD.org using -f From: Ed Schouten Date: Mon, 18 Sep 2017 21:44:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r450083 - head/devel/cloudabi-toolchain X-SVN-Group: ports-head X-SVN-Commit-Author: ed X-SVN-Commit-Paths: head/devel/cloudabi-toolchain X-SVN-Commit-Revision: 450083 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.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: Mon, 18 Sep 2017 21:44:18 -0000 Author: ed (src committer) Date: Mon Sep 18 21:44:16 2017 New Revision: 450083 URL: https://svnweb.freebsd.org/changeset/ports/450083 Log: Let cloudabi-toolchain use LLVM 5.0. Now that we have a devel/llvm50 port, let's switch the CloudABI toolchain port from LLVM 4.0 to 5.0. In addition to providing more complete C++17 support, this will allow us to experiment with C++ coroutines. Reviewed by: bapt Differential Revision: https://reviews.freebsd.org/D12401 Modified: head/devel/cloudabi-toolchain/Makefile Modified: head/devel/cloudabi-toolchain/Makefile ============================================================================== --- head/devel/cloudabi-toolchain/Makefile Mon Sep 18 21:40:04 2017 (r450082) +++ head/devel/cloudabi-toolchain/Makefile Mon Sep 18 21:44:16 2017 (r450083) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= cloudabi-toolchain -PORTVERSION= 1.10 +PORTVERSION= 1.11 CATEGORIES= devel MASTER_SITES= # None DISTFILES= # None @@ -18,7 +18,7 @@ RUN_DEPENDS= clang${LLVM_SUFFIX}:devel/llvm${LLVM_SUFF CONFLICTS= cloudabi-binutils-* -LLVM_SUFFIX= 40 +LLVM_SUFFIX= 50 CLOUDABI_ARCHS= aarch64-unknown-cloudabi armv6-unknown-cloudabi-eabihf \ armv7-unknown-cloudabi-eabihf i686-unknown-cloudabi \