From owner-freebsd-arm@FreeBSD.ORG Tue Sep 17 14:13:42 2013 Return-Path: Delivered-To: freebsd-arm@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 09E77AA6 for ; Tue, 17 Sep 2013 14:13:42 +0000 (UTC) (envelope-from ronald-freebsd8@klop.yi.org) Received: from cpsmtpb-ews04.kpnxchange.com (cpsmtpb-ews04.kpnxchange.com [213.75.39.7]) by mx1.freebsd.org (Postfix) with ESMTP id 94E0B281E for ; Tue, 17 Sep 2013 14:13:41 +0000 (UTC) Received: from cpsps-ews24.kpnxchange.com ([10.94.84.190]) by cpsmtpb-ews04.kpnxchange.com with Microsoft SMTPSVC(7.5.7601.17514); Tue, 17 Sep 2013 16:13:32 +0200 Received: from CPSMTPM-TLF104.kpnxchange.com ([195.121.3.7]) by cpsps-ews24.kpnxchange.com with Microsoft SMTPSVC(7.5.7601.17514); Tue, 17 Sep 2013 16:13:31 +0200 Received: from sjakie.klop.ws ([212.182.167.131]) by CPSMTPM-TLF104.kpnxchange.com with Microsoft SMTPSVC(7.5.7601.17514); Tue, 17 Sep 2013 16:13:32 +0200 Received: from 212-182-167-131.ip.telfort.nl (localhost [127.0.0.1]) by sjakie.klop.ws (Postfix) with ESMTP id 6C83717C23 for ; Tue, 17 Sep 2013 16:13:29 +0200 (CEST) Content-Type: text/plain; charset=us-ascii; format=flowed; delsp=yes Subject: svn on armv5 with clang? (Fwd: svn commit: r254539 - head/usr.bin) References: <201308191744.r7JHiJ00063824@svn.freebsd.org> To: "freebsd-arm@freebsd.org" Date: Tue, 17 Sep 2013 16:13:22 +0200 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: "Ronald Klop" Message-ID: In-Reply-To: <201308191744.r7JHiJ00063824@svn.freebsd.org> User-Agent: Opera Mail/12.16 (FreeBSD) X-OriginalArrivalTime: 17 Sep 2013 14:13:32.0168 (UTC) FILETIME=[16FDF080:01CEB3B0] X-RcptDomain: freebsd.org X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Porting FreeBSD to the StrongARM Processor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Sep 2013 14:13:42 -0000 Hi, I am reading up on commits and found this one. Is ARMv5 capable of building the in-tree svn also? Ronald. ------- Forwarded message ------- From: "Andrew Turner" To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Cc: Subject: svn commit: r254539 - head/usr.bin Date: Mon, 19 Aug 2013 19:44:19 +0200 Author: andrew Date: Mon Aug 19 17:44:19 2013 New Revision: 254539 URL: http://svnweb.freebsd.org/changeset/base/254539 Log: Subversion requires atomic functions we only support on arm with clang. Modified: head/usr.bin/Makefile Modified: head/usr.bin/Makefile ============================================================================== --- head/usr.bin/Makefile Mon Aug 19 17:09:14 2013 (r254538) +++ head/usr.bin/Makefile Mon Aug 19 17:44:19 2013 (r254539) @@ -366,7 +366,9 @@ SUBDIR+= users SUBDIR+= who .endif -.if ${MACHINE_ARCH} == "amd64" || ${MACHINE_ARCH} == "ia64" || ${MACHINE_ARCH} == "sparc64" || ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "armv6" +.if ${MACHINE_ARCH} == "amd64" || ${MACHINE_ARCH} == "ia64" || \ + ${MACHINE_ARCH} == "sparc64" || ${MACHINE_ARCH} == "i386" || \ + (${MACHINE_ARCH} == "armv6" && ${COMPILER_TYPE} == "clang") .if ${MK_SVN} == "yes" || ${MK_SVNLITE} == "yes" SUBDIR+= svn .endif _______________________________________________ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org"