make시 error: unknown type name '__kernel_long_t' 에러 해결방법
프로그래밍/리눅스2014. 6. 17. 19:12
sysinfo.h:8:2: error: unknown type name '__kernel_long_t'
위와같은 에러나타나면
You just have to edit /usr/include/linux/sysinfo.h and add the following code :
#ifndef __kernel_long_t
typedef long __kernel_long_t;
typedef unsigned long __kernel_ulong_t;
#endif
위에것을 #include <linux/types.h> 바로아래에 넣어주라
한후
sudo make
'프로그래밍 > 리눅스' 카테고리의 다른 글
리눅스 사용자 계정 변경 root 에서 유저로 유저에서 root로 sudo su (4) | 2014.06.19 |
---|---|
/etc/profile 파일 수정시 permission denied 가 나타날때 해결 방법 (1) | 2014.06.18 |
ERROR: SSL development support not found 에러 해결방법 (0) | 2014.06.17 |
pkg-config: command not found 에러 해결방법 (0) | 2014.06.17 |
git clone 시 Problem with the SSL CA cert 에러 나타날 경우 (0) | 2014.06.17 |