From owner-svn-src-projects@freebsd.org Fri Jul 15 16:37:37 2016 Return-Path: Delivered-To: svn-src-projects@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 C0BF3B990C2 for ; Fri, 15 Jul 2016 16:37:37 +0000 (UTC) (envelope-from sbruno@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 90FA31CE7; Fri, 15 Jul 2016 16:37:37 +0000 (UTC) (envelope-from sbruno@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u6FGbaRk024172; Fri, 15 Jul 2016 16:37:36 GMT (envelope-from sbruno@FreeBSD.org) Received: (from sbruno@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u6FGbaNu024171; Fri, 15 Jul 2016 16:37:36 GMT (envelope-from sbruno@FreeBSD.org) Message-Id: <201607151637.u6FGbaNu024171@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sbruno set sender to sbruno@FreeBSD.org using -f From: Sean Bruno Date: Fri, 15 Jul 2016 16:37:36 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r302905 - projects/mips64-clang/sys/boot/mips X-SVN-Group: projects MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Jul 2016 16:37:37 -0000 Author: sbruno Date: Fri Jul 15 16:37:36 2016 New Revision: 302905 URL: https://svnweb.freebsd.org/changeset/base/302905 Log: beri boot loader doesn't build with clang external toolchain. Disable it for the "if gcc && mips64" case. Modified: projects/mips64-clang/sys/boot/mips/Makefile Modified: projects/mips64-clang/sys/boot/mips/Makefile ============================================================================== --- projects/mips64-clang/sys/boot/mips/Makefile Fri Jul 15 15:55:36 2016 (r302904) +++ projects/mips64-clang/sys/boot/mips/Makefile Fri Jul 15 16:37:36 2016 (r302905) @@ -2,6 +2,10 @@ .include # +# clang is unable to compile this uboot code at this time +.if ${COMPILER_TYPE} == "gcc" +SUBDIR+= uboot +# # The BERI boot loader port works only on 64-bit MIPS; not a hard port to # 32-bit if someone is interested. Build on all 64-bit MIPS platforms to # ensure it gets adequate build-test coverage. @@ -9,11 +13,6 @@ .if ${MACHINE_ARCH} == "mips64" SUBDIR+= beri .endif - -# -# clang is unable to compile this uboot code at this time -.if ${COMPILER_TYPE} == "gcc" -SUBDIR+= uboot .endif .include