From owner-svn-src-head@FreeBSD.ORG Thu Jun 14 20:27:29 2012 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0BC4F106566C; Thu, 14 Jun 2012 20:27:29 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [69.147.83.44]) by mx1.freebsd.org (Postfix) with ESMTP id EA3448FC0C; Thu, 14 Jun 2012 20:27:28 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q5EKRSmY017382; Thu, 14 Jun 2012 20:27:28 GMT (envelope-from marius@svn.freebsd.org) Received: (from marius@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q5EKRSev017379; Thu, 14 Jun 2012 20:27:28 GMT (envelope-from marius@svn.freebsd.org) Message-Id: <201206142027.q5EKRSev017379@svn.freebsd.org> From: Marius Strobl Date: Thu, 14 Jun 2012 20:27:28 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r237098 - in head/gnu/lib: libgomp libstdc++ X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Jun 2012 20:27:29 -0000 Author: marius Date: Thu Jun 14 20:27:28 2012 New Revision: 237098 URL: http://svn.freebsd.org/changeset/base/237098 Log: Turn on TLS support for arm on here as it is supported since r231618/ r231619 and working since r233106. Modified: head/gnu/lib/libgomp/config.h head/gnu/lib/libstdc++/config.h Modified: head/gnu/lib/libgomp/config.h ============================================================================== --- head/gnu/lib/libgomp/config.h Thu Jun 14 20:20:59 2012 (r237097) +++ head/gnu/lib/libgomp/config.h Thu Jun 14 20:27:28 2012 (r237098) @@ -59,7 +59,7 @@ #define HAVE_SYS_TYPES_H 1 /* Define to 1 if the target supports thread-local storage. */ -#if !defined(__arm__) && !defined(__mips__) +#if !defined(__mips__) #define HAVE_TLS 1 #endif Modified: head/gnu/lib/libstdc++/config.h ============================================================================== --- head/gnu/lib/libstdc++/config.h Thu Jun 14 20:20:59 2012 (r237097) +++ head/gnu/lib/libstdc++/config.h Thu Jun 14 20:27:28 2012 (r237098) @@ -371,7 +371,7 @@ /* #undef HAVE_TANL */ /* Define to 1 if the target supports thread-local storage. */ -#if !defined(__arm__) && !defined(__mips__) +#if !defined(__mips__) #define HAVE_TLS 1 #endif