g++ 링커 에러

nohmad의 이미지

bubblesort.cpp 함수를 구현해서 이상없이 컴파일했습니다. bubblesort.o를 얻었습니다.

template <class T>
void bubblesort(T a[], int size)
{
    int i, j;
    T t;
    for (i=0; i < size-1; i++)
        for (j=1; j < size-i; j++)
            if (a[j-1] > a[j]) {
                t = a[j-1];
                a[j-1] = a[j];
                a[j] = t;
            }
}

bubblesort.h로 헤더를 작성했습니다.

template <class T>
void bubblesort(T a[], int size);

테스트 프로그램 test_bubblesort.cpp를 작성했습니다.

#include <stdio.h>
#include "bubblesort.h"

int main(void)
{
    int i, count;
    char c[] = "zfshjkelrpityy5487390fmbn";
    count = sizeof(c) / sizeof(char);
    bubblesort(c, count);
    for (i=0; i < count; i++)
        printf("%c", c[i]);
    puts("");
    return 0;
}

bubblesort.cpp의 내용을 test_bubblesort.cpp에 넣고 컴파일하면 원하는대로 잘 동작합니다. 그런데 오브젝트 파일과 헤더로 분리시킨 다음에 컴파일하면 링커 에러가 나옵니다.

$ g++ -I. test_bubblesort.cpp bubblesort.o -o test_bubblesort
/tmp/ccyM4OgI.o(.text+0x60): In function `main':
: undefined reference to `void bubblesort<char>(char*, int)'
collect2: ld returned 1 exit status

뭐가 잘못된 것일까요?

Testors의 이미지

인라인함수와 마찬가지로

템플릿 함수는 사용하기 이전에

함수 정의가 있어야 합니다.

(혹은 다른 cpp 파일에서 해당 함수를 사용,
함수가 그 obj 에 생성되어서 link 가 가능해야 하거나)

1. .h 에 다 넣어버리거나

2. bubblesort.cpp 내에서 void bubblesort<char> 를 한번 사용해 보세요.

예를 들자면, bubblesort.cpp 밑에 아래와 같은 함수가 하나라도 있다면 되겠죠.

(최적화되어 사라지면 낭패이지만)

void __dummy_file_for_template()
{
    char tmp[100];
    bubblesort( tmp, 100 );
}
nohmad의 이미지

헤더 파일에 함수 정의를 넣으니 잘 되네요.
감사합니다.

C++은 이것저것 골치아픈 게 많군요. :(

yielding의 이미지

여담으로 g++ 3.4는 표준 export키워드를 구현하였으므로

#inlcude "bubblesort.h" 대신에
#export "bubblesort.h" 로 하시면 깔끔하게 템플릿의 선언과 구현을
화일로 구분하여 컴파일할 수 있습니다.

Life rushes on, we are distracted

댓글 달기

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
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.