I am writing a small application using the gtk2hs, but i get the below error on running the application.
required gtk+ version 3.10, current version is 2.24
Also i checked (using ldd) that the below library is linked to my application.
libgtk-x11-2.0.so.0 => /lib64/libgtk-x11-2.0.so.0 (0x00000036aee00000)
I do have gtk version 3 installed on my machine. But still the application is using the version 2 of library.
/lib64/libgtk-3.so
/lib64/libgtk-3.so.0
How can I resolve this issue? Do I need to specify some GHC argument to link the gtk3 lib?