From owner-svn-ports-all@freebsd.org Wed Nov 4 19:45:21 2015 Return-Path: Delivered-To: svn-ports-all@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 55980A261F3; Wed, 4 Nov 2015 19:45:21 +0000 (UTC) (envelope-from brooks@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 23BC01C0F; Wed, 4 Nov 2015 19:45:21 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tA4JjKxB049007; Wed, 4 Nov 2015 19:45:20 GMT (envelope-from brooks@FreeBSD.org) Received: (from brooks@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tA4JjKlD049006; Wed, 4 Nov 2015 19:45:20 GMT (envelope-from brooks@FreeBSD.org) Message-Id: <201511041945.tA4JjKlD049006@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brooks set sender to brooks@FreeBSD.org using -f From: Brooks Davis Date: Wed, 4 Nov 2015 19:45:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r400755 - head/devel/llvm36/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Nov 2015 19:45:21 -0000 Author: brooks Date: Wed Nov 4 19:45:20 2015 New Revision: 400755 URL: https://svnweb.freebsd.org/changeset/ports/400755 Log: Allow build on aarch64. PR: 204281 Submitted by: andrew Modified: head/devel/llvm36/files/patch-utils_llvm-build_llvmbuild_main.py Modified: head/devel/llvm36/files/patch-utils_llvm-build_llvmbuild_main.py ============================================================================== --- head/devel/llvm36/files/patch-utils_llvm-build_llvmbuild_main.py Wed Nov 4 19:36:01 2015 (r400754) +++ head/devel/llvm36/files/patch-utils_llvm-build_llvmbuild_main.py Wed Nov 4 19:45:20 2015 (r400755) @@ -1,11 +1,12 @@ --- utils/llvm-build/llvmbuild/main.py.orig +++ utils/llvm-build/llvmbuild/main.py -@@ -660,7 +660,17 @@ +@@ -718,7 +718,18 @@ # We handle a few special cases of target names here for historical # reasons, as these are the names configure currently comes up with. - native_target_name = { 'x86' : 'X86', -+ native_target_name = { 'amd64' : 'X86', ++ native_target_name = { 'aarch64' : 'AArch64', ++ 'amd64' : 'X86', + 'arm' : 'ARM', + 'armeb' : 'ARM', + 'armv6' : 'ARM',