binutils-gdb/gdb/testsuite/gdb.threads/tls-nodebug.c

13 lines
249 B
C

/* Test accessing TLS based variable without any debug info compiled. */
#include <pthread.h>
__thread int thread_local = 42;
int main(void)
{
/* Ensure we link against pthreads even with --as-needed. */
pthread_testcancel();
return 0;
}