From 01675b86065487a6b23f7276af20ec2ed2058b91 Mon Sep 17 00:00:00 2001 From: ygrek Date: Sun, 10 Nov 2013 16:36:34 +0800 Subject: [PATCH] fix bytecode test: load dll from current directory --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3842eb5..d21a561 100644 --- a/Makefile +++ b/Makefile @@ -73,7 +73,7 @@ test: unittest testopt: unittest.opt ./unittest.opt unittest: all unittest.ml - $(OCAMLFIND) ocamlc -o unittest -package oUnit -cclib -L. -linkpkg \ + $(OCAMLFIND) ocamlc -dllpath . -o unittest -package oUnit -cclib -L. -linkpkg \ $(ARCHIVE) unittest.ml unittest.opt: allopt unittest.ml $(OCAMLFIND) ocamlopt -o unittest.opt -package oUnit -cclib -L. -linkpkg \ -- 2.11.4.GIT