rdicosmo / parmap

Parmap is a minimalistic library allowing to exploit multicore architecture for OCaml programs with minimal modifications.

Home Page:http://rdicosmo.github.io/parmap/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

META linkopts

barakeel opened this issue · comments

Ocamlbuild singlequotes the value of linkopts in the META file, making the subsequent calls to ocamlmktop fails. ocamlmktop '-cclib ...'

linkopts(byte) = "-cclib -lparmap_stubs"

should be replaced by:

linkopts(byte) += "-cclib"
linkopts(byte) += "-lparmap_stubs"

the PR that @barakeel should have sent
#87

@barakeel how can I test that your proposed change is correct?
What is the sequence of commands to reproduce the observed problem?