我正在尝试使用aarch64-linux-gnu-g++将cpp代码从CentOS7交叉编译到arm64。当我编译时,它给出了找不到c++头文件的错误。file included from cms_functions.h:4:0,ocsp_functions.h:8:24: fatal error: sys/socket.h: No such file or directory
#include <s
在Linux中,要创建套接字,需要包含sys/socket.h头文件并使用socket()函数。头文件位于/usr/include/sys/socket.h。extern int socket (int __domain, int __type, int __protocol) __THROW;谢谢。