Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I built the opencl program using the commands:

gcc -c -I ~/AMDAPP/include main.c -o main.o
gcc main.o -o host -L ~/AMDAPP/lib/x86_64/ -l OpenCL

It was succesful. When I tried to run it using ./main.o i got the error message: bash: ./main.o: Permission denied Can someone please tell me whats wrong?

share|improve this question

1 Answer

up vote 8 down vote accepted

The executable is built to the host file, not the main.o.

main.o contains compiled contents of main.c, not linked into an executable yet.

share|improve this answer
Thanks for your help.... when I typed in the command ./host I got the error message: Failed to load kernel. What do you think is the reason? – user1456061 Jun 18 '12 at 8:05
How could I know? This is way too less information. I need to see the code and the specific error code returned, but this is perhaps a reason to make another question. – Rafał Rawicki Jun 18 '12 at 8:31
P.S. If the answer solved your question, click the tick mark under the vote count, to mark this question as resolved. – Rafał Rawicki Jun 18 '12 at 8:31
the erro code returned was just:Failed to load kernel. – user1456061 Jun 18 '12 at 8:54
No, this was an error message. Check what precisely returned the failing function. – Rafał Rawicki Jun 18 '12 at 13:28
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.