Date: Thu, 14 Jun 2012 20:27:28 +0000 (UTC) From: Marius Strobl <marius@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r237098 - in head/gnu/lib: libgomp libstdc++ Message-ID: <201206142027.q5EKRSev017379@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201206142027.q5EKRSev017379>