aboutsummaryrefslogtreecommitdiff
path: root/boehm-gc/threadlibs.c
diff options
context:
space:
mode:
Diffstat (limited to 'boehm-gc/threadlibs.c')
-rw-r--r--boehm-gc/threadlibs.c26
1 files changed, 0 insertions, 26 deletions
diff --git a/boehm-gc/threadlibs.c b/boehm-gc/threadlibs.c
deleted file mode 100644
index 7379454c420..00000000000
--- a/boehm-gc/threadlibs.c
+++ /dev/null
@@ -1,26 +0,0 @@
-# include "gcconfig.h"
-# include <stdio.h>
-
-int main()
-{
-# if defined(LINUX_THREADS)
-# ifdef USE_LD_WRAP
- printf("-Wl,--wrap -Wl,read -Wl,--wrap -Wl,dlopen "
- "-Wl,--wrap -Wl,pthread_create -Wl,--wrap -Wl,pthread_join "
- "-Wl,--wrap -Wl,pthread_sigmask -lpthread -ldl\n");
-# else
- printf("-lpthread -ldl\n");
-# endif
-# endif
-# if defined(IRIX_THREADS)
- printf("-lpthread\n");
-# endif
-# if defined(HPUX_THREADS)
- printf("-lpthread -lrt\n");
-# endif
-# ifdef SOLARIS_THREADS
- printf("-lthread -ldl\n");
-# endif
- return 0;
-}
-