1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-07 06:43:00 +03:00

(banner): If TLS support available say so.

This commit is contained in:
Ulrich Drepper
2002-02-09 01:29:45 +00:00
parent 0f0d61adf5
commit 013aafb7d0

View File

@@ -17,6 +17,7 @@
02111-1307 USA. */ 02111-1307 USA. */
#include "version.h" #include "version.h"
#include <tls.h>
#include <gnu/libc-version.h> #include <gnu/libc-version.h>
static const char __libc_release[] = RELEASE; static const char __libc_release[] = RELEASE;
@@ -33,6 +34,9 @@ Compiled by GNU CC version "__VERSION__".\n"
#ifdef GLIBC_OLDEST_ABI #ifdef GLIBC_OLDEST_ABI
"The oldest ABI supported: " GLIBC_OLDEST_ABI ".\n" "The oldest ABI supported: " GLIBC_OLDEST_ABI ".\n"
#endif #endif
#ifdef USE_TLS
"Thread-local storage support included.\n"
#endif
"Report bugs using the `glibcbug' script to <bugs@gnu.org>.\n"; "Report bugs using the `glibcbug' script to <bugs@gnu.org>.\n";
#include <unistd.h> #include <unistd.h>