Home > database >  linux/sysctl.h: no such file or directory when compiling TDengine in alpine
linux/sysctl.h: no such file or directory when compiling TDengine in alpine

Time:12-27

Alpine is a Linux distribution that I guess it must have the header files. How to solve it in alpine container?

CodePudding user response:

linux-headers should be installed exlicitly in alpine linux.

apk add linux-headers
  • Related