cancel
Showing results for 
Search instead for 
Did you mean: 

Archives Discussions

evo
Adept I

Cannot run CodeXL

Hello!

I have a problem when running CodeXL on Windows 7 x64. Nothing happens when I try to open CodeXL by double click in . What can be a problem?

Thanks in advance.

0 Likes
1 Reply
mdriftmeyer
Adept II


evo wrote:



Hello!


I have a problem when running CodeXL on Windows 7 x64. Nothing happens when I try to open CodeXL by double click in . What can be a problem?



Thanks in advance.


I'd try launching the executable from the shell in Windows 7 and see what possible DLLs are not being linked in.


Example of an asinine hard-coded pathway in Linux:


mdriftmeyer@horus:/opt/AMD/CodeXL_1.5-5364$ ./CodeXL


Assertion failure (Failed to load module. OS error is: /usr/lib64/libGL.so.1: cannot open shared object file: No such file or directory. Module = l) osLoadModule /data/jenkins/workspace/CodeXL-1.5-Linux/release/CodeXL/1.5/CommonProjects/AMDTOSWrappers/src/linux/osModule.cpp line: 62


: No such file or directory



/lib64 has been gone for a long time.

Solution: $ sudo mkdir /usr/lib64
              $ sudo ln -s /usr/lib/x86_64-linux-gnu/libGL.so.1 libGL.so.1

Test: mdriftmeyer@horus:/opt/AMD/CodeXL_1.5-5364$ ./CodeXL

No more dirty console spewing errors.

0 Likes