Skip to content

Commit 1dc093a

Browse files
committedAug 14, 2014
fix for js_of_ocaml 2.4
1 parent 7206cae commit 1dc093a

File tree

3 files changed

+17
-3
lines changed

3 files changed

+17
-3
lines changed
 

‎Makefile

+15-1
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,10 @@ SYNTAX_LIB=$(foreach s,$(SYNTAX),`ocamlfind query -predicates syntax,toploop,pre
8484
SYNTAX_INC=$(foreach s,$(SYNTAX),`ocamlfind query -i-format $(s)`)
8585
endif
8686

87+
# enable threads
88+
ifneq ($(THREAD),)
89+
LINK_THREAD=-thread
90+
endif
8791

8892
KEEP_COMPILER=\
8993
Arg Array ArrayLabels Buffer Callback CamlinternalLazy CamlinternalMod CamlinternalOO \
@@ -137,6 +141,16 @@ min:
137141
core:
138142
make all EXT=".core" OPT=1 PACKAGES="core_kernel" PRIMJS="core_runtime.js" MODULES="Core_kernel"
139143

144+
spoc:
145+
make all \
146+
OPT=1 \
147+
THREAD=1 EXT=".spoc" \
148+
CAMLP4=1 LWT=1 JSOO=1 \
149+
SYNTAX="js_of_ocaml.syntax lwt.syntax.options lwt.syntax sarek_syntax spoc_external_kernels" \
150+
PACKAGES="bigarray spoc_external_kernels spoc sarek sarek_syntax" \
151+
MODULES="Spoc Kirc Bigarray" \
152+
PRIMJS="$(shell ocamlfind query spoc)/spoc_lib.js"
153+
140154
#######################################################################
141155
# build
142156

@@ -164,7 +178,7 @@ iocaml_main.cmo: iocaml_main.ml iocaml.cmi
164178
ocamlfind ocamlc -c iocaml_main.ml
165179

166180
iocaml_full.byte: exec.cmo iocaml.cmo iocaml_main.cmo
167-
ocamlfind ocamlc -linkall -linkpkg -o $@ \
181+
ocamlfind ocamlc $(LINK_THREAD) -linkall -linkpkg -o $@ \
168182
$(STD_PACKAGES) \
169183
$(USER_PACKAGES) \
170184
$(COMPILER_LIBS_INC) $(COMPILER_LIBS) \

‎iocaml.ml

+1-1
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ let execute execution_count str =
209209
v##compilerStatus <- bool true;
210210
v
211211

212-
let load_from_server path =
212+
let load_from_server (_,path) =
213213
try
214214
let xml = XmlHttpRequest.create () in
215215
let () = xml##_open(Js.string "GET", Js.string ("file/" ^ path), Js._false) in

‎iocaml.mli

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ val display : ?base64:bool -> string -> string -> unit
1919
val send_clear : ?wait:bool -> ?stdout:bool -> ?stderr:bool -> ?other:bool -> unit -> unit
2020

2121
(* load a (binary) file from the server *)
22-
val load_from_server : string -> string option
22+
val load_from_server : (string*string) -> string option
2323

2424
val output_cell_max_height : string ref
2525

0 commit comments

Comments
 (0)