rdicosmo / parmap

Parmap is a minimalistic library allowing to exploit multicore architecture for OCaml programs with minimal modifications.
http://rdicosmo.github.io/parmap/
Other
94 stars 20 forks source link

I cannot install properly parmap from the sources anymore #24

Closed UnixJunkie closed 10 years ago

UnixJunkie commented 10 years ago

Hello,

If I install from the sources, I get:

aclocal -I m4
autoconf
autoheader
./configure --prefix ~/.opam/4.01.0
make
make install

That worked OK, but:

# ocamlfind -query parmap
ocamlfind: Package `parmap' not found
# ocamlfind -query batteries
/home/xtal/.opam/4.01.0/lib/batteries

# opam --version
1.1.1
# ocaml -version
The OCaml toplevel, version 4.01.0
# cat /etc/issue
CentOS release 6.5 (Final)

# make tests
ocamlbuild -j 10 -use-ocamlfind  tests/simplescale.native tests/floatscale.native tests/simplescale_array.native tests/simplescalefold.native tests/simplescalemapfold.native
Finished, 0 targets (0 cached) in 00:00:00.
+ ocamlfind ocamldep -package unix -package bigarray -package parmap -modules tests/simplescale.ml > tests/simplescale.ml.depends
ocamlfind: Package `parmap' not found
Command exited with code 2.
Compilation unsuccessful after building 1 target (0 cached) in 00:00:00.
make: *** [tests] Error 10
UnixJunkie commented 10 years ago

Can someone else still install from sources, compile the examples and have ocamlfind -query parmap finding it?

UnixJunkie commented 10 years ago

If I install it via the OPAM package, everything works fine. But I want to test the latest features in the source code ...

UnixJunkie commented 10 years ago

OK, seems corrected by the last commits.