奇妙な "undefined reference to" コンパイル エラーが発生し、解決策が見つからないようです。Yocto Project で生成された ARM コンパイラ (arm-poky-linux-gnueabi-gcc) を使用して Gumstix Overo 用に PAM 1.1.6 を構成/コンパイルしようとしていますが、コンパイル中に次のエラーが発生し続けます。
.libs/pam_rhosts.o: In function `pam_sm_authenticate':
modules/pam_rhosts/pam_rhosts.c:117: undefined reference to `ruserok'
collect2: error: ld returned 1 exit status
そのため、いくつか調査を行ったところ、configure 中に次のテスト コードがコンパイルおよび実行され、ruserok、ruserok_af、および iruserok の可用性が判断されることがわかりました。
/* end confdefs.h. */
/* Define $2 to an innocuous variant, in case <limits.h> declares $2.
For example, HP-UX 11i <limits.h> declares gettimeofday. */
#define $2 innocuous_$2
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char $2 (); below.
Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
<limits.h> exists even on freestanding compilers. */
#ifdef __STDC__
# include <limits.h>
#else
# include <assert.h>
#endif
#undef $2
/* Override any GCC internal prototype to avoid an error.
Use char because int might match the return type of a GCC
builtin and then its argument prototype would still apply. */
#ifdef __cplusplus
extern "C"
#endif
char $2 ();
/* The GNU C library defines this for functions which it implements
to always fail with ENOSYS. Some functions are actually named
something starting with __ and the normal name is an alias. */
#if defined __stub_$2 || defined __stub___$2
choke me
#endif
int
main ()
{
return $2 ();
;
return 0;
}
そこで、生成された GCC コンパイラを使用して、このコードをコピーして貼り付け (すべての $2 を ruserok に置き換えます)、コンパイルしました。
./arm-poky-linux-gnueabi-gcc -o test.o test.c
ruserok、ruserok_af、および iuserok 関数が存在するかどうかを確認したところ、次のコンパイル エラーが発生しました。
/tmp/ccU8YszI.o: In function `main':
test.c:(.text+0x8): undefined reference to `ruserok'
collect2: error: ld returned 1 exit status
これは、上記と同じ「`ruserok' への未定義参照」エラーです。健全性チェックとして、以前に Ubuntu ソフトウェア センターから Ubuntu/Linaro ARM GCC コンパイラをインストールしていたので、同じコードを arm-linux-gnueabi-gcc コンパイラでコンパイルしましたが、コードはエラーなしで正常にコンパイルされました。ここで私が参照のために使用したコマンド:
arm-linux-gnueabi-gcc -o test.o test.c