From owner-svn-src-stable-9@FreeBSD.ORG Sat Jun 23 18:43:12 2012 Return-Path: Delivered-To: svn-src-stable-9@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7DDBF106564A; Sat, 23 Jun 2012 18:43:12 +0000 (UTC) (envelope-from marius@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 4DCC28FC08; Sat, 23 Jun 2012 18:43:12 +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 q5NIhBs3057758; Sat, 23 Jun 2012 18:43:11 GMT (envelope-from marius@svn.freebsd.org) Received: (from marius@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q5NIhBNk057754; Sat, 23 Jun 2012 18:43:11 GMT (envelope-from marius@svn.freebsd.org) Message-Id: <201206231843.q5NIhBNk057754@svn.freebsd.org> From: Marius Strobl Date: Sat, 23 Jun 2012 18:43:11 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org X-SVN-Group: stable-9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r237492 - in stable/9/gnu: lib/libgomp lib/libstdc++ usr.bin/cc/cc_tools X-BeenThere: svn-src-stable-9@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for only the 9-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Jun 2012 18:43:12 -0000 Author: marius Date: Sat Jun 23 18:43:11 2012 New Revision: 237492 URL: http://svn.freebsd.org/changeset/base/237492 Log: MFC: r231620, r237098 Enable TLS support for ARM toolchain Modified: stable/9/gnu/lib/libgomp/config.h stable/9/gnu/lib/libstdc++/config.h stable/9/gnu/usr.bin/cc/cc_tools/auto-host.h Directory Properties: stable/9/gnu/lib/libgomp/ (props changed) stable/9/gnu/lib/libstdc++/ (props changed) stable/9/gnu/usr.bin/cc/cc_tools/ (props changed) Modified: stable/9/gnu/lib/libgomp/config.h ============================================================================== --- stable/9/gnu/lib/libgomp/config.h Sat Jun 23 18:39:35 2012 (r237491) +++ stable/9/gnu/lib/libgomp/config.h Sat Jun 23 18:43:11 2012 (r237492) @@ -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: stable/9/gnu/lib/libstdc++/config.h ============================================================================== --- stable/9/gnu/lib/libstdc++/config.h Sat Jun 23 18:39:35 2012 (r237491) +++ stable/9/gnu/lib/libstdc++/config.h Sat Jun 23 18:43:11 2012 (r237492) @@ -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 Modified: stable/9/gnu/usr.bin/cc/cc_tools/auto-host.h ============================================================================== --- stable/9/gnu/usr.bin/cc/cc_tools/auto-host.h Sat Jun 23 18:39:35 2012 (r237491) +++ stable/9/gnu/usr.bin/cc/cc_tools/auto-host.h Sat Jun 23 18:43:11 2012 (r237492) @@ -287,10 +287,8 @@ /* Define if your assembler supports thread-local storage. */ #ifndef USED_FOR_TARGET -#if !defined(__arm__) #define HAVE_AS_TLS 1 #endif -#endif /* Define to 1 if you have the `atoll' function. */