| View Issue Details [ Jump to Notes ] | [ Issue History ] [ Print ] |
| ID | Project | Category | View Status | Date Submitted | Last Update |
| 0005052 | OCaml | OCaml general | public | 2010-05-18 15:26 | 2010-05-21 14:06 |
|
| Reporter | gildor | |
| Assigned To | | |
| Priority | normal | Severity | minor | Reproducibility | always |
| Status | closed | Resolution | fixed | |
| Platform | | OS | | OS Version | |
| Product Version | | |
| Target Version | | Fixed in Version | 3.12.0+dev | |
|
| Summary | 0005052: Makefile.shared don't use threads.cma for otherlibs/labltk/browser |
| Description | Strange bug, the version of otherlibs/labltk/browser/Makefile.shared shipped with OCaml 3.11.2 contains XTRALIBS but not the one in the trunk.
If XTRALIBS is not used, the Mutex symbol cannot be solved on Windows.
I remove the OCAMLBR variable, because I don't know where it is used...
Sylvain |
| Tags | No tags attached. |
|
| Attached Files | tkbrowser.patch [^] (716 bytes) 2010-05-18 15:26 [Show Content] [Hide Content]--- ocaml-trunk/otherlibs/labltk/browser/Makefile.shared 2010-03-25 17:20:20.656918000 +0100
+++ ocaml-3.11.2/otherlibs/labltk/browser/Makefile.shared 2008-11-19 11:40:13.000000000 +0100
@@ -30,10 +30,11 @@
all: ocamlbrowser$(EXE)
ocamlbrowser$(EXE): $(TOPDIR)/toplevel/toplevellib.cma jglib.cma $(OBJ) \
- ../support/lib$(LIBNAME).$(A)
+ ../support/lib$(LIBNAME).$(A) $(XTRAOBJ)
$(CAMLC) -o ocamlbrowser$(EXE) $(INCLUDES) \
$(TOPDIR)/toplevel/toplevellib.cma \
- unix.cma str.cma $(OCAMLBR) $(LIBNAME).cma jglib.cma $(OBJ)
+ unix.cma str.cma $(XTRALIBS) $(LIBNAME).cma jglib.cma \
+ $(OBJ) $(XTRAOBJ)
ocamlbrowser.cma: jglib.cma $(OBJ)
$(CAMLC) -a -o $@ -linkall jglib.cma $(OBJ)
|
|