Open IntelMin opened 2 years ago
Interesting.. This is the docker command that we use to run the container as the current user - so as to not end up with weird permission issues on the generated binaries. ( https://github.com/hotg-ai/librunecoral/blob/master/Makefile )
DOCKER_RUN := docker run -i --rm -v "`pwd`":"`pwd`" \
-v $$HOME:$$HOME \
-v /etc/group:/etc/group:ro \
-v /etc/passwd:/etc/passwd:ro \
-v /etc/localtime:/etc/localtime:ro \
-u `id -u $$USER`:`id -g $$USER` \
-e HOME=$$HOME \
-e USER=$$USER \
-w "`pwd`"
I am surprised why you'd be missing the /etc/group file on your machine. Can you check if you have that file? Or remove the offending line from the makefile?
Tried to run
make librunecoral-linux-aarch64
command to build this project. Got the following error: