<div dir="ltr">You can try using ghc directly (instead of cabal) so that you have full control over what flags are passed, like this:<br><br>ghc -fPIC -dynamic -package xx -c plugin.hs<br>ld -shared -Bsymbolic -L<path to rts lib> -lHSrts-ghc8.0.2 -o plugin.so plugin.o<div><br></div><div>If this works then you can find what is wrong/different with your cabal setup by using verbose flags and looking at what is being passed to ghc.<br><div>







</div><div><br></div><div>-harendra</div></div><div class="gmail_extra"><br><div class="gmail_quote">On 10 April 2017 at 18:14, Lana Black <span dir="ltr"><<a href="mailto:lanablack@amok.cc" target="_blank">lanablack@amok.cc</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hello,<br>
<br>
I'm working on a Haskell plugin (a shared library) for a C program. When<br>
I load the plugin, I get the following error:<br>
<br>
> ./open<br>
dlopen() failed:<br>
/usr/lib64/ghc-8.0.2/ghc-prim-<wbr><a href="http://0.5.0.0/">0.5.0.0/</a><a href="http://libHSghc-prim-0.5.0.0-ghc8.0.2.so" rel="noreferrer" target="_blank">libHSghc-prim-0.5.0.0-<wbr>ghc8.0.2.so</a>:<br>
undefined symbol: stg_thawArrayzh<br>
<br>
open is just a testing wrapper around dlopen(). I found out that<br>
stg_thawArrayzh symbol is exported by the rts, and my library isn't<br>
linked to it, and neither is ghc-prim. How do I fix that? Adding<br>
-lHSrts-ghc8.0.2 to ld-options doesn't seem to have any effect.<br>
<br>
Thanks.<br>
______________________________<wbr>_________________<br>
Haskell-Cafe mailing list<br>
To (un)subscribe, modify options or view archives go to:<br>
<a href="http://mail.haskell.org/cgi-bin/mailman/listinfo/haskell-cafe" rel="noreferrer" target="_blank">http://mail.haskell.org/cgi-<wbr>bin/mailman/listinfo/haskell-<wbr>cafe</a><br>
Only members subscribed via the mailman list are allowed to post.</blockquote></div><br></div></div>