Forum Topic - ldd:FATAL: Could not load library libQtGui.so.4: (2 Items)
   
ldd:FATAL: Could not load library libQtGui.so.4  
I am using Qt4.7.1 that I have alreay downloaded form this forum. I can compile my project on windows host successfully.
 But I can't run it correctly,and the error "ldd:FATAL: Could not load library libQtGui.so.4" comes out .

how can i deal with this problem .
Re: ldd:FATAL: Could not load library libQtGui.so.4  
As with any shared library, it must be present on the disk, it must match the target architecture, and the location must
 be found in the LD_LIBRARY_PATH variable.

If you believe those requirements are met, try starting your Qt executable like

# DL_DEBUG=1 ./cEasy

The verbose output will show where the loader is looking for each library required by the binary.