1999-12-16 Mark Mitchell <mark@codesourcery.com>
[official-gcc.git] / boehm-gc / threadlibs.c
blobdf4eb77bb1da64abd258061985371e7ba44227c8
1 # include "gcconfig.h"
2 # include <stdio.h>
4 int main()
6 # if defined(IRIX_THREADS) || defined(LINUX_THREADS)
7 printf("-lpthread\n");
8 # endif
9 # if defined(HPUX_THREADS)
10 printf("-lpthread -lrt\n");
11 # endif
12 # ifdef SOLARIS_THREADS
13 printf("-lthread -ldl\n");
14 # endif
15 return 0;