gotoz / runq

run regular Docker images in KVM/Qemu
Apache License 2.0
797 stars 45 forks source link

Missing function defintion for validateProcessSpec #1

Closed galaxyblack closed 4 months ago

galaxyblack commented 6 years ago

Beacuse of this missing function, runq can not compile.

pmorjan commented 6 years ago

The runq binary must be built inside the RunC source code tree where the function validateProcessSpec is defined. It's all done automatically by the Makefile.

galaxyblack commented 6 years ago

I see, would this be worth adding to the Makefile? Itd just be a git pull right?

pmorjan commented 6 years ago

You just have to follow the build instructions. And if you don't then the Makefile already fails with an useful error message:

Error: RunC source not found
To download RunC source: "go get -d github.com/opencontainers/runc"

The build setup is already complicated. I prefer to keep it as it is with no extra "silent download magic". Thanks.