emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/gc/threadlibs.c [Boehm-versions]


From: Dave Love
Subject: [Emacs-diffs] Changes to emacs/gc/threadlibs.c [Boehm-versions]
Date: Mon, 16 Jun 2003 11:20:08 -0400

Index: emacs/gc/threadlibs.c
diff -c /dev/null emacs/gc/threadlibs.c:1.2.2.1.2.1
*** /dev/null   Mon Jun 16 11:20:08 2003
--- emacs/gc/threadlibs.c       Mon Jun 16 11:19:52 2003
***************
*** 0 ****
--- 1,36 ----
+ # include "private/gcconfig.h"
+ # include <stdio.h>
+ 
+ int main()
+ {
+ #   if defined(GC_USE_LD_WRAP)
+       printf("-Wl,--wrap -Wl,dlopen "
+              "-Wl,--wrap -Wl,pthread_create -Wl,--wrap -Wl,pthread_join "
+              "-Wl,--wrap -Wl,pthread_detach "
+              "-Wl,--wrap -Wl,pthread_sigmask -Wl,--wrap -Wl,sleep\n");
+ #   endif
+ #   if defined(GC_LINUX_THREADS) || defined(GC_IRIX_THREADS) \
+       || defined(GC_FREEBSD_THREADS) || defined(GC_SOLARIS_PTHREADS) \
+       || defined(GC_DARWIN_THREADS) || defined(GC_AIX_THREADS)
+         printf("-lpthread\n");
+ #   endif
+ #   if defined(GC_HPUX_THREADS) || defined(GC_OSF1_THREADS)
+       printf("-lpthread -lrt\n");
+ #   endif
+ #   if defined(GC_SOLARIS_THREADS) && !defined(GC_SOLARIS_PTHREADS)
+         printf("-lthread -ldl\n");
+ #   endif
+ #   if defined(GC_WIN32_THREADS) && defined(CYGWIN32)
+         printf("-lpthread\n");
+ #   endif
+ #   if defined(GC_OSF1_THREADS)
+       printf("-lpthread -lrt");
+ #   endif
+     /* You need GCC 3.0.3 to build this one!           */  
+     /* DG/UX native gcc doesnt know what "-pthread" is */
+ #   if defined(GC_DGUX386_THREADS)
+         printf("-ldl -pthread\n");
+ #   endif
+     return 0;
+ }
+ 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]