Do not build threads.cmxs: on some systems, it is needed to link the system thread library statically.

git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@8511 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
master
Alain Frisch 2007-11-12 17:19:48 +00:00
parent 3f12bd653a
commit 02654dc3b6
1 changed files with 1 additions and 6 deletions

View File

@ -29,7 +29,7 @@ GENFILES=thread.ml
all: libthreads.a threads.cma
allopt: libthreadsnat.a threads.cmxa threads.$(CMXS)
allopt: libthreadsnat.a threads.cmxa
libthreads.a: $(BYTECODE_C_OBJS)
$(MKLIB) -o threads $(BYTECODE_C_OBJS)
@ -63,10 +63,6 @@ threads.cmxa: $(THREAD_OBJS:.cmo=.cmx)
# modular to me this way. -- Alain
# Build threads.cmxs, even if unsafe
threads.cmxs: threads.cmxa
$(CAMLOPT) -shared -dlcode -o threads.cmxs -I . threads.cmxa -linkall
$(THREAD_OBJS:.cmo=.cmx): ../../ocamlopt
thread.ml: thread_posix.ml
@ -93,7 +89,6 @@ installopt:
cd $(LIBDIR); $(RANLIB) libthreadsnat.a
cp $(THREAD_OBJS:.cmo=.cmx) threads.cmxa threads.a $(LIBDIR)/threads
cd $(LIBDIR)/threads; $(RANLIB) threads.a
if test -f unix.cmxs; then cp unix.cmxs $(LIBDIR)/; fi
.SUFFIXES: .ml .mli .cmo .cmi .cmx