디바이스 드라이버에 대해서 공부하고 있는데 컴파일이 안되고 있습니다.
글쓴이: neon20 / 작성시간: 목, 2005/12/01 - 1:50오전
[root@localhost 05-2]# gcc -D__KERNEL__ -I/usr/include/linux -DMODVERSIONS -DMODULE -Wall -O2 -c hello.c -o hello.o In file included from /usr/include/linux/module.h:10, from hello.c:1: /usr/include/linux/config.h:5:2: #error Incorrectly using glibc headers for a kernel module hello.c:14: error: syntax error before "int" hello.c: In function `init_module': hello.c:15: warning: implicit declaration of function `printk' hello.c:15: error: `KERN_DEBUG' undeclared (first use in this function) hello.c:15: error: (Each undeclared identifier is reported only once hello.c:15: error: for each function it appears in.) hello.c:15: error: syntax error before string constant hello.c: At top level: hello.c:19: error: syntax error before "void" hello.c: In function `cleanup_module': hello.c:20: error: `KERN_DEBUG' undeclared (first use in this function) hello.c:20: error: syntax error before string constant [root@localhost 05-2]#
제가 확인한 바로는 헤더 파일들이 있는 위치는 /usr/include/linux/ 더군요.
윗 부분의 에러 메시지 중에서
In file included from /usr/include/linux/module.h:10, from hello.c:1: /usr/include/linux/config.h:5:2: #error Incorrectly using glibc headers for a kernel module
이부분이 의미하느 것은 무엇인가요? 모듈헤더를 제대로 불러오지 못했다는 것인가요? 컴파일이 되야 뭘 해볼텐데 컴파일조차 안되니 원.. :oops:
Forums:
"Incorrect and glibc and header" 정도로 검색하
"Incorrect and glibc and header" 정도로 검색하시면 좋은 결과가 나옵니다 :cry:
$PWD `date`
커널 모듈 컴파일 하실때는
커널 소스 트리에 있는 include 디렉토리를 지정하세요..
검색해 봤는데 도움이 될만한 웹 페이지가 있더군요. 도움이 될진.. :?
검색해 봤는데 도움이 될만한 웹 페이지가 있더군요. 도움이 될진.. :? 소스코드에서 #include</linux/include/ .h> 이런 형태로 하라는 말인가요? 좀더 상세히 말씀해 주시면....
http://bbs.kldp.org/viewtopic.php?t=5462
http://bbs.kldp.org/viewtopic.php?t=54624&highlight=Incorrect+glibc+header
이 글과 동일한 문제가 아닐까 싶습니다. 즉, 소스 코드가 아니라 "-I"로 지정하는 디렉터리를 /usr/include/linux가 아니라 {리눅스 소스 위치}/include로 해주시면 되지 않을까 싶습니다. "커널 모듈 컴파일에는 커널 include 파일을"이랄까요-
$PWD `date`
댓글 달기