I am trying to run a Haskell program that depends on the Awesomium library. I've compiled it but ran into the following issue at runtime:
Roughly translated, it says that the procedure start address for awe_history_entry_get_visit_count cannot be found in the DLL file [path to my executable].
It seems like it is trying to load that symbol from my program rather than awesomium.dll
.
- I'm on Windows 10
- I'm using stack as my build tool
- The program is 32-bit (i386), because that is the only architecture Awesomium supports
- I've referenced the DLLs I need in the
extra-libraries
field in the.cabal
file
Any help or hints will be much appreciated.