summaryrefslogtreecommitdiff
path: root/include/makeinclude/platform_linux_pthread.GNU
diff options
context:
space:
mode:
Diffstat (limited to 'include/makeinclude/platform_linux_pthread.GNU')
-rw-r--r--include/makeinclude/platform_linux_pthread.GNU25
1 files changed, 0 insertions, 25 deletions
diff --git a/include/makeinclude/platform_linux_pthread.GNU b/include/makeinclude/platform_linux_pthread.GNU
deleted file mode 100644
index df4b5ec2096..00000000000
--- a/include/makeinclude/platform_linux_pthread.GNU
+++ /dev/null
@@ -1,25 +0,0 @@
-# For pthreads support on Linux, you need
-# -D_MIT_POSIX_THREADS
-# -D_POSIX_THREADS
-# -D_POSIX_THREAD_SAFE_FUNCTIONS
-# in the CXX command line. Also, add -lpthreads to the LIBS.
-# libpthreads.so comes with the sources of Linux libc-5.3.*, you need
-# to compile it yourself (no binaries included) --
-# Jan Rychter <jwr@icm.edu.pl>
-
-CC = gcc -w
-CXX = gcc -w -I. -fno-strict-prototypes -D__ACE_INLINE__ -D_MIT_POSIX_THREADS -D_POSIX_THREADS -D_POSIX_THREAD_SAFE_FUNCTIONS
-DLD = $(CXX)
-LD = $(CXX)
-LIBS += -lpthreads -lstdc++
-PIC = -fPIC
-AR = ar
-ARFLAGS = ruv
-RANLIB = ranlib
-
-SOFLAGS = $(CPPFLAGS) -shared
-SOBUILD = $(COMPILE.cc) $(PIC) -o $(VSHDIR)$*.so $<
-PRELIB = (echo "int main() { return 0; }" > gcctemp.c && \
- $(COMPILE.cc) -o gcctemp.o gcctemp.c && \
- $(LINK.cc) -o gcctemp gcctemp.o $^ $(LDFLAGS) $(LIBS); \
- status=$$?; exit $$status)