Permission denied
Hello, I get this error when trying to compile .c file
root@984e88feb6cb:/test# emconfigure ./configure
ERROR:root:Exception thrown when invoking Popen in configure with args: "./confi
gure"!
Traceback (most recent call last):
File "/usr/local/bin/emconfigure", line 13, in
Any Help! Thanks
Please can you provide me the docker command used to spin up the container too? Is the project correctly mounted?
Thanks for your help. What I did : 1- docker run 984e88feb6cb container 2- docker exec -it 984e88feb6cb /bin/bash 3- copying the project inside the container . 4- run emconfigure ./configure
I suspect that the project is not correctly mounted/copied. Can you try running it by:
docker run --rm -v $(pwd):/src -ti apiaryio/emcc:1.37 /bin/bash and then inside the container run the configure?
The project needs to be under the /src directory inside the container. The above command mounts the current directory (the one with project to be build) to /src inside the container.