Imports are resolved at compile time and linked statically into the executable unless you tell GHC to use dynamic linking. In that case, `ldd` will tell you the files it's linked against. In any case, that information is unavailable at runtime.

Note that generally static linking is preferred over dynamic linking.

On Nov 25, 2015 3:12 PM, "David Banas" <capn.freako@gmail.com> wrote:
Hi all,

How can I get a running Haskell program to tell me where it’s looking, in order to satisfy “import …” statements?

Thanks,
-db

_______________________________________________
Haskell-Cafe mailing list
Haskell-Cafe@haskell.org
http://mail.haskell.org/cgi-bin/mailman/listinfo/haskell-cafe