extern 관련 질문입니다.

bgkim0110의 이미지

몇개의 소스파일을 함께 컴파일 하려고 하는데 링크에러가 나네요

총 5개의 파일이 있으며 파일이름은 아래와 같습니다.

CommonHeader.h
Cruiser_Lib.h
Cruiser_Lib.c
Main.h
Main.c

각각의 소스파일 내용은 아래와 같습니다.
이 프로그램이 하는일은 Cruiser_Lib 에서 정의된 sum 함수를 main에서 불러서 사용하는 것입니다.

============CommonHeader.h============
int commonheader = 10;

============Cruiser_Lib.h=============
#ifndef __CRUISER_H__
#define __CRUISER_H__
#include "main.h"
int sum(int a, int b);
#endif

===========Cruiser_Lib.c===============
#include "Cruiser_Lib.h"

int sum(int a, int b)
{
return a + b + commonHeader;
}

===========Main.h====================
#ifndef __MAIN_H__
#define __MAIN_H__
#include
#include "Cruiser_Lib.h"

#endif

=============Main.c======================
int main(void)
{
int result;
int val1 = 3, val2 =5;
result = sum(val1, val2);
printf("result : %d\n", result);

return 0;
}

이게 전부입니다. 살짝 보시면 아시겠지만 매우 단순한 프로그램입니다. 제가 여러개의 소스파일이 있을때 다른 소스파일에서
함수를 불러와 main 에서 사용하는 방법을 공부하기 위해 임시로 짠 프로그램입니다.
컴파일을하면 Main.c 에서 sum 함수를 찾을 수 없다고 합니다.
sum 함수는 위에서 보시는 것처럼 Cruiser_Lib.c 에 정의 되어 있습니다.
왜이런걸까요??

lacovnk의 이미지

Main.c에서 Main.h 를 include하지 않아서 그런 것 같습니다. :)

bgkim0110의 이미지

소스를 조금더 간단히 해서 파일 4개를 만들었습니다.
Main.h
Main.c
Cruiser_Lib.h
Cruiser_Lib.c

Cruiser_Lib.c 에는 sum 함수의 정의가 들어있고 Cruiser_Lib.h 파일에는 함수의 원형만 들어있습니다.
그리고 Main.h 에는 Cruiser_Lib.h 를 include 하고 Main.c 에서 extern 으로 sum 을 불러옵니다.
파일의 모든 내용은 아래와 같습니다.

================ Main.h =================
//Main.h

#ifndef __MAIN_H__
#define __MAIN_H__
#include
#include "Cruiser_Lib.h"
#endif

=================== Main.c =================
//Main.c

#include "main.h"

extern int sum(int a, int b);

int main(void)
{
int result;
int val1 = 3, val2 =5;
result = sum(val1, val2);
printf("result : %d\n", result);

return 0;
}

==================== Cruiser_Lib.h ================
//Cruiser_Lib.h
#ifndef __CRUISER_H__
#define __CRUISER_H__

#endif

int sum(int a, int b);

=============== Cruiser_Lib.c ===============
//Cruiser_Lib.c

#include "Cruiser_Lib.h"

int sum(int a, int b)
{
return a + b;
}

이게 전부입니다.그냥 보시기에도 간단하죠? 그런데 왜 문제가 생기는 걸까요? ㅠㅠ

전웅의 이미지

보다 자세한 오류 메시지를 적어주시면 답변하시는 분들이
더 쉽게 답을 드릴 수 있지 않을까 생각합니다.

일단, 두 가지 조언을 드리면, cruiser_lib.h 에서 sum 에 대한
원형 선언을 제공하는데 굳이 main.c 에서 extern 을 사용해
sum 함수를 선언해 줄 필요는 없어 보입니다 - main.h 가
cruiser_lib.h 를 #include 하는 것만으로도 동일한 효과가 보장
됩니다.

두번째로 main.h 에서는 #include 를 해주는 것이
좋습니다. printf() 는 가변인자를 취하는 함수이기 때문에 반드시
원형 선언 아래에서 호출되어야 합니다.

본 문제로 넘어가면,

혹시 컴파일하실 때 main.c 만 컴파일하고 계시지는 않는지요? main.c 가
참조하는 함수를 포함하는 파일을 모두 컴파일러/링커에 제공해야 올바르게
찾아줄 수 있습니다.

예를 들어,

gcc main.c

라고만 하지 마시고,

gcc cruiser_lib.c main.c

라고 해보시기 바랍니다.

소스에는 큰 문제가 없어 혹시 컴파일 과정에서 실수하신 것이 아닐까 생각
합니다.

추가로 -ansi -pedantic -Wall 같은 옵션을 주시면 이식성과 관련된
실수를 미리 잡기에 좋습니다.

--
Jun, Woong (woong at icu.ac.kr)
Web: http://www.woong.org

--
Jun, Woong (woong at gmail.com)
http://www.woong.org

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.