[완료] implicit declaration of function이 떠야하는데 안뜨는경우..
글쓴이: facejs / 작성시간: 수, 2010/08/25 - 10:18오전
예를 들어,
int a(int x)
{
return x;
}
라는 함수가 main() 과는 다른 파일에 정의 되어 있습니다. 선언은 하지 않구요..
이때, main() 에서 a(1); 을 호출하게 된다면, extern 없이는 implicit declaration warning이 뜨게 될 것입니다.
그런데, a()가 있는 파일과는 또다른 파일에 있는 다른 함수에서 a(1); 을 호출하면, 이런 warning이 뜨지 않는데요..
이로인해 혹, argument type이 다르거나 빠진경우에 error역시 뜨지 않고 있습니다.
컴파일 옵션에 뭔가 문제가 있는건지.. 원인이 무엇일지 궁금합니다.
도와주세요 ㅡㅜ
컴파일 옵션
--static -std=gnu99 -pedantic -Wno-variadic-macros -W -Wall -Wshadow -Wpointer-arith -Wcast-align -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Werror -Wno-deprecated-declarations -Wextra -O2 -D_REENTRANT
Forums:
warning 중에서 알려 주지 말라는 옵션이 있어서 입니다.
결론부터 말하면
-Wno-deprecated-declarations
옵션 때문에 그렇습니다.
-Werror 옵션 때문에 모든 warning도 error로 처리하게 되어 있는데요
그렇기 때문에 -Wno-deprecated-declarations 옵션을 쓴것 같습니다.
즉, implicit declaration of function 일때는 error가 아니다 라는걸 하기 위함이지요
-Wno 에 관한 옵션은 여러가지가 존재하니 공부해 두시면 좋을 것 같습니다.
자세한 내용은 아래 URL 을 참고하세요
http://revoman.nudecode.org/167
http://coffeenix.net/data_repository/html/gcc-err.html
http://gcc.gnu.org/onlinedocs/gcc-4.4.0/gcc/Warning-Options.html#Warning-Options
---------------------------------------------
git init
git add .
git commit -am "project init"
---------------------------------------------
---------------------------------------------
git init
git add .
git commit -am "project init"
---------------------------------------------
답변감사합니다.
답변 감사합니다.
근데 그것보다 다른 이유가 있었습니다... ;;
main.c를 컴파일 하여 바이너리를 만들 때는 워닝 플래그가 들어가 있었는데..
각 파일의 오브젝트를 만들때는 워닝 플래그가 들어가있지 않았습니다...
그래서 다른파일에서는 워닝이 출력되지 않았었습니다. 이런;;
저야 쓰신글만 볼 수 있으니 ㅎㅎㅎ ;)
---------------------------------------------
git init
git add .
git commit -am "project init"
---------------------------------------------
---------------------------------------------
git init
git add .
git commit -am "project init"
---------------------------------------------
댓글 달기