Annotation of OpenXM_contrib2/asir2000/gc/threadlibs.c, Revision 1.7
1.4 noro 1: # include "private/gcconfig.h"
1.1 noro 2: # include <stdio.h>
3:
4: int main()
5: {
1.4 noro 6: # if defined(GC_USE_LD_WRAP)
1.7 ! noro 7: printf("-Wl,--wrap -Wl,dlopen "
1.3 noro 8: "-Wl,--wrap -Wl,pthread_create -Wl,--wrap -Wl,pthread_join "
1.4 noro 9: "-Wl,--wrap -Wl,pthread_detach "
10: "-Wl,--wrap -Wl,pthread_sigmask -Wl,--wrap -Wl,sleep\n");
11: # endif
1.6 noro 12: # if defined(GC_LINUX_THREADS) || defined(GC_IRIX_THREADS) \
1.7 ! noro 13: || defined(GC_FREEBSD_THREADS) || defined(GC_SOLARIS_PTHREADS) \
! 14: || defined(GC_DARWIN_THREADS) || defined(GC_AIX_THREADS)
1.6 noro 15: printf("-lpthread\n");
1.3 noro 16: # endif
1.6 noro 17: # if defined(GC_HPUX_THREADS) || defined(GC_OSF1_THREADS)
1.2 noro 18: printf("-lpthread -lrt\n");
19: # endif
1.6 noro 20: # if defined(GC_SOLARIS_THREADS) && !defined(GC_SOLARIS_PTHREADS)
1.1 noro 21: printf("-lthread -ldl\n");
1.4 noro 22: # endif
1.6 noro 23: # if defined(GC_WIN32_THREADS) && defined(CYGWIN32)
24: printf("-lpthread\n");
1.7 ! noro 25: # endif
! 26: # if defined(GC_OSF1_THREADS)
! 27: printf("-lpthread -lrt");
1.6 noro 28: # endif
29: /* You need GCC 3.0.3 to build this one! */
30: /* DG/UX native gcc doesnt know what "-pthread" is */
31: # if defined(GC_DGUX386_THREADS)
32: printf("-ldl -pthread\n");
1.1 noro 33: # endif
34: return 0;
35: }
36:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>