GCC 4.4.5がインストールされたgentoo Linuxを使用しています。gcc main.c -o mainを使用してエラーなしでそのようなプログラムをコンパイルおよびリンクでき、コマンド./mainは結果を正しく返します。
[main.c]
#include <math.h>
#include <stdio.h>
int main(void)
{
double c = ceil(2.5);
printf("The ceil of 2.5 is %f\n", c);
return 0;
}
しかし、ceilの呼び出しを別のソース ファイルに入れると、問題が発生します。
[calc.h]
#ifndef _CALC_H_
#define _CALC_H_
double myceil(double n);
#endif
[calc.c]
#include <math.h>
#include "calc.h"
double myceil(double n)
{
return ceil(n);
}
[main1.c]
#include <stdio.h>
#include "calc.h"
int main(void)
{
double c = myceil(2.5);
printf("The ceil of 2.5 is %f\n", c);
return 0;
}
コマンドgcc calc.c main1.c -o main1を使用すると、次のようなエラーが発生します。
/tmp/cc6GhJvZ.o: In function `myceil':
calc.c:(.text+0x19): undefined reference to `ceil'
collect2: ld returned 1 exit status
では、後者の場合に「未定義の参照」という厄介なエラーが発生したのはなぜですか? ライブラリ-lmを追加することでエラーを解消できることはわかっていますが、後者の場合に gcc がエラーをスローする理由を知りたいだけです。